diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..502fff2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.hak +*.mod +*.md5 diff --git a/README.md b/README.md index 3d1ac18..3f18167 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ -# AOC_PRC8 +# Arena of Champions [PRC8-CEP3] +Repository for development of the PRC8 version of the Arena of Champions module by Commche. + +Original here: https://neverwintervault.org/project/nwn1/module/arena-champions-buildmaster \ No newline at end of file diff --git a/_content/BuildHaks.cmd b/_content/BuildHaks.cmd new file mode 100644 index 0000000..cc40b21 --- /dev/null +++ b/_content/BuildHaks.cmd @@ -0,0 +1,3 @@ +cd _tools\ +NWN.CLI.exe -k +cd .. \ No newline at end of file diff --git a/_content/Compiler - Top Hak.bat b/_content/Compiler - Top Hak.bat new file mode 100644 index 0000000..a41c48c --- /dev/null +++ b/_content/Compiler - Top Hak.bat @@ -0,0 +1,4 @@ +:loop +"C:\NWN Work\nwnsc.exe" -o -w -n "C:\Games\Steam\steamapps\common\Neverwinter Nights" -i "D:\NWN Repos\AoC_PRC8\_content\_haks\aoc_prc8_merge";"D:\NWN Repos\PRC8\nwn\nwnprc\trunk\include" "D:\NWN Repos\AoC_PRC8\_content\_haks\aoc_prc8_merge\*.nss" +if %errorLevel% == -1 goto :loop +pause \ No newline at end of file diff --git a/_content/_haks/aoc_prc8_merge/clone_lib.nss b/_content/_haks/aoc_prc8_merge/clone_lib.nss new file mode 100644 index 0000000..1a3d332 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/clone_lib.nss @@ -0,0 +1,475 @@ +#include "custom_set_lib" +struct perceivedEvent +{ + int isValid; + + object lastPerceived; + int lastPerceptionHeard; + int lastPerceptionInaudible; + int lastPerceptionSeen; + int lastPerceptionVanished; +}; + +struct disturbedEvent +{ + int isValid; + + object lastDisturbed; + object inventoryDisturbItem; + int inventoryDisturbType; + +}; + +struct attackedEvent +{ + int isValid; + object lastAttacker; +}; + +struct damagedEvent +{ + int isValid; + object lastdamager; + int totalDamageDealt; + int damageAcid; + int damageBludgeoning; + int damageCold; + int damageDivine; + int damageElectrical; + int damageFire; + int damageMagical; + int damageNegative; + int damagePiercing; + int damagePositive; + int damageSlashing; + int damageSonic; +}; + +struct blockedEvent +{ + int isValid; + object blockingDoor; +}; + +//:://///////////////////////////////////////////// +//:: GetLastPerceivedEvent +//::////////////////////////////////////////////// +// +// Retrieves the last perception event data from target. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct perceivedEvent GetLastPerceivedEvent(object target = OBJECT_SELF); + +//:://///////////////////////////////////////////// +//:: SetLastPerceivedEvent +//::////////////////////////////////////////////// +// +// Stores the perception event data for the caller. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +void SetLastPerceivedEvent(struct perceivedEvent evt); + +//:://///////////////////////////////////////////// +//:: PerceivedEvent +//::////////////////////////////////////////////// +// +// Returns the data available for a caller perception event. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct perceivedEvent PerceivedEvent(); + +//:://///////////////////////////////////////////// +//:: GetLastDisturbedEvent +//::////////////////////////////////////////////// +// +// Retrieves the last inventory dirsturbed event data from target. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct disturbedEvent GetLastDisturbedEvent(object target = OBJECT_SELF); + +//:://///////////////////////////////////////////// +//:: SetLastDisturbedEvent +//::////////////////////////////////////////////// +// +// Stores the inventory dirsturbed event data for the caller. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +void SetLastDisturbedEvent(struct disturbedEvent evt); + +//:://///////////////////////////////////////////// +//:: DisturbedEvent +//::////////////////////////////////////////////// +// +// Returns the data available for a caller inventory dirsturbed event. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct disturbedEvent DisturbedEvent(); + +//:://///////////////////////////////////////////// +//:: GetLastAttackedEvent +//::////////////////////////////////////////////// +// +// Retrieves the last on attacked event data from target. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct attackedEvent GetLastAttackedEvent(object target = OBJECT_SELF); + +//:://///////////////////////////////////////////// +//:: SetLastAttackedEvent +//::////////////////////////////////////////////// +// +// Stores the on attacked event data on the caller. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +void SetLastAttackedEvent(struct attackedEvent evt); + +//:://///////////////////////////////////////////// +//:: AttackedEvent +//::////////////////////////////////////////////// +// +// Returns the available on attacked event data. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct attackedEvent AttackedEvent(); + +//:://///////////////////////////////////////////// +//:: CreatePCClone +//::////////////////////////////////////////////// +// +// Creates a clone of PC at cloneLocation. The clone will +// use the set of script corresponding to scriptset. +// If spawn is TRUE then CustomSet_respawn is called. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +object CreatePCClone(object PC,location cloneLocation,int scriptset = CustomSet_DefaultSet,int spawn = TRUE); + +//:://///////////////////////////////////////////// +//:: GetLastDamagedEvent +//::////////////////////////////////////////////// +// +// Retrieves the last on damaged event data from target. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct damagedEvent GetLastDamagedEvent(object target = OBJECT_SELF); + +//:://///////////////////////////////////////////// +//:: SetLastDamagedEvent +//::////////////////////////////////////////////// +// +// Stores the on damaged event data on the caller. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +void SetLastDamagedEvent(struct damagedEvent evt); + +//:://///////////////////////////////////////////// +//:: DamagedEvent +//::////////////////////////////////////////////// +// +// Returns the data available for a caller on damaged event. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct damagedEvent DamagedEvent(); + +//:://///////////////////////////////////////////// +//:: GetLastBlockedEvent +//::////////////////////////////////////////////// +// +// Retrieves the last on blocked event data from target. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct blockedEvent GetLastBlockedEvent(object target = OBJECT_SELF); + +//:://///////////////////////////////////////////// +//:: SetLastBlockedEvent +//::////////////////////////////////////////////// +// +// Stores the on blocked event data on the caller. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +void SetLastBlockedEvent(struct blockedEvent evt); + +//:://///////////////////////////////////////////// +//:: BlockedEvent +//::////////////////////////////////////////////// +// +// Returns the data available for a caller on blocked event. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct blockedEvent BlockedEvent(); + +void SetDialog(string dialog,object target= OBJECT_SELF); +string GetDialog(object target= OBJECT_SELF); + + +struct perceivedEvent GetLastPerceivedEvent(object target = OBJECT_SELF) +{ + struct perceivedEvent retval; + + retval.isValid = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceivedIsValid"); + + retval.lastPerceived = GetLocalObject(target,"PC_CLONE_SYSTEM_GetLastPerceived"); + retval.lastPerceptionInaudible = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceptionInaudible"); + retval.lastPerceptionSeen = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceptionSeen"); + retval.lastPerceptionVanished = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceptionVanished"); + + return retval; +} +void SetLastPerceivedEvent(struct perceivedEvent evt) +{ + object target = OBJECT_SELF; + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceivedIsValid",evt.isValid); + + SetLocalObject(target,"PC_CLONE_SYSTEM_GetLastPerceived",evt.lastPerceived); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceptionInaudible",evt.lastPerceptionInaudible); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceptionSeen",evt.lastPerceptionSeen); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceptionVanished",evt.lastPerceptionVanished); +} +struct perceivedEvent PerceivedEvent() +{ + struct perceivedEvent retval; + + retval.lastPerceived = GetLastPerceived(); + + retval.isValid = GetIsObjectValid(retval.lastPerceived); + + retval.lastPerceptionInaudible = GetLastPerceptionInaudible(); + retval.lastPerceptionSeen = GetLastPerceptionSeen(); + retval.lastPerceptionVanished = GetLastPerceptionVanished(); + + return retval; +} +struct disturbedEvent GetLastDisturbedEvent(object target = OBJECT_SELF) +{ + struct disturbedEvent retval; + + retval.isValid = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastDisturbedValid"); + + retval.lastDisturbed = GetLocalObject(target,"PC_CLONE_SYSTEM_GetLastDisturbed"); + retval.inventoryDisturbItem = GetLocalObject(target,"PC_CLONE_SYSTEM_InventoryDisturbItem"); + retval.inventoryDisturbType = GetLocalInt(target,"PC_CLONE_SYSTEM_inventoryDisturbType"); + + return retval; +} +void SetLastDisturbedEvent(struct disturbedEvent evt) +{ + object target = OBJECT_SELF; + + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastDisturbedValid",evt.isValid); + + SetLocalObject(target,"PC_CLONE_SYSTEM_GetLastDisturbed",evt.lastDisturbed); + SetLocalObject(target,"PC_CLONE_SYSTEM_InventoryDisturbItem",evt.inventoryDisturbItem); + SetLocalInt(target,"PC_CLONE_SYSTEM_inventoryDisturbType",evt.inventoryDisturbType); +} +struct disturbedEvent DisturbedEvent() +{ + struct disturbedEvent retval; + + retval.lastDisturbed = GetLastDisturbed(); + + retval.inventoryDisturbItem = GetInventoryDisturbItem(); + + retval.isValid = GetIsObjectValid(retval.lastDisturbed) && GetIsObjectValid(retval.inventoryDisturbItem); + + retval.inventoryDisturbType = GetInventoryDisturbType(); + + return retval; +} +struct attackedEvent GetLastAttackedEvent(object target = OBJECT_SELF) +{ + struct attackedEvent retval; + + retval.isValid = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastAttackerValid"); + retval.lastAttacker = GetLocalObject(target,"PC_CLONE_SYSTEM_GetLastAttacker"); + + return retval; +} +void SetLastAttackedEvent(struct attackedEvent evt) +{ + object target = OBJECT_SELF; + + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastAttackerValid",evt.isValid); + SetLocalObject(target,"PC_CLONE_SYSTEM_GetLastAttacker",evt.lastAttacker); +} +struct attackedEvent AttackedEvent() +{ + struct attackedEvent retval; + + retval.lastAttacker = GetLastAttacker(); + + retval.isValid = GetIsObjectValid(retval.lastAttacker); + + return retval; +} + +object CreatePCClone(object PC,location cloneLocation,int scriptset = CustomSet_DefaultSet,int spawn = TRUE) +{ + + object copy = CopyObject(PC,cloneLocation); + + SetLocalInt(copy,"PC_CLONE_SYSTEM",TRUE); + + SetLocalInt(copy,CustomSetScriptSet,scriptset); + + + if(spawn) + { + CustomSet_respawn(copy); + } + + AssignCommand(copy,DelayCommand(RoundsToSeconds(1),ExecuteScript("clone_heartbeat",copy))); + + return copy; +} + +struct damagedEvent GetLastDamagedEvent(object target = OBJECT_SELF) +{ + struct damagedEvent retval; + + retval.isValid = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastDamagerValid"); + retval.lastdamager = GetLocalObject(target,"PC_CLONE_SYSTEM_GetLastDamager"); + retval.totalDamageDealt = GetLocalInt(target,"PC_CLONE_SYSTEM_GetTotalDamageDealt"); + + retval.damageAcid = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_ACID)); + retval.damageBludgeoning = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_BLUDGEONING)); + retval.damageCold = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_COLD)); + retval.damageDivine = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_DIVINE)); + retval.damageElectrical = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_ELECTRICAL)); + retval.damageFire = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_FIRE)); + retval.damageMagical = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_MAGICAL)); + retval.damageNegative = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_NEGATIVE)); + retval.damagePiercing = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_PIERCING)); + retval.damagePositive = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_POSITIVE)); + retval.damageSlashing = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_SLASHING)); + retval.damageSonic = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_SONIC)); + + return retval; + +} +void SetLastDamagedEvent(struct damagedEvent evt) +{ + object target = OBJECT_SELF; + + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastDamagerValid",evt.isValid); + SetLocalObject(target,"PC_CLONE_SYSTEM_GetLastDamager",evt.lastdamager); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetTotalDamageDealt",evt.totalDamageDealt); + + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_ACID),evt.damageAcid); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_BLUDGEONING),evt.damageBludgeoning); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_COLD),evt.damageCold); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_DIVINE),evt.damageDivine); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_ELECTRICAL),evt.damageElectrical); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_FIRE),evt.damageFire); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_MAGICAL),evt.damageMagical); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_NEGATIVE),evt.damageNegative); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_PIERCING),evt.damagePiercing); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_POSITIVE),evt.damagePositive); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_SLASHING),evt.damageSlashing); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_SONIC),evt.damageSonic); +} +struct damagedEvent DamagedEvent() +{ + struct damagedEvent retval; + + + retval.lastdamager = GetLastDamager(); + + retval.isValid = GetIsObjectValid(retval.lastdamager); + + retval.totalDamageDealt = GetTotalDamageDealt(); + + retval.damageAcid = GetDamageDealtByType(DAMAGE_TYPE_ACID); + retval.damageBludgeoning = GetDamageDealtByType(DAMAGE_TYPE_BLUDGEONING); + retval.damageCold = GetDamageDealtByType(DAMAGE_TYPE_COLD); + retval.damageDivine = GetDamageDealtByType(DAMAGE_TYPE_DIVINE); + retval.damageElectrical = GetDamageDealtByType(DAMAGE_TYPE_ELECTRICAL); + retval.damageFire = GetDamageDealtByType(DAMAGE_TYPE_FIRE); + retval.damageMagical = GetDamageDealtByType(DAMAGE_TYPE_MAGICAL); + retval.damageNegative = GetDamageDealtByType(DAMAGE_TYPE_NEGATIVE); + retval.damagePiercing = GetDamageDealtByType(DAMAGE_TYPE_PIERCING); + retval.damagePositive = GetDamageDealtByType(DAMAGE_TYPE_POSITIVE); + retval.damageSlashing = GetDamageDealtByType(DAMAGE_TYPE_SLASHING); + retval.damageSonic = GetDamageDealtByType(DAMAGE_TYPE_SONIC); + + return retval; +} +struct blockedEvent GetLastBlockedEvent(object target = OBJECT_SELF) +{ + struct blockedEvent retval; + + retval.isValid = GetLocalInt(target,"PC_CLONE_SYSTEM_GetBlockingDoorIsValid"); + retval.blockingDoor = GetLocalObject(target,"PC_CLONE_SYSTEM_GetBlockingDoor"); + + return retval; +} +void SetLastBlockedEvent(struct blockedEvent evt) +{ + SetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM_GetBlockingDoorIsValid",evt.isValid); + SetLocalObject(OBJECT_SELF,"PC_CLONE_SYSTEM_GetBlockingDoor",evt.blockingDoor); +} +struct blockedEvent BlockedEvent() +{ + struct blockedEvent retval; + + retval.blockingDoor = GetBlockingDoor(); + + retval.isValid = GetIsObjectValid(retval.blockingDoor); + + return retval; +} + +void SetDialog(string dialog,object target= OBJECT_SELF) +{ + SetLocalString(target,"PC_CLONE_SYSTEM_DLG",dialog); +} +string GetDialog(object target= OBJECT_SELF) +{ + return GetLocalString(target,"PC_CLONE_SYSTEM_DLG"); +} diff --git a/_content/_haks/aoc_prc8_merge/clone_sys.ncs b/_content/_haks/aoc_prc8_merge/clone_sys.ncs new file mode 100644 index 0000000..888aa42 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/clone_sys.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/clone_sys.nss b/_content/_haks/aoc_prc8_merge/clone_sys.nss new file mode 100644 index 0000000..9a1803f --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/clone_sys.nss @@ -0,0 +1,103 @@ +#include "clone_lib" +void main() +{ + if(GetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM")) + { + + + if(!GetIsDead(OBJECT_SELF) && GetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM_DeathRun")) + { + SetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM_DeathRun",FALSE); + } + + + struct perceivedEvent lastPerceptionEvent = GetLastPerceivedEvent(); + struct perceivedEvent perceptionEvent = PerceivedEvent(); + + if( perceptionEvent.isValid && + (!lastPerceptionEvent.isValid || (lastPerceptionEvent != perceptionEvent) ) ) + { + + SetLastPerceivedEvent(perceptionEvent); + + + ExecuteScript("custom_percep",OBJECT_SELF); + + + } + + + if(GetLastSpell() >= 0) + { + + + ExecuteScript("custom_spellcast",OBJECT_SELF); + + SignalEvent(OBJECT_SELF,EventSpellCastAt(OBJECT_SELF,-1,FALSE)); + } + + if(GetUserDefinedEventNumber() >= 0) + { + + ExecuteScript("custom_userdef",OBJECT_SELF); + + SignalEvent(OBJECT_SELF,EventUserDefined(-1)); + } + + struct attackedEvent lastattackedEvent = GetLastAttackedEvent(); + struct attackedEvent attackedEvent = AttackedEvent(); + + if( attackedEvent.isValid && + (!lastattackedEvent.isValid || (lastattackedEvent != attackedEvent) ) ) + { + SetLastAttackedEvent(attackedEvent); + + ExecuteScript("custom_physicald",OBJECT_SELF); + } + + struct disturbedEvent lastDisturbedEvent = GetLastDisturbedEvent(); + struct disturbedEvent disturbedEvent = DisturbedEvent(); + + if( disturbedEvent.isValid && + (!lastDisturbedEvent.isValid || (lastDisturbedEvent != disturbedEvent) ) ) + { + SetLastDisturbedEvent(disturbedEvent); + + ExecuteScript("custom_disturbed",OBJECT_SELF); + } + + struct damagedEvent lastDamagegEvent = GetLastDamagedEvent(); + struct damagedEvent damagegEvent = DamagedEvent(); + + if( damagegEvent.isValid && + (!lastDamagegEvent.isValid || (lastDamagegEvent != damagegEvent) ) ) + { + SetLastDamagedEvent(damagegEvent); + + ExecuteScript("custom_damage",OBJECT_SELF); + } + + struct blockedEvent blockedEvent = BlockedEvent(); + struct blockedEvent lastBlockedEvent = GetLastBlockedEvent(); + + if( blockedEvent.isValid && + (!lastBlockedEvent.isValid || (lastBlockedEvent != blockedEvent) ) ) + { + SetLastBlockedEvent(blockedEvent); + + + ExecuteScript("custom_blocked",OBJECT_SELF); + } + + if(GetIsDead(OBJECT_SELF) && !GetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM_DeathRun")) + { + SetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM_DeathRun",TRUE); + + + + ExecuteScript("custom_death",OBJECT_SELF); + + } + + } +} diff --git a/_content/_haks/aoc_prc8_merge/custom_set_lib.nss b/_content/_haks/aoc_prc8_merge/custom_set_lib.nss new file mode 100644 index 0000000..9ccde8b --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/custom_set_lib.nss @@ -0,0 +1,258 @@ +const string CustomSetScriptSet = "CustomSetScriptSet"; + +const string CustomSet_OnBlocked = "OnBlocked"; +const string CustomSet_OnDamaged = "OnDamaged"; +const string CustomSet_OnDeath = "OnDeath"; +const string CustomSet_OnConversation = "OnConversation"; +const string CustomSet_OnDisturbed = "OnDisturbed"; +const string CustomSet_OnCombatRoundEnd = "OnCombatRoundEnd"; +const string CustomSet_OnHeartbeat = "OnHeartbeat"; +const string CustomSet_OnPhysicalAttacked = "OnPhysicalAttacked"; +const string CustomSet_OnPerception = "OnPerception"; +const string CustomSet_OnRested = "OnRested"; +const string CustomSet_OnSpawn = "OnSpawn"; +const string CustomSet_OnSpellCast = "OnSpellCast"; +const string CustomSet_OnUserDefined = "OnUserDefined"; + +//Default script sets +const int CustomSet_DefaultSet = 1; +const int CustomSet_HenchManSet = 2; +const int CustomSet_X2_DefaultSet = 3; + +// Makes target execute the custom_spawn script. +void CustomSet_respawn(object target=OBJECT_SELF); +// Earase all scripts set on target. +void CustomSet_ClearScripts(object target=OBJECT_SELF); + +// Returns the set of script used by target or 0 if none is set. +int GetCustomSetScriptSet(object target = OBJECT_SELF); +// Sets the set of script that target should use. You may have to call +// CustomSet_respawn. +void SetCustomSetScriptSet(int scriptSet = CustomSet_DefaultSet,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnBlocked(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnBlocked(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnDamaged(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnDamaged(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnDeath(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnDeath(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnConversation(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnConversation(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnDisturbed(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnDisturbed(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnCombatRoundEnd(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnCombatRoundEnd(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnHeartbeat(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnHeartbeat(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnPhysicalAttacked(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnPhysicalAttacked(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnPerception(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnPerception(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnRested(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnRested(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnSpawn(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnSpawn(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnSpellCast(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnSpellCast(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnUserDefined(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnUserDefined(string script,object target = OBJECT_SELF); + + + + + + + + + + +void CustomSet_respawn(object target=OBJECT_SELF) +{ + ExecuteScript("custom_spawn",target); +} + +void CustomSet_ClearScripts(object target=OBJECT_SELF) +{ + DeleteLocalString(target,CustomSet_OnBlocked); + DeleteLocalString(target,CustomSet_OnDamaged); + DeleteLocalString(target,CustomSet_OnDeath); + DeleteLocalString(target,CustomSet_OnConversation); + DeleteLocalString(target,CustomSet_OnDisturbed); + DeleteLocalString(target,CustomSet_OnCombatRoundEnd); + DeleteLocalString(target,CustomSet_OnHeartbeat); + DeleteLocalString(target,CustomSet_OnPhysicalAttacked); + DeleteLocalString(target,CustomSet_OnPerception); + DeleteLocalString(target,CustomSet_OnRested); + DeleteLocalString(target,CustomSet_OnSpawn); + DeleteLocalString(target,CustomSet_OnSpellCast); + DeleteLocalString(target,CustomSet_OnUserDefined); +} + +void SetCustomSetScriptSet(int scriptSet = CustomSet_DefaultSet,object target = OBJECT_SELF) +{ + SetLocalInt(target,CustomSetScriptSet,scriptSet); +} +int GetCustomSetScriptSet(object target = OBJECT_SELF) +{ + return GetLocalInt(target,CustomSetScriptSet); +} + +string GetCustomSet_OnBlocked(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnBlocked); +} +void SetCustomSet_OnBlocked(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnBlocked,script); +} + +string GetCustomSet_OnDamaged(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnDamaged); +} +void SetCustomSet_OnDamaged(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnDamaged,script); +} + +string GetCustomSet_OnDeath(object target = OBJECT_SELF) + +{ + return GetLocalString(target,CustomSet_OnDeath); +} +void SetCustomSet_OnDeath(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnDeath,script); +} + +string GetCustomSet_OnConversation(object target = OBJECT_SELF) + +{ + return GetLocalString(target,CustomSet_OnConversation); +} +void SetCustomSet_OnConversation(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnConversation,script); +} + +string GetCustomSet_OnDisturbed(object target = OBJECT_SELF) + +{ + return GetLocalString(target,CustomSet_OnDisturbed); +} +void SetCustomSet_OnDisturbed(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnDisturbed,script); +} + +string GetCustomSet_OnCombatRoundEnd(object target = OBJECT_SELF) + +{ + return GetLocalString(target,CustomSet_OnCombatRoundEnd); +} +void SetCustomSet_OnCombatRoundEnd(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnCombatRoundEnd,script); +} + +string GetCustomSet_OnHeartbeat(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnHeartbeat); +} +void SetCustomSet_OnHeartbeat(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnHeartbeat,script); +} + +string GetCustomSet_OnPhysicalAttacked(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnPhysicalAttacked); +} +void SetCustomSet_OnPhysicalAttacked(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnPhysicalAttacked,script); +} + +string GetCustomSet_OnPerception(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnPerception); +} +void SetCustomSet_OnPerception(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnPerception,script); +} + +string GetCustomSet_OnRested(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnRested); +} +void SetCustomSet_OnRested(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnRested,script); +} + +string GetCustomSet_OnSpawn(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnSpawn); +} +void SetCustomSet_OnSpawn(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnSpawn,script); +} + +string GetCustomSet_OnSpellCast(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnSpellCast); +} +void SetCustomSet_OnSpellCast(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnSpellCast,script); +} + + +string GetCustomSet_OnUserDefined(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnUserDefined); +} +void SetCustomSet_OnUserDefined(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnUserDefined,script); +} diff --git a/_content/_haks/aoc_prc8_merge/default.ncs b/_content/_haks/aoc_prc8_merge/default.ncs new file mode 100644 index 0000000..68a2975 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/default.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/default.nss b/_content/_haks/aoc_prc8_merge/default.nss new file mode 100644 index 0000000..f184be3 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/default.nss @@ -0,0 +1,419 @@ +//:://///////////////////////////////////////////// +//:: Default eventscript +//:: default +//::////////////////////////////////////////////// +/** @file + This script is executed by the engine for events + when a creature does not have a script defined + for the event in question. This includes PCs. + + The purpose of this script is to determine + which particular event triggered it's execution + and to route execution to scripts dedicated to + that event. +*/ +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// + +#include "prc_alterations" +#include "prc_inc_leadersh" + +const int LOCAL_DEBUG = FALSE; //DEBUG; + +/**************************/ +/* Declarations for Tests */ +/**************************/ + +int IsBlocked(); // test GetBlockingDoor() +int IsCombatRoundEnd(); // Need to fake this +int IsConversation(); // test a local variable +int IsDamaged(); // test GetLastDamager() +int IsDeath(); // test GetIsDead(OBJECT_SELF) +int IsDisturbed(); // test GetLastDisturbed() +int IsHeartbeat(); // test game time +int IsPerception(); // test GetLastPerceived() +int IsPhysicalAttacked(); // test GetLastAttacker() +int IsRested(); // test GetIsResting(GetMaster()) +int IsSpawn(); // run once, never again +int IsSpellCastAt(); // test GetLastSpellCaster() +int IsUserDefined(); // test GetUserDefinedEventNumber() + +/*********************************/ +/* Utility Function declarations */ +/*********************************/ + +//void ForceAddHenchman(object oHenchman); +//int IsLinkboyAttached(); +//void GetLinkboy(); +int IsObjectChanged(object oTest, string sVarname); +int IsIntChanged(int iTest, string sVarname); +int IsStringChanged(string sTest, string sVarname); +void RunScript(int nEvent); +//void SpawnRecallLocals(object oPC); +//void StartGroupDiscussion(); + +/*****************************/ +/* Implementation of Actions */ +/*****************************/ + +void OnSpawn() { RunScript(EVENT_VIRTUAL_ONSPAWNED); } +void OnDeath() { RunScript(EVENT_VIRTUAL_ONDEATH); } +void OnRested() { RunScript(EVENT_VIRTUAL_ONRESTED); } +void OnHeartbeat() { RunScript(EVENT_VIRTUAL_ONHEARTBEAT); } +void OnPerception() { RunScript(EVENT_VIRTUAL_ONPERCEPTION); } +void OnBlocked() { RunScript(EVENT_VIRTUAL_ONBLOCKED); } +void OnCombatRoundEnd() { RunScript(EVENT_VIRTUAL_ONCOMBATROUNDEND); } +void OnDisturbed() { RunScript(EVENT_VIRTUAL_ONDISTURBED); } +void OnPhysicalAttacked() { RunScript(EVENT_VIRTUAL_ONPHYSICALATTACKED); } +void OnSpellCastAt() { RunScript(EVENT_VIRTUAL_ONSPELLCASTAT); } +void OnDamaged() { RunScript(EVENT_VIRTUAL_ONDAMAGED); } +void OnUserDefined() { RunScript(EVENT_VIRTUAL_ONUSERDEFINED); } +void OnConversation() { RunScript(EVENT_VIRTUAL_ONCONVERSATION); } + +/******************/ +/* Main Procedure */ +/******************/ + +void main() +{ + ExecuteScript("clone_sys"); + + if(LOCAL_DEBUG) DoDebug("default running for " + DebugObject2Str(OBJECT_SELF)); + + // OnConversation is exclusive of everything else, since it is just routed through this script + if(IsConversation()) OnConversation(); + else + { + if(IsBlocked()) OnBlocked(); + if(IsCombatRoundEnd()) OnCombatRoundEnd(); + if(IsDamaged()) OnDamaged(); + if(IsDeath()) OnDeath(); + if(IsDisturbed()) OnDisturbed(); + if(IsHeartbeat()) OnHeartbeat(); + if(IsPerception()) OnPerception(); + if(IsPhysicalAttacked()) OnPhysicalAttacked(); + if(IsRested()) OnRested(); + if(IsSpawn()) OnSpawn(); + if(IsSpellCastAt()) OnSpellCastAt(); + if(IsUserDefined()) OnUserDefined(); + } +} + +/************************/ +/* Tests for conditions */ +/************************/ + +int IsBlocked() +{ + return IsObjectChanged(GetBlockingDoor(), "BlockingDoor"); +} + +int IsCombatRoundEnd() +{ + // Need to fake this. + // Return TRUE iff you are in combat and not doing anything useful + if(GetIsInCombat() || + (GetIsObjectValid(GetMaster()) && + GetIsInCombat(GetMaster()) + ) + ) + { + int nGCA = GetCurrentAction(); + if(nGCA == ACTION_ATTACKOBJECT || + nGCA == ACTION_CASTSPELL || + nGCA == ACTION_COUNTERSPELL || + nGCA == ACTION_HEAL || + nGCA == ACTION_FOLLOW || + nGCA == ACTION_ITEMCASTSPELL || + nGCA == ACTION_KIDAMAGE || + nGCA == ACTION_OPENDOOR || + nGCA == ACTION_SMITEGOOD + ) + { + return FALSE; + } + else + { + return TRUE; + } + } + else + { + return FALSE; + } +} + +int IsConversation() +{ + object oCreature = OBJECT_SELF; + if(GetLocalInt(oCreature, "default_conversation_event")) + { + DeleteLocalInt(oCreature, "default_conversation_event"); + return TRUE; + } + + return FALSE; +} + +int IsDamaged() +{ + object oCreature = OBJECT_SELF; + object oDamager = GetLastDamager(oCreature); + + // The damage source must be valid + if(GetIsObjectValid(oDamager)) + { + // Get previous damage data + string sOldDamage = GetLocalString(oCreature, "PRC_Event_OnDamaged_Data"); + + // Create string based on current damage values + // Start with the damaging object + string sNewDamage = ObjectToString(oDamager); + // Catenate amount of damage of each damage type + int i; + for(i = DAMAGE_TYPE_BLUDGEONING; i <= DAMAGE_TYPE_BASE_WEAPON; i = i << 1) + sNewDamage += IntToString(GetDamageDealtByType(i)); + + // Determine if the damage dealt has changed + if(sOldDamage != sNewDamage) + { + if(LOCAL_DEBUG) DoDebug("default: Damage has changed:\n" + sNewDamage); + SetLocalString(oCreature, "PRC_Event_OnDamaged_Data", sNewDamage); + + // Update damage counter + SetLocalInt(oCreature, "PRC_LastDamageTaken", GetTotalDamageDealt()); + + return TRUE; + } + } + + return FALSE; +} + +int IsDeath() +{ + return GetIsDead(OBJECT_SELF); +} + +int IsDisturbed() +{ + object oCreature = OBJECT_SELF; + object oDisturber = GetLastDisturbed(); + + if(GetIsObjectValid(oDisturber)) // The creature has been disturbed at least once during the game + { + // Get previous disturb data + string sOldDisturb = GetLocalString(oCreature, "PRC_Event_OnDisturbed_Data"); + + // Create string based on current disturb values + string sNewDisturb = ObjectToString(oDisturber); + sNewDisturb += IntToString(GetInventoryDisturbType()); + sNewDisturb += ObjectToString(GetInventoryDisturbItem()); + + // Determine if the data has changed + if(sOldDisturb != sNewDisturb) + { + if(LOCAL_DEBUG) DoDebug("default: Disturbed has changed:\n" + sNewDisturb); + SetLocalString(oCreature, "PRC_Event_OnDisturbed_Data", sNewDisturb); + return TRUE; + } + } + + return FALSE; +} + +int IsHeartbeat() +{ + object oCreature = OBJECT_SELF; + // PCs use the module HB + if(!GetIsPC(oCreature)) + { + // Check how long since last recorded heartbeat + int nSecsChange = (GetTimeSecond() - GetLocalInt(oCreature, "PRC_LastHeartbeatSeconds") + 60) % 60; + + // See if the master clock has ticked or 9 seconds have elapsed anyway + if(nSecsChange >= 6) + { + SetLocalInt(oCreature, "PRC_LastHeartbeatSeconds", GetTimeSecond()); + return TRUE; + } + } + + return FALSE; +} + +int IsPerception() +{ + object oCreature = OBJECT_SELF; + object oPerceived = GetLastPerceived(); + + if(GetIsObjectValid(oPerceived)) // The creature has perceived something at least once during the game + { + // Get previous perception data + string sOldPerception = GetLocalString(oCreature, "PRC_Event_OnPerception_Data"); + + // Create string based on current perception values + string sNewPerception = ObjectToString(oPerceived); + sNewPerception += IntToString(GetLastPerceptionHeard()); + sNewPerception += IntToString(GetLastPerceptionInaudible()); + sNewPerception += IntToString(GetLastPerceptionSeen()); + sNewPerception += IntToString(GetLastPerceptionVanished());; + + // Determine if the data has changed + if(sOldPerception != sNewPerception) + { + if(LOCAL_DEBUG) DoDebug("default: Perception has changed:\n" + sNewPerception); + SetLocalString(oCreature, "PRC_Event_OnPerception_Data", sNewPerception); + return TRUE; + } + } + + return FALSE; +} + +int IsPhysicalAttacked() +{ + object oCreature = OBJECT_SELF; + object oAttacker = GetLastAttacker(); + + // Recent enough event that the attacker is at least still valid + if(GetIsObjectValid(oAttacker)) + { + // Get previous attack data + string sOldAttack = GetLocalString(oCreature, "PRC_Event_OnPhysicalAttacked_Data"); + + // Create string for the current attack data + string sNewAttack = ObjectToString(oAttacker); + sNewAttack += ObjectToString(GetLastWeaponUsed(oAttacker)); + sNewAttack += IntToString(GetLastAttackMode(oAttacker)); + sNewAttack += IntToString(GetLastAttackType(oAttacker)); + + // Determine if the data has changed + if(sOldAttack != sNewAttack) + { + if(LOCAL_DEBUG) DoDebug("default: Attack has changed:\n" + sNewAttack); + SetLocalString(oCreature, "PRC_Event_OnPhysicalAttacked_Data", sNewAttack); + return TRUE; + } + } + + return FALSE; +} + +int IsRested() +{ + // PCs use the module OnRest events + if(!GetIsPC(OBJECT_SELF)) + { + // Goes TRUE when Master starts resting + int bMasterIsResting = GetIsResting(GetMaster()); + return IsIntChanged(bMasterIsResting,"MasterIsResting") && bMasterIsResting; + } + + return FALSE; +} + +int IsSpawn() +{ + object oCreature = OBJECT_SELF; + if(!GetLocalInt(oCreature, "PRC_OnSpawn_Marker")) + { + SetLocalInt(oCreature, "PRC_OnSpawn_Marker", TRUE); + return TRUE; + } + + return FALSE; +} + +int IsSpellCastAt() +{ + object oCreature = OBJECT_SELF; + if(LOCAL_DEBUG) DoDebug("default: IsSpellCastAt():\n" + + "GetLastSpellCaster() = " + DebugObject2Str(GetLastSpellCaster()) + "\n" + + "GetLastSpell() = " + IntToString(GetLastSpell()) + "\n" + + "GetLastSpellHarmful() = " + IntToString(GetLastSpellHarmful()) + "\n" + ); + // If the event data does not contain the fake value, a spell has been cast + if(GetLastSpell() != -1) + { + // Reset the event data to the fake value + DelayCommand(0.0f, SignalEvent(oCreature, EventSpellCastAt(oCreature, -1, FALSE))); + + return TRUE; + } + + return FALSE; +} + +int IsUserDefined() +{ + object oCreature = OBJECT_SELF; + if(LOCAL_DEBUG) DoDebug("default: IsUserDefined():\n" + + "GetUserDefinedEventNumber() = " + IntToString(GetUserDefinedEventNumber()) + "\n" + ); + + if(GetUserDefinedEventNumber() != -1) + { + // Reset the event data to the fake value + DelayCommand(0.0f, SignalEvent(oCreature, EventUserDefined(-1))); + + return TRUE; + } + + return FALSE; +} + +/*********************/ +/* Utility Functions */ +/*********************/ + +int IsObjectChanged(object oTest, string sName) +{ + if(oTest != GetLocalObject(OBJECT_SELF, "PRC_Event_" + sName)) + { + SetLocalObject(OBJECT_SELF, "PRC_Event_" + sName, oTest); + return TRUE; + } + else + { + return FALSE; + } +} + +int IsIntChanged(int iTest, string sName) +{ + if(iTest != GetLocalInt(OBJECT_SELF, "PRC_Event_" + sName)) + { + SetLocalInt(OBJECT_SELF, "PRC_Event_" + sName, iTest); + return TRUE; + } + else + { + return FALSE; + } +} + +int IsStringChanged(string sTest, string sName) +{ + if(sTest != GetLocalString(OBJECT_SELF, "PRC_Event_" + sName)) + { + SetLocalString(OBJECT_SELF, "PRC_Event_" + sName, sTest); + return TRUE; + } + else + { + return FALSE; + } +} + +void RunScript(int nEvent) +{ + object oSelf = OBJECT_SELF; + + if(LOCAL_DEBUG) DoDebug("default, event = " + IntToString(nEvent)); + + if(nEvent == EVENT_VIRTUAL_ONDAMAGED) + SignalEvent(oSelf, EventUserDefined(EVENT_DAMAGED)); + // Determine NPC script name and run generic eventhook + ExecuteAllScriptsHookedToEvent(oSelf, nEvent); +} \ No newline at end of file diff --git a/_content/_haks/aoc_prc8_merge/nw_g0_conversat.ncs b/_content/_haks/aoc_prc8_merge/nw_g0_conversat.ncs new file mode 100644 index 0000000..78cf0b0 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_g0_conversat.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_g0_conversat.nss b/_content/_haks/aoc_prc8_merge/nw_g0_conversat.nss new file mode 100644 index 0000000..cabfbbb --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_g0_conversat.nss @@ -0,0 +1,28 @@ +//////////////////////////////////////////////////////////// +// OnConversation +// g_ConversationDG.nss +// Copyright (c) 2001 Bioware Corp. +//////////////////////////////////////////////////////////// +// Created By: Noel Borstad +// Created On: 04/25/02001 +// Description: This is the default script that is called if +// no OnConversation script is specified. +//////////////////////////////////////////////////////////// +#include "custom_set_lib" +#include "inc_eventhook" +void main() +{ + ExecuteAllScriptsHookedToEvent(OBJECT_SELF, EVENT_VIRTUAL_ONCONVERSATION); + + if(!GetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM")) + { + if ( GetListenPatternNumber() == -1 ) + { + BeginConversation(); + } + } + else + { + ExecuteScript("custom_conv",OBJECT_SELF); + } +} \ No newline at end of file diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_aurablnda.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_aurablnda.ncs new file mode 100644 index 0000000..e4aa3c2 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_aurablnda.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_aurablnda.nss b/_content/_haks/aoc_prc8_merge/nw_s1_aurablnda.nss new file mode 100644 index 0000000..0babfaa --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_aurablnda.nss @@ -0,0 +1,48 @@ +//:://///////////////////////////////////////////// +//:: Aura of Blinding On Enter +//:: NW_S1_AuraBlndA.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Upon entering the aura of the creature the player + must make a will save or be blinded because of the + sheer ugliness or beauty of the creature. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 25, 2001 +//::////////////////////////////////////////////// +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ +//:: Declare major variables + object oNPC = GetAreaOfEffectCreator(); + object oTarget = GetEnteringObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDuration = 1 + (nHD/3); + + effect eBlind = EffectBlindness(); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eVis = EffectVisualEffect(VFX_IMP_BLIND_DEAF_M); + effect eLink = EffectLinkEffects(eBlind, eDur); + + //if (NullMagicOverride(GetArea(oTarget), oTarget, oTarget)) {return;} + + //Entering object must make a will save or be blinded for the duration. + if(GetIsEnemy(oTarget, GetAreaOfEffectCreator())) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_AURA_BLINDING)); + if (!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC)) + { + //Apply the blind effect and the VFX impact + DelayCommand(0.0f, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(0.0f, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration))); + } + } +} \ No newline at end of file diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_auracoldc.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_auracoldc.ncs new file mode 100644 index 0000000..a5e7712 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_auracoldc.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_auracoldc.nss b/_content/_haks/aoc_prc8_merge/nw_s1_auracoldc.nss new file mode 100644 index 0000000..49cd95e --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_auracoldc.nss @@ -0,0 +1,62 @@ +//:://///////////////////////////////////////////// +//:: Aura of Frost on Heartbeat +//:: NW_S1_AuraColdC.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Prolonged exposure to the aura of the creature + causes frost damage to all within the aura. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 25, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" +void main() +{ +//:: Declare major variables + object oNPC = GetAreaOfEffectCreator(); + object oTarget = GetEnteringObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nFrost = 1 + (nHD/3); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDamage; + + effect eDam; + effect eVis = EffectVisualEffect(VFX_IMP_FROST_S); + + //Get the first target in the aura of cold + oTarget = GetFirstInPersistentObject(); + + while (GetIsObjectValid(oTarget)) + { +/* if (NullMagicOverride(GetArea(oTarget), oTarget, oTarget)) + { + oTarget = GetNextInPersistentObject(OBJECT_SELF); + continue; + } */ + if(GetIsEnemy(oTarget, GetAreaOfEffectCreator())) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_AURA_COLD)); + //Roll damage based on the creatures HD + nDamage = d4(nFrost); + //Make a Fortitude save for half + if(PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_COLD)) + { + nDamage = nDamage / 2; + } + //Set the damage effect + eDam = EffectDamage(nDamage, DAMAGE_TYPE_COLD); + //Apply the VFX constant and damage effect + ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } + //Get the next target in the aura of cold + oTarget = GetNextInPersistentObject(); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_auraelecc.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_auraelecc.ncs new file mode 100644 index 0000000..2d8e4c0 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_auraelecc.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_auraelecc.nss b/_content/_haks/aoc_prc8_merge/nw_s1_auraelecc.nss new file mode 100644 index 0000000..06994f4 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_auraelecc.nss @@ -0,0 +1,58 @@ +//:://///////////////////////////////////////////// +//:: Aura of Electricity on Heartbeat +//:: NW_S1_AuraElecC.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Prolonged exposure to the aura of the creature + causes electrical damage to all within the aura. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 25, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ +//:: Declare major variables + object oNPC = GetAreaOfEffectCreator(); + int nHD = GetHitDice(oNPC); + int nZap = 1 + (nHD / 3); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 + nCHAMod + (nHD/2); + int nDamage; + + effect eDam; + effect eVis = EffectVisualEffect(VFX_IMP_LIGHTNING_S); + + //Get first target in spell area + object oTarget = GetFirstInPersistentObject(); + while (GetIsObjectValid(oTarget)) + { +/* if (NullMagicOverride(GetArea(oTarget), oTarget, oTarget)) + { + oTarget = GetNextInPersistentObject(OBJECT_SELF); + continue; + } */ + if(GetIsEnemy(oTarget, GetAreaOfEffectCreator())) + { + nDamage = d4(nZap); + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_AURA_ELECTRICITY)); + //Make a saving throw check + if(PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_ELECTRICITY)) + { + nDamage = nDamage / 2; + } + eDam = EffectDamage(nDamage, DAMAGE_TYPE_ELECTRICAL); + //Apply the VFX impact and effects + DelayCommand(0.0f, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + DelayCommand(0.0f, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + //Get next target in spell area + oTarget = GetNextInPersistentObject(); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_aurafirec.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_aurafirec.ncs new file mode 100644 index 0000000..725e169 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_aurafirec.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_aurafirec.nss b/_content/_haks/aoc_prc8_merge/nw_s1_aurafirec.nss new file mode 100644 index 0000000..a6b9638 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_aurafirec.nss @@ -0,0 +1,59 @@ +//:://///////////////////////////////////////////// +//:: Aura of Fire on Heartbeat +//:: NW_S1_AuraFireC.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Prolonged exposure to the aura of the creature + causes fire damage to all within the aura. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 25, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" +void main() +{ +//:: Declare major variables + object oNPC = GetAreaOfEffectCreator(); + object oTarget = GetFirstInPersistentObject(); //:: Get first target in spell area + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nBurn = 1 + (nHD/3); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDamage; + int nDamSave; + + effect eDam; + effect eVis = EffectVisualEffect(VFX_IMP_FLAME_S); + + while(GetIsObjectValid(oTarget)) + { +/* if (NullMagicOverride(GetArea(oTarget), oTarget, oTarget)) + { + oTarget = GetNextInPersistentObject(OBJECT_SELF); + continue; + } */ + if(GetIsEnemy(oTarget, GetAreaOfEffectCreator())) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(GetAreaOfEffectCreator(), SPELLABILITY_AURA_FIRE)); + //Roll damage + nDamage = d4(nBurn); + //Make a saving throw check + if(PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_FIRE)) + { + nDamage = nDamage / 2; + } + //Set the damage effect + eDam = EffectDamage(nDamage, DAMAGE_TYPE_FIRE); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget); + } + //Get next target in spell area + oTarget = GetNextInPersistentObject(); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_auramenca.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_auramenca.ncs new file mode 100644 index 0000000..bde03c8 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_auramenca.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_auramenca.nss b/_content/_haks/aoc_prc8_merge/nw_s1_auramenca.nss new file mode 100644 index 0000000..38a0a94 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_auramenca.nss @@ -0,0 +1,46 @@ +//:://///////////////////////////////////////////// +//:: Aura of Menace On Enter +//:: NW_S1_AuraMencA.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Upon entering the aura all those that fail + a will save are stricken with Doom. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 25, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ +//:: Declare major variables + object oNPC = GetAreaOfEffectCreator(); + object oTarget = GetEnteringObject(); + + //if (NullMagicOverride(GetArea(oTarget), oTarget, oTarget)) {return;} + + int nDuration = 1 + (GetHitDice(oNPC)/3); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (GetHitDice(oNPC)/2); + int nLevel = PRCGetCasterLevel(OBJECT_SELF); + int nMetaMagic = PRCGetMetaMagicFeat(); + + effect eVis = EffectVisualEffect(VFX_IMP_DOOM); + effect eLink = CreateDoomEffectsLink(); + + if(GetIsEnemy(oTarget, GetAreaOfEffectCreator())) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_AURA_MENACE)); + //Spell Resistance and Saving throw + if (!/*Will Save*/ PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC)) + { + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink , oTarget, TurnsToSeconds(nDuration)); + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_auraprota.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_auraprota.ncs new file mode 100644 index 0000000..cea1eec Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_auraprota.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_auraprota.nss b/_content/_haks/aoc_prc8_merge/nw_s1_auraprota.nss new file mode 100644 index 0000000..548f284 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_auraprota.nss @@ -0,0 +1,35 @@ +//:://///////////////////////////////////////////// +//:: Aura of Protection: On Enter +//:: NW_S1_AuraProtA.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Acts as a double strength Magic Circle against + evil and a Minor Globe for those friends in + the area. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On:Jan 8, 2002, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +void main() +{ + //Declare major variables + effect eProt = CreateProtectionFromAlignmentLink(ALIGNMENT_EVIL); + effect eGlobe = EffectSpellLevelAbsorption(3, 0); + effect eDur = EffectVisualEffect(VFX_DUR_GLOBE_MINOR); + + effect eLink = EffectLinkEffects(eProt, eGlobe); + eLink = EffectLinkEffects(eLink, eDur); + + object oTarget = GetEnteringObject(); + //if (NullMagicOverride(GetArea(oTarget), oTarget, oTarget)) {return;} + //Faction Check + if(GetIsFriend(oTarget, GetAreaOfEffectCreator())) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLink, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_aurastuna.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_aurastuna.ncs new file mode 100644 index 0000000..b6eda58 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_aurastuna.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_aurastuna.nss b/_content/_haks/aoc_prc8_merge/nw_s1_aurastuna.nss new file mode 100644 index 0000000..03d0aae --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_aurastuna.nss @@ -0,0 +1,48 @@ +//:://///////////////////////////////////////////// +//:: Aura Stunning On Enter +//:: NW_S1_AuraStunA.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Upon entering the aura of the creature the player + must make a will save or be stunned. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 25, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" +void main() +{ +//:: Declare major variables + object oNPC = GetAreaOfEffectCreator(); + object oTarget = GetEnteringObject(); + + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDuration = GetHitDice(oNPC); + int nDC = 10 + nCHAMod + (nDuration/2); + + //if (NullMagicOverride(GetArea(oTarget), oTarget, oTarget)) {return;} + + effect eVis = EffectVisualEffect(VFX_IMP_STUN); + effect eVis2 = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED); + effect eDeath = EffectStunned(); + effect eLink = EffectLinkEffects(eVis2, eDeath); + + nDuration = GetScaledDuration(nDuration, oTarget); + + if(!GetIsFriend(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_AURA_STUN)); + //Make a saving throw check + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } + } +} \ No newline at end of file diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_auraunata.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_auraunata.ncs new file mode 100644 index 0000000..8ebd947 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_auraunata.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_auraunata.nss b/_content/_haks/aoc_prc8_merge/nw_s1_auraunata.nss new file mode 100644 index 0000000..a597062 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_auraunata.nss @@ -0,0 +1,48 @@ +//:://///////////////////////////////////////////// +//:: Aura of the Unnatural On Enter +//:: NW_S1_AuraMencA.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Upon entering the aura all animals are struck with + fear. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 25, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" +void main() +{ +//:: Declare major variables + object oNPC = GetAreaOfEffectCreator(); + effect eVis = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_FEAR); + effect eFear = EffectFrightened(); + effect eLink = EffectLinkEffects(eVis, eFear); + object oTarget = GetEnteringObject(); + + //if (NullMagicOverride(GetArea(oTarget), oTarget, oTarget)) {return;} + + int nDuration = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nRacial = GetRacialType(oTarget); + int nDC = 10 + nCHAMod + (GetHitDice(oNPC)/2); + + if(GetIsEnemy(oTarget)) + { + nDuration = (nDuration / 3) + 1; + //Make a saving throw check + if(nRacial == RACIAL_TYPE_ANIMAL) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(GetAreaOfEffectCreator(), SPELLABILITY_AURA_UNNATURAL)); + //if (!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_FEAR)) //:: This ability only affects animals & they don't get a save. + //{ + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration)); + //} + } + } +} \ No newline at end of file diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_aurauneaa.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_aurauneaa.ncs new file mode 100644 index 0000000..34bc167 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_aurauneaa.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_aurauneaa.nss b/_content/_haks/aoc_prc8_merge/nw_s1_aurauneaa.nss new file mode 100644 index 0000000..6f4a75b --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_aurauneaa.nss @@ -0,0 +1,46 @@ +//:://///////////////////////////////////////////// +//:: Aura Unearthly Visage On Enter +//:: NW_S1_AuraUnEaA.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Upon entering the aura of the creature the player + must make a will save or be killed because of the + sheer ugliness or beauty of the creature. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 25, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ +//:: Declare major variables + object oNPC = GetAreaOfEffectCreator(); + object oTarget = GetEnteringObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + //if (NullMagicOverride(GetArea(oTarget), oTarget, oTarget)) {return;} + + effect eDeath = EffectDeath(); + effect eVis = EffectVisualEffect(VFX_IMP_DEATH); + + if(GetIsEnemy(oTarget, oNPC)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_AURA_UNEARTHLY_VISAGE)); + //Make a saving throw check + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_DEATH)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_INSTANT, eDeath, oTarget); + //ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltacid.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltacid.ncs new file mode 100644 index 0000000..a5952b3 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltacid.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltacid.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltacid.nss new file mode 100644 index 0000000..ef53a16 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltacid.nss @@ -0,0 +1,66 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Acid +//:: NW_S1_BltAcid +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCONMod = GetAbilityModifier(ABILITY_CONSTITUTION, oNPC); + int nDC = 10 +nCONMod+ (nHD/2); + int nCount = nHD/2; + if (nCount == 0) { nCount = 1; } + int nDamage = d6(nCount); + + effect eVis = EffectVisualEffect(VFX_IMP_ACID_S); + effect eBolt; + + //ankheg + if(GetAppearanceType(oNPC) == APPEARANCE_TYPE_BEETLE_SLICER) + { + nDamage = d4(4); + } + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_ACID)); + + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC,SAVING_THROW_TYPE_ACID); + + //Make a ranged touch attack + int nTouch = TouchAttackRanged(oTarget); + if(nTouch > 0) + { + if(nTouch == 2) + { + nDamage *= 2; + } + //Set damage effect + eBolt = EffectDamage(nDamage, DAMAGE_TYPE_ACID); + if(nDamage > 0) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_INSTANT, eBolt, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltcharm.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltcharm.ncs new file mode 100644 index 0000000..2a37c20 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltcharm.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltcharm.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltcharm.nss new file mode 100644 index 0000000..df11d65 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltcharm.nss @@ -0,0 +1,47 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Charm +//:: NW_S1_BltCharm +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +//#include "wm_include" +#include "NW_I0_SPELLS" +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD + 1) / 2; + nCount = GetScaledDuration(nCount, oTarget); + + effect eVis = EffectVisualEffect(VFX_IMP_CHARM); + effect eBolt = EffectCharmed(); + eBolt = GetScaledEffect(eBolt, oTarget); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eLink = EffectLinkEffects(eBolt, eDur); + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_CHARM)); + //Make a saving throw check + if (!/*Will Save*/ PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS) && TouchAttackRanged(oTarget)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nCount)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} \ No newline at end of file diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltchrdr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltchrdr.ncs new file mode 100644 index 0000000..1d69902 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltchrdr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltchrdr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltchrdr.nss new file mode 100644 index 0000000..e734580 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltchrdr.nss @@ -0,0 +1,48 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Charisma Drain +//:: NW_S1_BltChrDr +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Fortitude save is + needed to avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = nHD / 3; + if (nCount == 0) { nCount = 1; } + int nDamage = d6(nCount); + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eBolt; + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_BOLT_ABILITY_DRAIN_CHARISMA)); + //Make a saving throw check + if (!/*Fort Save*/ PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE) && TouchAttackRanged(oTarget)) + { + eBolt = EffectAbilityDecrease(ABILITY_CHARISMA, nCount); + eBolt = SupernaturalEffect(eBolt); + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eBolt, oTarget, RoundsToSeconds(nHD)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltcold.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltcold.ncs new file mode 100644 index 0000000..2d00a86 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltcold.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltcold.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltcold.nss new file mode 100644 index 0000000..657f0fe --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltcold.nss @@ -0,0 +1,60 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Cold +//:: NW_S1_BltCold +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = nHD/2; + if (nCount == 0) { nCount = 1; } + int nDamage = d6(nCount); + + effect eVis = EffectVisualEffect(VFX_IMP_FROST_S); + effect eBolt; + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_COLD)); + + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC,SAVING_THROW_TYPE_COLD); + + //Make a ranged touch attack + int nTouch = TouchAttackRanged(oTarget); + if(nTouch > 0) + { + if(nTouch == 2) + { + nDamage *= 2; + } + //Set damage effect + eBolt = EffectDamage(nDamage, DAMAGE_TYPE_COLD); + if(nDamage > 0) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_INSTANT, eBolt, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltcondr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltcondr.ncs new file mode 100644 index 0000000..6560555 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltcondr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltcondr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltcondr.nss new file mode 100644 index 0000000..9d85f04 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltcondr.nss @@ -0,0 +1,48 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Constitution Drain +//:: NW_S1_BltConDr +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Fort save is + needed to avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD /3); + if (nCount == 0) { nCount = 1; } + int nDamage = d6(nCount); + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eBolt; + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_ABILITY_DRAIN_CONSTITUTION)); + //Make a saving throw check + if (!/*Fort Save*/ PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE) && TouchAttackRanged(oTarget)) + { + eBolt = EffectAbilityDecrease(ABILITY_CONSTITUTION, nCount); + eBolt = SupernaturalEffect(eBolt); + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eBolt, oTarget, RoundsToSeconds(nHD)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltconf.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltconf.ncs new file mode 100644 index 0000000..e74ecf4 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltconf.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltconf.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltconf.nss new file mode 100644 index 0000000..5bed7dc --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltconf.nss @@ -0,0 +1,48 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Confuse +//:: NW_S1_BltConf +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +//#include "wm_include" +#include "NW_I0_SPELLS" +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD + 1) / 2; + nCount = GetScaledDuration(nCount, oTarget); + + effect eVis2 = EffectVisualEffect(VFX_IMP_CONFUSION_S); + effect eVis = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED); + effect eBolt = EffectConfused(); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eLink = EffectLinkEffects(eBolt, eDur); + eLink = EffectLinkEffects(eLink, eVis); + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_CONFUSE)); + //Make a saving throw check + if (!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS) && TouchAttackRanged(oTarget)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nCount)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis2, oTarget); + } +} \ No newline at end of file diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltdaze.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltdaze.ncs new file mode 100644 index 0000000..b8ec5d2 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltdaze.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltdaze.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltdaze.nss new file mode 100644 index 0000000..68d15c7 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltdaze.nss @@ -0,0 +1,47 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Daze +//:: NW_S1_BltDaze +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +//#include "wm_include" +#include "NW_I0_SPELLS" +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD + 1) / 2; + nCount = GetScaledDuration(nCount, oTarget); + + effect eVis = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED); + effect eBolt = EffectDazed(); + eBolt = GetScaledEffect(eBolt, oTarget); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eLink = EffectLinkEffects(eBolt, eDur); + eLink = EffectLinkEffects(eLink, eVis); + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_DAZE)); + //Make a saving throw check + if (!/*Will Save*/ PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS) && TouchAttackRanged(oTarget)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nCount)); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltdeath.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltdeath.ncs new file mode 100644 index 0000000..ef10b59 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltdeath.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltdeath.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltdeath.nss new file mode 100644 index 0000000..e2cbcd7 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltdeath.nss @@ -0,0 +1,47 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Death +//:: NW_S1_BltDeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + effect eVis = EffectVisualEffect(VFX_IMP_DEATH); + effect eBolt = EffectDeath(); + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_DEATH)); + //Make a saving throw check + if(TouchAttackRanged(oTarget)) + { + if(!PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_DEATH)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_INSTANT, eBolt, oTarget); + //ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltdexdr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltdexdr.ncs new file mode 100644 index 0000000..2904c69 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltdexdr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltdexdr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltdexdr.nss new file mode 100644 index 0000000..4ef34d8 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltdexdr.nss @@ -0,0 +1,48 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Dexterity Drain +//:: NW_S1_BltDexDr +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Fort save is + needed to avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD + 1) / 2; + if (nCount == 0) { nCount = 1; } + int nDamage = d6(nCount); + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eBolt; + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_ABILITY_DRAIN_DEXTERITY)); + //Make a saving throw check + if (!/*Fort Save*/ PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE) && TouchAttackRanged(oTarget)) + { + eBolt = EffectAbilityDecrease(ABILITY_DEXTERITY, nCount); + eBolt = SupernaturalEffect(eBolt); + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eBolt, oTarget, RoundsToSeconds(nHD)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltdisese.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltdisese.ncs new file mode 100644 index 0000000..c81e0cc Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltdisese.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltdisese.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltdisese.nss new file mode 100644 index 0000000..6513a06 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltdisese.nss @@ -0,0 +1,73 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Disease +//:: NW_S1_BltDisease +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to infect + the target with a disease. The disease used + is chosen based upon the racial type of the + caster. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nRacial = MyPRCGetRacialType(oNPC); + int nDisease; + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_DISEASE)); + + //Here we use the racial type of the attacker to select an + //appropriate disease. + switch (nRacial) + { + case RACIAL_TYPE_VERMIN: + nDisease = DISEASE_VERMIN_MADNESS; + break; + case RACIAL_TYPE_UNDEAD: + nDisease = DISEASE_FILTH_FEVER; + break; + case RACIAL_TYPE_OUTSIDER: + if(GetTag(oNPC) == "NW_SLAADRED") + { + nDisease = DISEASE_RED_SLAAD_EGGS; + } + else + { + nDisease = DISEASE_DEMON_FEVER; + } + break; + case RACIAL_TYPE_MAGICAL_BEAST: + nDisease = DISEASE_SOLDIER_SHAKES; + break; + case RACIAL_TYPE_ABERRATION: + nDisease = DISEASE_BLINDING_SICKNESS; + break; + default: + nDisease = DISEASE_SOLDIER_SHAKES; + break; + } + //Assign effect and chosen disease + effect eBolt = EffectDisease(nDisease); + //Make the ranged touch attack. + if (TouchAttackRanged(oTarget)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eBolt, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltdomn.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltdomn.ncs new file mode 100644 index 0000000..3c354b3 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltdomn.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltdomn.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltdomn.nss new file mode 100644 index 0000000..5027b45 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltdomn.nss @@ -0,0 +1,53 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Dominated +//:: NW_S1_BltDomn +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD + 1) / 2; + if (nCount == 0) { nCount = 1; } + nCount = GetScaledDuration(nCount, oTarget); + + effect eVis = EffectVisualEffect(VFX_IMP_DOMINATE_S); + effect eBolt = EffectDominated(); + eBolt = GetScaledEffect(eBolt, oTarget); + effect eVis2 = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DOMINATED); + eBolt = GetScaledEffect(eBolt, oTarget); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eLink = EffectLinkEffects(eBolt, eDur); + eLink = EffectLinkEffects(eLink, eVis2); + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_DOMINATE)); + + //Make a saving throw check + if (!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS) && TouchAttackRanged(oTarget)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nCount)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltfire.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltfire.ncs new file mode 100644 index 0000000..09ac47c Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltfire.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltfire.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltfire.nss new file mode 100644 index 0000000..4f7a423 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltfire.nss @@ -0,0 +1,58 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Fire +//:: NW_S1_BoltFire +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = nHD/2; + if (nCount == 0) { nCount = 1; } + int nDamage = d6(nCount); + + effect eVis = EffectVisualEffect(VFX_IMP_FLAME_S); + effect eBolt; + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_FIRE)); + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC,SAVING_THROW_TYPE_FIRE); + //Make a ranged touch attack + int nTouch = TouchAttackRanged(oTarget); + if(nTouch > 0) + { + if(nTouch == 2) + { + nDamage *= 2; + } + //Set damage effect + eBolt = EffectDamage(nDamage, DAMAGE_TYPE_FIRE); + if(nDamage > 0) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_INSTANT, eBolt, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltintdr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltintdr.ncs new file mode 100644 index 0000000..748e670 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltintdr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltintdr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltintdr.nss new file mode 100644 index 0000000..f3ffbad --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltintdr.nss @@ -0,0 +1,48 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Intelligence Drain +//:: NW_S1_BltIntDr +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD + 1) / 2; + if (nCount == 0) { nCount = 1; } + int nDamage = d6(nCount); + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eBolt; + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_ABILITY_DRAIN_INTELLIGENCE)); + //Make a saving throw check + if (!/*Fort Save*/ PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE) && TouchAttackRanged(oTarget)) + { + eBolt = EffectAbilityDecrease(ABILITY_INTELLIGENCE, nCount); + eBolt = SupernaturalEffect(eBolt); + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eBolt, oTarget, RoundsToSeconds(nHD)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltknckd.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltknckd.ncs new file mode 100644 index 0000000..e9a8d53 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltknckd.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltknckd.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltknckd.nss new file mode 100644 index 0000000..6816964 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltknckd.nss @@ -0,0 +1,48 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Knockdown +//:: NW_S1_BltKnckD +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = nHD/2; + if (nCount == 0) { nCount = 1; } + + effect eVis = EffectVisualEffect(VFX_IMP_SONIC); + effect eBolt = EffectKnockdown(); + effect eDam = EffectDamage(d6(), DAMAGE_TYPE_BLUDGEONING); + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_KNOCKDOWN)); + + //Make a saving throw check + if (!/*Reflex Save*/ PRCMySavingThrow(SAVING_THROW_REFLEX, oTarget, nDC) && TouchAttackRanged(oTarget)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eBolt, oTarget, RoundsToSeconds(3)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltlightn.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltlightn.ncs new file mode 100644 index 0000000..0286bec Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltlightn.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltlightn.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltlightn.nss new file mode 100644 index 0000000..024eafb --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltlightn.nss @@ -0,0 +1,59 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Lightning +//:: NW_S1_BltLightn +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Does 1d6 per level to a single target. Reflex + save for half +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Aug 10, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = nHD/2; + if (nCount == 0) { nCount = 1; } + int nDamage = d6(nCount); + + effect eLightning = EffectBeam(VFX_BEAM_LIGHTNING, OBJECT_SELF,BODY_NODE_HAND); + effect eVis = EffectVisualEffect(VFX_IMP_LIGHTNING_S); + effect eBolt; + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_BOLT_LIGHTNING)); + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC,SAVING_THROW_TYPE_ELECTRICITY); + //Make a ranged touch attack + int nTouch = TouchAttackRanged(oTarget); + if(nTouch > 0) + { + if(nTouch == 2) + { + nDamage *= 2; + } + //Set damage effect + eBolt = EffectDamage(nDamage, DAMAGE_TYPE_ELECTRICAL); + if(nDamage > 0) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_INSTANT, eBolt, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLightning, oTarget, 1.7); + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltlvldr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltlvldr.ncs new file mode 100644 index 0000000..e8628c5 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltlvldr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltlvldr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltlvldr.nss new file mode 100644 index 0000000..e3f14ca --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltlvldr.nss @@ -0,0 +1,49 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Level Drain +//:: NW_S1_BltLvlDr +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = nHD/5; + if (nCount == 0) { nCount = 1; } + int nDamage = d6(nCount); + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eBolt = EffectNegativeLevel(1); + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_LEVEL_DRAIN)); + + //Make a saving throw check + if (!/*Fort Save*/ PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE) && TouchAttackRanged(oTarget)) + { + //eBolt = LEVEL DRAIN EFFECT + eBolt = SupernaturalEffect(eBolt); + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_INSTANT, eBolt, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltparal.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltparal.ncs new file mode 100644 index 0000000..95cce17 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltparal.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltparal.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltparal.nss new file mode 100644 index 0000000..e4a6b59 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltparal.nss @@ -0,0 +1,48 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Paralyze +//:: NW_S1_BltParal +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD + 1) / 2; + if (nCount == 0) { nCount = 1; } + nCount = GetScaledDuration(nCount, oTarget); + + effect eVis = EffectVisualEffect(VFX_DUR_PARALYZED); + effect eBolt = EffectParalyze(); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eLink = EffectLinkEffects(eBolt, eDur); + eLink = EffectLinkEffects(eLink, eVis); + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_PARALYZE)); + //Make a saving throw check + if (!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC) && TouchAttackRanged(oTarget)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nCount)); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltpoison.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltpoison.ncs new file mode 100644 index 0000000..e4066f7 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltpoison.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltpoison.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltpoison.nss new file mode 100644 index 0000000..8a34aca --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltpoison.nss @@ -0,0 +1,123 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Poison +//:: NW_S1_BltPoison.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Must make a ranged touch attack. If successful + the target is struck down with poison that + scales with level. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 22, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nRacial = MyPRCGetRacialType(OBJECT_SELF); + int nPoison; + + effect ePoison; + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_POISON)); + + //Determine the poison type based on the Racial Type and HD + switch (nRacial) + { + case RACIAL_TYPE_OUTSIDER: + if (nHD <= 9) + { + nPoison = POISON_QUASIT_VENOM; + } + else if (nHD > 9 && nHD < 13) + { + nPoison = POISON_BEBILITH_VENOM; + } + else if (nHD >= 13) + { + nPoison = POISON_PIT_FIEND_ICHOR; + } + break; + case RACIAL_TYPE_VERMIN: + if (nHD < 3) + { + nPoison = POISON_TINY_SPIDER_VENOM; + } + else if (nHD <= 3 && nHD < 6) + { + nPoison = POISON_SMALL_SPIDER_VENOM; + } + else if (nHD <= 6 && nHD < 9) + { + nPoison = POISON_MEDIUM_SPIDER_VENOM; + } + else if (nHD <= 9 && nHD < 12) + { + nPoison = POISON_LARGE_SPIDER_VENOM; + } + else if (nHD <= 12 && nHD < 15) + { + nPoison = POISON_HUGE_SPIDER_VENOM; + } + else if (nHD <= 15 && nHD < 18) + { + nPoison = POISON_GARGANTUAN_SPIDER_VENOM; + } + else if (nHD >= 18) + { + nPoison = POISON_COLOSSAL_SPIDER_VENOM; + } + break; + default: + if (nHD < 3) + { + nPoison = POISON_NIGHTSHADE; + } + else if (nHD <= 3 && nHD < 6) + { + nPoison = POISON_BLADE_BANE; + } + else if (nHD <= 6 && nHD < 9) + { + nPoison = POISON_BLOODROOT; + } + else if (nHD <= 9 && nHD < 12) + { + nPoison = POISON_LARGE_SPIDER_VENOM; + } + else if (nHD <= 12 && nHD < 15) + { + nPoison = POISON_LICH_DUST; + } + else if (nHD <= 15 && nHD < 18) + { + nPoison = POISON_DARK_REAVER_POWDER; + } + else if (nHD >= 18 ) + { + nPoison = POISON_BLACK_LOTUS_EXTRACT; + } + + break; + } + //Make a ranged touch attack + if (TouchAttackRanged (oTarget)) + { + ePoison = EffectPoison(nPoison); + //Apply effects + ApplyEffectToObject(DURATION_TYPE_PERMANENT, ePoison, oTarget); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltshards.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltshards.ncs new file mode 100644 index 0000000..00a5432 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltshards.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltshards.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltshards.nss new file mode 100644 index 0000000..1b96e2b --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltshards.nss @@ -0,0 +1,58 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Shards +//:: NW_S1_BltShard +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD + 1) / 2; + if (nCount == 0) { nCount = 1; } + int nDamage = d6(nCount); + + effect eBolt; + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_BOLT_SHARDS)); + + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC); + + //Make a ranged touch attack + int nTouch = TouchAttackRanged(oTarget); + if(nTouch > 0) + { + if(nTouch == 2) + { + nDamage *= 2; + } + //Set damage effect + eBolt = EffectDamage(nDamage, DAMAGE_TYPE_PIERCING, DAMAGE_POWER_PLUS_ONE); + if(nDamage > 0) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_INSTANT, eBolt, oTarget); + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltslow.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltslow.ncs new file mode 100644 index 0000000..d59eaa3 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltslow.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltslow.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltslow.nss new file mode 100644 index 0000000..bf4813a --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltslow.nss @@ -0,0 +1,47 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Slow +//:: NW_S1_BltSlow +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex save is + needed to or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: June 18 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD + 1) / 2; + if (nCount == 0) { nCount = 1; } + + effect eVis = EffectVisualEffect(VFX_IMP_SLOW); + effect eBolt = EffectSlow(); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eLink = EffectLinkEffects(eBolt, eDur); + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_SLOW)); + //Make a saving throw check + if (!/*Will Save*/ PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS) && TouchAttackRanged(oTarget)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nCount)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltstrdr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltstrdr.ncs new file mode 100644 index 0000000..7819b3e Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltstrdr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltstrdr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltstrdr.nss new file mode 100644 index 0000000..dd03161 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltstrdr.nss @@ -0,0 +1,48 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Strength Drain +//:: NW_S1_BltStrDr +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Fort save is + needed to avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD + 1) / 2; + if (nCount == 0) { nCount = 1; } + int nDamage = d6(nCount); + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eBolt; + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_BOLT_ABILITY_DRAIN_STRENGTH)); + //Make a saving throw check + if (!/*Fort Save*/ PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE) && TouchAttackRanged(oTarget)) + { + eBolt = EffectAbilityDecrease(ABILITY_STRENGTH, nCount); + eBolt = SupernaturalEffect(eBolt); + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eBolt, oTarget, RoundsToSeconds(nHD)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} \ No newline at end of file diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltstun.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltstun.ncs new file mode 100644 index 0000000..7a8f0d3 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltstun.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltstun.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltstun.nss new file mode 100644 index 0000000..1d77008 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltstun.nss @@ -0,0 +1,50 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Stun +//:: NW_S1_BltStun +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Reflex or Will save is + needed to halve damage or avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD + 1) / 2; + if (nCount == 0) { nCount = 1; } + nCount = GetScaledDuration(nCount, oTarget); + int nDamage = d6(nCount); + + effect eVis = EffectVisualEffect(VFX_IMP_STUN); + effect eBolt = EffectStunned(); + eBolt = GetScaledEffect(eBolt, oTarget); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eLink = EffectLinkEffects(eBolt, eDur); + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_STUN)); + //Make a saving throw check + if (!/*Will Save*/ PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS) && TouchAttackRanged(oTarget)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nCount)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltweb.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltweb.ncs new file mode 100644 index 0000000..67c3671 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltweb.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltweb.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltweb.nss new file mode 100644 index 0000000..9ed210a --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltweb.nss @@ -0,0 +1,44 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Web +//:: NW_S1_BltWeb +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Glues a single target to the ground with + sticky strands of webbing. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Jan 28, 2002 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCONMod = GetAbilityModifier(ABILITY_CONSTITUTION, oNPC); + int nDC = 10 +nCONMod+ (nHD/2); + int nCount = 1 + (nHD /2); + if (nCount == 0) { nCount = 1; } + + effect eVis = EffectVisualEffect(VFX_DUR_WEB); + effect eStick = EffectEntangle(); + effect eLink = EffectLinkEffects(eVis, eStick); + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_WEB)); + //Make a saving throw check + if (!PRCMySavingThrow(SAVING_THROW_REFLEX, oTarget, nDC) && TouchAttackRanged(oTarget)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nCount)); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltwisdr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_bltwisdr.ncs new file mode 100644 index 0000000..93d66dc Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_bltwisdr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_bltwisdr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_bltwisdr.nss new file mode 100644 index 0000000..49643c0 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_bltwisdr.nss @@ -0,0 +1,48 @@ +//:://///////////////////////////////////////////// +//:: Bolt: Wisdom Drain +//:: NW_S1_BltWisDr +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature must make a ranged touch attack to hit + the intended target. Fort save is + needed to avoid effect. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nCount = (nHD /3); + if (nCount == 0) { nCount = 1; } + int nDamage = d6(nCount); + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eBolt; + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_BOLT_ABILITY_DRAIN_WISDOM)); + //Make a saving throw check + if (!/*Fort Save*/ PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE) && TouchAttackRanged(oTarget)) + { + eBolt = EffectAbilityDecrease(ABILITY_WISDOM, nCount); + eBolt = SupernaturalEffect(eBolt); + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eBolt, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_coneacid.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_coneacid.ncs new file mode 100644 index 0000000..fc71423 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_coneacid.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_coneacid.nss b/_content/_haks/aoc_prc8_merge/nw_s1_coneacid.nss new file mode 100644 index 0000000..97d9393 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_coneacid.nss @@ -0,0 +1,76 @@ +//:://///////////////////////////////////////////// +//:: Cone: Acid +//:: NW_S1_ConeAcid +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A cone of damage eminated from the monster. Does + a set amount of damage based upon the creatures HD + and can be halved with a Reflex Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDamage; + int nLoop = nHD / 3; + + float fDelay; + + if(nLoop == 0) + { + nLoop = 1; + } + + //Calculate the damage + for (nLoop; nLoop > 0; nLoop--) + { + nDamage = nDamage + d6(2); + } + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eCone; + effect eVis = EffectVisualEffect(VFX_IMP_ACID_S); + + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + //Get first target in spell area + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_CONE_ACID)); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC, SAVING_THROW_TYPE_ACID); + //Set damage effect + eCone = EffectDamage(nDamage, DAMAGE_TYPE_ACID); + if(nDamage > 0) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eCone, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_conecold.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_conecold.ncs new file mode 100644 index 0000000..c391d7c Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_conecold.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_conecold.nss b/_content/_haks/aoc_prc8_merge/nw_s1_conecold.nss new file mode 100644 index 0000000..50f2a0c --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_conecold.nss @@ -0,0 +1,76 @@ +//:://///////////////////////////////////////////// +//:: Cone: Cold +//:: NW_S1_ConeCold +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A cone of damage eminated from the monster. Does + a set amount of damage based upon the creatures HD + and can be halved with a Reflex Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDamage; + int nLoop = nHD / 3; + + float fDelay; + + if(nLoop == 0) + { + nLoop = 1; + } + + //Calculate the damage + for (nLoop; nLoop > 0; nLoop--) + { + nDamage = nDamage + d6(2); + } + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eCone; + effect eVis = EffectVisualEffect(VFX_IMP_FROST_S); + + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + //Get first target in spell area + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_CONE_COLD)); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC, SAVING_THROW_TYPE_COLD); + //Set damage effect + eCone = EffectDamage(nDamage, DAMAGE_TYPE_COLD); + if(nDamage > 0) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eCone, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 11.0, lTargetLocation, TRUE); + } +} + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_conedisea.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_conedisea.ncs new file mode 100644 index 0000000..b0a2385 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_conedisea.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_conedisea.nss b/_content/_haks/aoc_prc8_merge/nw_s1_conedisea.nss new file mode 100644 index 0000000..a1eb9b1 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_conedisea.nss @@ -0,0 +1,99 @@ +//:://///////////////////////////////////////////// +//:: Cone: Disease +//:: NW_S1_ConeDisea +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creature spits out a cone of disease that cannot + be avoided unless a Reflex save is made. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 22, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nRacial = MyPRCGetRacialType(oNPC); + int nDisease; + + location lTargetLocation = PRCGetSpellTargetLocation(); + + float fDelay; + + effect eCone = EffectDisease(nDisease); + effect eVis = EffectVisualEffect(VFX_IMP_DISEASE_S); + + + //Determine the disease type based on the Racial Type and HD + switch (nRacial) + { + case RACIAL_TYPE_OUTSIDER: + nDisease = DISEASE_DEMON_FEVER; + break; + case RACIAL_TYPE_VERMIN: + nDisease = DISEASE_VERMIN_MADNESS; + break; + case RACIAL_TYPE_UNDEAD: + if(nHD <= 3) + { + nDisease = DISEASE_ZOMBIE_CREEP; + } + else if (nHD > 3 && nHD <= 10) + { + nDisease = DISEASE_GHOUL_ROT; + } + else if(nHD > 10) + { + nDisease = DISEASE_MUMMY_ROT; + } + default: + if(nHD <= 3) + { + nDisease = DISEASE_MINDFIRE; + } + else if (nHD > 3 && nHD <= 10) + { + nDisease = DISEASE_RED_ACHE; + } + else if(nHD > 10) + { + nDisease = DISEASE_SHAKES; + } + + + break; + } + + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + //Get first target in spell area + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != OBJECT_SELF) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_CONE_DISEASE)); + //Get the delay time + fDelay = GetDistanceBetween(OBJECT_SELF, oTarget)/20; + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eCone, oTarget)); + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 11.0, lTargetLocation, TRUE); + + } +} + + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_coneelec.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_coneelec.ncs new file mode 100644 index 0000000..d3cd823 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_coneelec.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_coneelec.nss b/_content/_haks/aoc_prc8_merge/nw_s1_coneelec.nss new file mode 100644 index 0000000..0dba225 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_coneelec.nss @@ -0,0 +1,78 @@ +//:://///////////////////////////////////////////// +//:: Cone: Lightning +//:: NW_S1_ConeElec +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A cone of damage eminates from the monster. Does + a set amount of damage based upon the creatures HD + and can be halved with a Reflex Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDamage; + int nLoop = nHD / 3; + + float fDelay; + + if(nLoop == 0) + { + nLoop = 1; + } + + //Calculate the damage + for (nLoop; nLoop > 0; nLoop--) + { + nDamage = nDamage + d6(2); + } + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eLightning = EffectBeam(VFX_BEAM_LIGHTNING, oNPC, BODY_NODE_HAND); + effect eCone; + effect eVis = EffectVisualEffect(VFX_IMP_LIGHTNING_S); + + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + //Get first target in spell area + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_CONE_LIGHTNING)); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC, SAVING_THROW_TYPE_ELECTRICITY); + //Set damage effect + eCone = EffectDamage(nDamage, DAMAGE_TYPE_ELECTRICAL); + if(nDamage > 0) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eLightning,oTarget,0.5)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eCone, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 11.0, lTargetLocation, TRUE); + } +} + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_conesonic.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_conesonic.ncs new file mode 100644 index 0000000..010f94f Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_conesonic.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_conesonic.nss b/_content/_haks/aoc_prc8_merge/nw_s1_conesonic.nss new file mode 100644 index 0000000..1ba25bf --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_conesonic.nss @@ -0,0 +1,75 @@ +//:://///////////////////////////////////////////// +//:: Cone: Sonic +//:: NW_S1_ConeSonic +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A cone of damage eminated from the monster. Does + a set amount of damage based upon the creatures HD + and can be halved with a Reflex Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDamage; + int nLoop = nHD / 3; + + float fDelay; + + if(nLoop == 0) + { + nLoop = 1; + } + + //Calculate the damage + for (nLoop; nLoop > 0; nLoop--) + { + nDamage = nDamage + d6(2); + } + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eCone; + effect eVis = EffectVisualEffect(VFX_IMP_SONIC); + + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + //Get first target in spell area + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != OBJECT_SELF) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_CONE_SONIC)); + //Determine effect delay + fDelay = GetDistanceBetween(OBJECT_SELF, oTarget)/20; + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC,DAMAGE_TYPE_SONIC); + //Set damage effect + eCone = EffectDamage(nDamage, DAMAGE_TYPE_SONIC); + if(nDamage > 0) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eCone, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 11.0, lTargetLocation, TRUE); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_dragfear.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_dragfear.ncs new file mode 100644 index 0000000..fb1ce16 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_dragfear.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_dragfear.nss b/_content/_haks/aoc_prc8_merge/nw_s1_dragfear.nss new file mode 100644 index 0000000..0b5e882 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_dragfear.nss @@ -0,0 +1,119 @@ +//:://///////////////////////////////////////////// +//:: Dragon Breath Fear +//:: NW_S1_DragFear +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Calculates the proper DC Save for the + breath weapon based on the HD of the dragon. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 9, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" +void main() +{ + //if (WildMagicOverride()) { return; } + //Declare major variables + int nAge = GetHitDice(OBJECT_SELF); + int nCount; + int nDC; + float fDelay; + object oTarget; + effect eBreath = EffectFrightened(); + effect eFear = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_FEAR); + effect eVis = EffectVisualEffect(VFX_IMP_FEAR_S); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eLink = EffectLinkEffects(eBreath, eDur); + eLink = EffectLinkEffects(eLink, eFear); + + //Determine the duration and save DC + if (nAge <= 6) //Wyrmling + { + nDC = 13; + nCount = 1; + } + else if (nAge >= 7 && nAge <= 9) //Very Young + { + nDC = 15; + nCount = 2; + } + else if (nAge >= 10 && nAge <= 12) //Young + { + nDC = 17; + nCount = 3; + } + else if (nAge >= 13 && nAge <= 15) //Juvenile + { + nDC = 19; + nCount = 4; + } + else if (nAge >= 16 && nAge <= 18) //Young Adult + { + nDC = 21; + nCount = 5; + } + else if (nAge >= 19 && nAge <= 21) //Adult + { + nDC = 24; + nCount = 6; + } + else if (nAge >= 22 && nAge <= 24) //Mature Adult + { + nDC = 27; + nCount = 7; + } + else if (nAge >= 25 && nAge <= 27) //Old + { + nDC = 28; + nCount = 8; + } + else if (nAge >= 28 && nAge <= 30) //Very Old + { + nDC = 30; + nCount = 9; + } + else if (nAge >= 31 && nAge <= 33) //Ancient + { + nDC = 32; + nCount = 10; + } + else if (nAge >= 34 && nAge <= 37) //Wyrm + { + nDC = 34; + nCount = 11; + } + else if (nAge > 37) //Great Wyrm + { + nDC = 37; + nCount = 12; + } + PlayDragonBattleCry(); + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 14.0, PRCGetSpellTargetLocation(), TRUE); + //Get first target in spell area + while(GetIsObjectValid(oTarget)) + { + if(oTarget != OBJECT_SELF && !GetIsReactionTypeFriendly(oTarget)) + { + nCount = GetScaledDuration(nCount, oTarget); + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_DRAGON_BREATH_FEAR)); + //Determine the effect delay time + fDelay = GetDistanceBetween(oTarget, OBJECT_SELF)/20; + //Make a saving throw check + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_FEAR, OBJECT_SELF, fDelay)) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nCount))); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 14.0, PRCGetSpellTargetLocation(), TRUE); + } +} + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_dragfeara.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_dragfeara.ncs new file mode 100644 index 0000000..fe3245d Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_dragfeara.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_dragfeara.nss b/_content/_haks/aoc_prc8_merge/nw_s1_dragfeara.nss new file mode 100644 index 0000000..2bb5009 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_dragfeara.nss @@ -0,0 +1,45 @@ +//:://///////////////////////////////////////////// +//:: Aura of Fear On Enter +//:: NW_S1_DragFearA.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Upon entering the aura of the creature the player + must make a will save or be struck with fear because + of the creatures presence. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 25, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" +void main() +{ + //Declare major variables + object oTarget = GetEnteringObject(); + //if (NullMagicOverride(GetArea(oTarget), oTarget, oTarget)) {return;} + effect eVis = EffectVisualEffect(VFX_IMP_FEAR_S); + effect eDur = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_FEAR); + effect eDur2 = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eFear = EffectFrightened(); + effect eLink = EffectLinkEffects(eFear, eDur); + eLink = EffectLinkEffects(eLink, eDur2); + + int nHD = GetHitDice(GetAreaOfEffectCreator()); + int nDC = 10 + GetHitDice(GetAreaOfEffectCreator())/3; + int nDuration = GetScaledDuration(nHD, oTarget); + if(GetIsEnemy(oTarget, GetAreaOfEffectCreator())) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(GetAreaOfEffectCreator(), SPELLABILITY_AURA_FEAR)); + //Make a saving throw check + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_FEAR)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_feroc3.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_feroc3.ncs new file mode 100644 index 0000000..dfb32e0 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_feroc3.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_feroc3.nss b/_content/_haks/aoc_prc8_merge/nw_s1_feroc3.nss new file mode 100644 index 0000000..58a44cb --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_feroc3.nss @@ -0,0 +1,41 @@ +//:://///////////////////////////////////////////// +//:: Ferocity 3 +//:: NW_S1_Feroc3 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + The Dex and Str of the target increases +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Aug 13, 2001 +//::////////////////////////////////////////////// + +void main() +{ +//:: Declare major variables + object oNPC = OBJECT_SELF; + + int nHD = GetHitDice(oNPC); + int nCONMod = GetAbilityModifier(ABILITY_CONSTITUTION); //:: Determine the duration by getting the con modifier + int nIncrease = 9; + int nDuration = 1 + nCONMod; + if(nDuration == 0) { nDuration = 1; } + + + effect eDex = EffectAbilityIncrease(ABILITY_DEXTERITY, nIncrease); + effect eStr = EffectAbilityIncrease(ABILITY_STRENGTH, nIncrease); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE); + effect eLink = EffectLinkEffects(eStr, eDex); + eLink = EffectLinkEffects(eLink, eDur); + eLink = ExtraordinaryEffect(eLink); //:: Make effect extraordinary + + //effect eVis = EffectVisualEffect(VFX_IMP_IMPROVE_ABILITY_SCORE); + SignalEvent(oNPC, EventSpellCastAt(oNPC, SPELLABILITY_FEROCITY_3, FALSE)); + if (nCONMod > 0) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oNPC, RoundsToSeconds(nDuration)); + //ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, OBJECT_SELF) ; + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazechaos.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_gazechaos.ncs new file mode 100644 index 0000000..5c42800 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_gazechaos.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazechaos.nss b/_content/_haks/aoc_prc8_merge/nw_s1_gazechaos.nss new file mode 100644 index 0000000..7ac5727 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_gazechaos.nss @@ -0,0 +1,69 @@ +//:://///////////////////////////////////////////// +//:: Gaze: Destroy Law +//:: NW_S1_GazeChaos +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Cone shape that affects all within the AoE if they + fail a Will Save and are of Lawful alignment. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 13, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "x0_i0_match" + +void main() +{ +//-------------------------------------------------------------------------- +// Make sure we are not blind +//-------------------------------------------------------------------------- + if (PRCGetHasEffect(EFFECT_TYPE_BLINDNESS, OBJECT_SELF)) + { + FloatingTextStrRefOnCreature(84530, OBJECT_SELF, FALSE); + return; + } + + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eGaze = EffectDeath(); + effect eVis = EffectVisualEffect(VFX_IMP_DEATH); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + if(GetAlignmentLawChaos(oTarget) == ALIGNMENT_LAWFUL) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_GAZE_DESTROY_LAW)); + //Determine effect delay + float fDelay = GetDistanceBetween(oNPC, oTarget)/20; + if(!/*WillSave*/PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_DEATH, oNPC, fDelay)) + { + //Apply the VFX impact and effects + //DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eGaze, oTarget)); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazecharm.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_gazecharm.ncs new file mode 100644 index 0000000..af690f7 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_gazecharm.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazecharm.nss b/_content/_haks/aoc_prc8_merge/nw_s1_gazecharm.nss new file mode 100644 index 0000000..574800c --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_gazecharm.nss @@ -0,0 +1,76 @@ +//:://///////////////////////////////////////////// +//:: Gaze: Charm +//:: NW_S1_GazeCharm +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Cone shape that affects all within the AoE if they + fail a Will Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 9, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "x0_i0_match" + +void main() +{ +//-------------------------------------------------------------------------- +// Make sure we are not blind +//-------------------------------------------------------------------------- + if (PRCGetHasEffect(EFFECT_TYPE_BLINDNESS, OBJECT_SELF)) + { + FloatingTextStrRefOnCreature(84530, OBJECT_SELF, FALSE); + return; + } + + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDuration = 1 + (nHD / 3); + if(nDuration == 0) { nDuration = 1; } + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eGaze = EffectCharmed(); + + effect eVis = EffectVisualEffect(VFX_IMP_CHARM); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eVisDur = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_NEGATIVE); + effect eLink = EffectLinkEffects(eDur, eVisDur); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != OBJECT_SELF) + { + nDuration = GetScaledDuration(nDuration, oTarget); + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_GAZE_CHARM)); + //Determine effect delay + float fDelay = GetDistanceBetween(oNPC, oTarget)/20; + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS, oNPC, fDelay)) + { + eGaze = GetScaledEffect(eGaze, oTarget); + eLink = EffectLinkEffects(eLink, eGaze); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration))); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazeconfu.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_gazeconfu.ncs new file mode 100644 index 0000000..d632bfa Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_gazeconfu.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazeconfu.nss b/_content/_haks/aoc_prc8_merge/nw_s1_gazeconfu.nss new file mode 100644 index 0000000..26c6de5 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_gazeconfu.nss @@ -0,0 +1,77 @@ +//:://///////////////////////////////////////////// +//:: Gaze: Confusion +//:: NW_S1_GazeConfu +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Cone shape that affects all within the AoE if they + fail a Will Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 9, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "x0_i0_match" + +void main() +{ +//-------------------------------------------------------------------------- +// Make sure we are not blind +//-------------------------------------------------------------------------- + if (PRCGetHasEffect(EFFECT_TYPE_BLINDNESS, OBJECT_SELF)) + { + FloatingTextStrRefOnCreature(84530, OBJECT_SELF, FALSE); + return; + } + + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDuration = 1 + (nHD / 3); + if(nDuration == 0) { nDuration = 1; } + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eGaze = EffectConfused(); + effect eVis = EffectVisualEffect(VFX_IMP_CONFUSION_S); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eVisDur = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED); + effect eLink = EffectLinkEffects(eDur, eVisDur); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + if(oTarget != oNPC) + { + nDuration = GetScaledDuration(nDuration , oTarget); + //Determine effect delay + float fDelay = GetDistanceBetween(oNPC, oTarget)/20; + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_GAZE_CONFUSION)); + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS, oNPC, fDelay)) + { + eGaze = GetScaledEffect(eGaze, oTarget); + eLink = EffectLinkEffects(eLink, eGaze); + + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration))); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} \ No newline at end of file diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazedaze.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_gazedaze.ncs new file mode 100644 index 0000000..db48941 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_gazedaze.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazedaze.nss b/_content/_haks/aoc_prc8_merge/nw_s1_gazedaze.nss new file mode 100644 index 0000000..b42e54c --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_gazedaze.nss @@ -0,0 +1,74 @@ +//:://///////////////////////////////////////////// +//:: Gaze: Daze +//:: NW_S1_GazeDaze +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Cone shape that affects all within the AoE if they + fail a Will Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "x0_i0_match" + +void main() +{ +//-------------------------------------------------------------------------- +// Make sure we are not blind +//-------------------------------------------------------------------------- + if (PRCGetHasEffect(EFFECT_TYPE_BLINDNESS, OBJECT_SELF)) + { + FloatingTextStrRefOnCreature(84530, OBJECT_SELF, FALSE); + return; + } + + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDuration = 1 + (nHD / 3); + if(nDuration == 0) { nDuration = 1; } + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eGaze = EffectDazed(); + effect eVis = EffectVisualEffect(VFX_IMP_DAZED_S); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eVisDur = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED); + effect eLink = EffectLinkEffects(eGaze, eVisDur); + eLink = EffectLinkEffects(eLink, eDur); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + nDuration = GetScaledDuration(nDuration , oTarget); + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_GAZE_DAZE)); + + //Determine effect delay + float fDelay = GetDistanceBetween(oNPC, oTarget)/20; + if(!/*WillSave*/PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS, oNPC, fDelay)) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration))); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazedeath.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_gazedeath.ncs new file mode 100644 index 0000000..0930ec8 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_gazedeath.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazedeath.nss b/_content/_haks/aoc_prc8_merge/nw_s1_gazedeath.nss new file mode 100644 index 0000000..0540310 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_gazedeath.nss @@ -0,0 +1,66 @@ +//:://///////////////////////////////////////////// +//:: Gaze: Death +//:: NW_S1_GazeDeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Cone shape that affects all within the AoE if they + fail a Will Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 9, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "x0_i0_match" + +void main() +{ +//-------------------------------------------------------------------------- +// Make sure we are not blind +//-------------------------------------------------------------------------- + if (PRCGetHasEffect(EFFECT_TYPE_BLINDNESS, OBJECT_SELF)) + { + FloatingTextStrRefOnCreature(84530, OBJECT_SELF, FALSE); + return; + } + + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eGaze = EffectDeath(); + effect eVis = EffectVisualEffect(VFX_IMP_DEATH); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) || oTarget != oNPC) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_GAZE_DEATH)); + //Determine effect delay + float fDelay = GetDistanceBetween(oNPC, oTarget)/20; + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_DEATH, oNPC, fDelay)) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eGaze, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazedomn.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_gazedomn.ncs new file mode 100644 index 0000000..ac24c75 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_gazedomn.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazedomn.nss b/_content/_haks/aoc_prc8_merge/nw_s1_gazedomn.nss new file mode 100644 index 0000000..ffca7cb --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_gazedomn.nss @@ -0,0 +1,78 @@ +//:://///////////////////////////////////////////// +//:: Gaze: Dominate +//:: NW_S1_GazeDomn +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Cone shape that affects all within the AoE if they + fail a Will Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 9, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "x0_i0_match" + +void main() +{ +//-------------------------------------------------------------------------- +// Make sure we are not blind +//-------------------------------------------------------------------------- + if (PRCGetHasEffect(EFFECT_TYPE_BLINDNESS, OBJECT_SELF)) + { + FloatingTextStrRefOnCreature(84530, OBJECT_SELF, FALSE); + return; + } + + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDuration = 1 + (nHD / 3); + if(nDuration == 0) { nDuration = 1; } + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eGaze = EffectDominated(); + effect eVis = EffectVisualEffect(VFX_IMP_DOMINATE_S); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eVisDur = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DOMINATED); + effect eLink = EffectLinkEffects(eDur, eVisDur); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + nDuration = GetScaledDuration(nDuration , oTarget); + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_GAZE_DOMINATE)); + //Determine effect delay + float fDelay = GetDistanceBetween(oNPC, oTarget)/20; + if(GetIsEnemy(oTarget)) + { + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS, oNPC, fDelay)) + { + eGaze = GetScaledEffect(eGaze, oTarget); + eLink = EffectLinkEffects(eLink, eGaze); + + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration))); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazedoom.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_gazedoom.ncs new file mode 100644 index 0000000..a20712c Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_gazedoom.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazedoom.nss b/_content/_haks/aoc_prc8_merge/nw_s1_gazedoom.nss new file mode 100644 index 0000000..adeed84 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_gazedoom.nss @@ -0,0 +1,74 @@ +//:://///////////////////////////////////////////// +//:: Gaze of Doom +//:: NW_S1_GazeDoom.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + If the target fails a save they recieve a -2 + penalty to all saves, attack rolls, damage and + skill checks for the duration of the spell. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 22, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "x0_i0_match" + +void main() +{ +//-------------------------------------------------------------------------- +// Make sure we are not blind +//-------------------------------------------------------------------------- + if (PRCGetHasEffect(EFFECT_TYPE_BLINDNESS, OBJECT_SELF)) + { + FloatingTextStrRefOnCreature(84530, OBJECT_SELF, FALSE); + return; + } + + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDuration = 1 + (nHD / 3); + if(nDuration == 0) { nDuration = 1; } + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eVis = EffectVisualEffect(VFX_IMP_DOOM); + effect eSaves = EffectSavingThrowDecrease(SAVING_THROW_ALL, 2); + effect eAttack = EffectAttackDecrease(2); + effect eDamage = EffectDamageDecrease(2); + effect eSkill = EffectSkillDecrease(SKILL_ALL_SKILLS, 2); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eLink = EffectLinkEffects(eAttack, eDamage); + eLink = EffectLinkEffects(eLink, eSaves); + eLink = EffectLinkEffects(eLink, eSkill); + eLink = EffectLinkEffects(eLink, eDur); + + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, PRCGetSpellTargetLocation()); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + if(oTarget != oNPC) + { + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_GAZE_DOOM)); + //Spell Resistance and Saving throw + if (!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC)) + { + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink , oTarget, RoundsToSeconds(nDuration)); + } + } + } + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, PRCGetSpellTargetLocation()); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazeevil.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_gazeevil.ncs new file mode 100644 index 0000000..3b1140c Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_gazeevil.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazeevil.nss b/_content/_haks/aoc_prc8_merge/nw_s1_gazeevil.nss new file mode 100644 index 0000000..005d89d --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_gazeevil.nss @@ -0,0 +1,70 @@ +//:://///////////////////////////////////////////// +//:: Gaze: Deatroy Good +//:: NW_S1_GazeEvil +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Cone shape that affects all within the AoE if they + fail a Will Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 13, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "x0_i0_match" + +void main() +{ +//-------------------------------------------------------------------------- +// Make sure we are not blind +//-------------------------------------------------------------------------- + if (PRCGetHasEffect(EFFECT_TYPE_BLINDNESS, OBJECT_SELF)) + { + FloatingTextStrRefOnCreature(84530, OBJECT_SELF, FALSE); + return; + } + + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDuration = 1 + (nHD / 3); + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eGaze = EffectDeath(); + effect eVis = EffectVisualEffect(VFX_IMP_DEATH); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + if(GetAlignmentGoodEvil(oTarget) == ALIGNMENT_GOOD) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_GAZE_DEATH)); + //Determine effect delay + float fDelay = GetDistanceBetween(oNPC, oTarget)/20; + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_DEATH, oNPC, fDelay)) + { + //Apply the VFX impact and effects + //DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eGaze, oTarget)); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazefear.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_gazefear.ncs new file mode 100644 index 0000000..e543fbb Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_gazefear.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazefear.nss b/_content/_haks/aoc_prc8_merge/nw_s1_gazefear.nss new file mode 100644 index 0000000..534bb81 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_gazefear.nss @@ -0,0 +1,74 @@ +//:://///////////////////////////////////////////// +//:: Gaze: Fear +//:: NW_S1_GazeFear +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Cone shape that affects all within the AoE if they + fail a Will Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 9, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "x0_i0_match" + +void main() +{ +//-------------------------------------------------------------------------- +// Make sure we are not blind +//-------------------------------------------------------------------------- + if (PRCGetHasEffect(EFFECT_TYPE_BLINDNESS, OBJECT_SELF)) + { + FloatingTextStrRefOnCreature(84530, OBJECT_SELF, FALSE); + return; + } + + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDuration = 1 + (nHD / 3); + if(nDuration == 0) { nDuration = 1; } + nDuration = GetScaledDuration(nDuration , oTarget); + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eGaze = EffectFrightened(); + effect eVis = EffectVisualEffect(VFX_IMP_FEAR_S); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eVisDur = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_FEAR); + effect eLink = EffectLinkEffects(eGaze, eVisDur); + eLink = EffectLinkEffects(eLink, eDur); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + nDuration = GetScaledDuration(nDuration , oTarget); + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_GAZE_FEAR)); + //Determine effect delay + float fDelay = GetDistanceBetween(oNPC, oTarget)/20; + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_FEAR, oNPC, fDelay)) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration))); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazegood.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_gazegood.ncs new file mode 100644 index 0000000..4f0ea5e Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_gazegood.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazegood.nss b/_content/_haks/aoc_prc8_merge/nw_s1_gazegood.nss new file mode 100644 index 0000000..3c55735 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_gazegood.nss @@ -0,0 +1,70 @@ +//:://///////////////////////////////////////////// +//:: Gaze: Deatroy Evil +//:: NW_S1_GazeGood +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Cone shape that affects all within the AoE if they + fail a Will Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 13, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "x0_i0_match" + +void main() +{ +//-------------------------------------------------------------------------- +// Make sure we are not blind +//-------------------------------------------------------------------------- + if (PRCGetHasEffect(EFFECT_TYPE_BLINDNESS, OBJECT_SELF)) + { + FloatingTextStrRefOnCreature(84530, OBJECT_SELF, FALSE); + return; + } + + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDuration = 1 + (nHD / 3); + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eGaze = EffectDeath(); + effect eVis = EffectVisualEffect(VFX_IMP_DEATH); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + if(GetAlignmentGoodEvil(oTarget) == ALIGNMENT_EVIL) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_GAZE_DEATH)); + //Determine effect delay + float fDelay = GetDistanceBetween(oNPC, oTarget)/20; + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_DEATH, oNPC, fDelay)) + { + //Apply the VFX impact and effects + //DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eGaze, oTarget)); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazelaw.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_gazelaw.ncs new file mode 100644 index 0000000..ddf8f30 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_gazelaw.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazelaw.nss b/_content/_haks/aoc_prc8_merge/nw_s1_gazelaw.nss new file mode 100644 index 0000000..b79cf14 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_gazelaw.nss @@ -0,0 +1,71 @@ +//:://///////////////////////////////////////////// +//:: Gaze: Deatroy Chaos +//:: NW_S1_GazeLaw +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Cone shape that affects all within the AoE if they + fail a Will Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 13, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "x0_i0_match" + +void main() +{ +//-------------------------------------------------------------------------- +// Make sure we are not blind +//-------------------------------------------------------------------------- + if (PRCGetHasEffect(EFFECT_TYPE_BLINDNESS, OBJECT_SELF)) + { + FloatingTextStrRefOnCreature(84530, OBJECT_SELF, FALSE); + return; + } + + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDuration = 1 + (nHD / 3); + if(nDuration == 0) { nDuration = 1; } + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eGaze = EffectDeath(); + effect eVis = EffectVisualEffect(VFX_IMP_DEATH); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + if(GetAlignmentLawChaos(oTarget) == ALIGNMENT_CHAOTIC) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_GAZE_DESTROY_LAW)); + //Determine effect delay + float fDelay = GetDistanceBetween(oNPC, oTarget)/20; + if(!/*WillSave*/PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_DEATH, oNPC, fDelay)) + { + //Apply the VFX impact and effects + //DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eGaze, oTarget)); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazestun.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_gazestun.ncs new file mode 100644 index 0000000..9330b14 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_gazestun.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_gazestun.nss b/_content/_haks/aoc_prc8_merge/nw_s1_gazestun.nss new file mode 100644 index 0000000..f1eb008 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_gazestun.nss @@ -0,0 +1,73 @@ +//:://///////////////////////////////////////////// +//:: Gaze: Stun +//:: NW_S1_GazeStun +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Cone shape that affects all within the AoE if they + fail a Will Save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 9, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "x0_i0_match" + +void main() +{ +//-------------------------------------------------------------------------- +// Make sure we are not blind +//-------------------------------------------------------------------------- + if (PRCGetHasEffect(EFFECT_TYPE_BLINDNESS, OBJECT_SELF)) + { + FloatingTextStrRefOnCreature(84530, OBJECT_SELF, FALSE); + return; + } + + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDuration = 1 + (nHD / 3); + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eGaze = EffectStunned(); + effect eVis = EffectVisualEffect(VFX_IMP_STUN); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eVisDur = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED); + effect eLink = EffectLinkEffects(eDur, eVisDur); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + nDuration = GetScaledDuration(nDuration , oTarget); + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_GAZE_STUNNED)); + //Determine effect delay + float fDelay = GetDistanceBetween(oNPC, oTarget)/20; + if(!/*WillSave*/PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS, oNPC, fDelay)) + { + eGaze = GetScaledEffect(eGaze, oTarget); + eLink = EffectLinkEffects(eLink, eGaze); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration))); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_golemgas.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_golemgas.ncs new file mode 100644 index 0000000..b58dc93 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_golemgas.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_golemgas.nss b/_content/_haks/aoc_prc8_merge/nw_s1_golemgas.nss new file mode 100644 index 0000000..b9e4155 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_golemgas.nss @@ -0,0 +1,43 @@ +//:://///////////////////////////////////////////// +//:: Golem Breath +//:: NW_S1_GolemGas +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Iron Golem spits out a cone of poison. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 22, 2001 +//::////////////////////////////////////////////// + +#include "prc_inc_spells" + +//#include "wm_include" +void main() +{ + //if (WildMagicOverride()) { return; } + //Declare major variables + location lTargetLocation = PRCGetSpellTargetLocation(); + object oTarget; + effect eCone = EffectPoison(POISON_IRON_GOLEM); + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != OBJECT_SELF) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_GOLEM_BREATH_GAS)); + //Determine effect delay + float fDelay = GetDistanceBetween(OBJECT_SELF, oTarget)/20; + //Apply poison effect + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eCone, oTarget)); + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 10.0, lTargetLocation, TRUE); + } +} + + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_hndbreath.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_hndbreath.ncs new file mode 100644 index 0000000..2a2d1cf Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_hndbreath.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_hndbreath.nss b/_content/_haks/aoc_prc8_merge/nw_s1_hndbreath.nss new file mode 100644 index 0000000..4851df7 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_hndbreath.nss @@ -0,0 +1,66 @@ +//:://///////////////////////////////////////////// +//:: Hell Hound Fire Breath +//:: NW_S1_HndBreath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A cone of fire eminates from the hound. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCONMod = GetAbilityModifier(ABILITY_CONSTITUTION, oNPC); + int nDC = 10 +nCONMod+ (nHD/2); + int nDamage = d6(2); + + float fDelay; + + location lTargetLocation = PRCGetSpellTargetLocation(); + + effect eCone; + effect eVis = EffectVisualEffect(VFX_IMP_FLAME_S); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 11.0, lTargetLocation, TRUE); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_HELL_HOUND_FIREBREATH)); + + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC, SAVING_THROW_TYPE_FIRE); + + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + + //Set damage effect + eCone = EffectDamage(nDamage, DAMAGE_TYPE_FIRE); + if(nDamage > 0) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eCone, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPELLCONE, 11.0, lTargetLocation, TRUE); + } +} + + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howlconf.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_howlconf.ncs new file mode 100644 index 0000000..2649dad Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_howlconf.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howlconf.nss b/_content/_haks/aoc_prc8_merge/nw_s1_howlconf.nss new file mode 100644 index 0000000..f9d770e --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_howlconf.nss @@ -0,0 +1,67 @@ +//:://///////////////////////////////////////////// +//:: Howl: Confuse +//:: NW_S1_HowlConf +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A howl emanates from the creature which affects + all within 20ft unless they make a save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/4); + int nDuration = 1 + (nHD/4); + if(nDuration == 0) { nDuration = 1; } + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_CONFUSION_S); + effect eHowl = EffectConfused(); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eDur2 = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED); + effect eImpact = EffectVisualEffect(VFX_FNF_HOWL_MIND); + effect eLink = EffectLinkEffects(eHowl, eDur); + eLink = EffectLinkEffects(eLink, eDur2); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && !GetIsFriend(oTarget) && oTarget != oNPC) + { + nDuration = GetScaledDuration(nDuration , oTarget); + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_HOWL_CONFUSE)); + fDelay = GetDistanceToObject(oTarget)/10; + //Make a saving throw check + if(!/*Will Save*/ PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS, oNPC, fDelay)) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration))); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + } +} + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howldaze.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_howldaze.ncs new file mode 100644 index 0000000..fc595ff Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_howldaze.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howldaze.nss b/_content/_haks/aoc_prc8_merge/nw_s1_howldaze.nss new file mode 100644 index 0000000..bd8e20c --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_howldaze.nss @@ -0,0 +1,65 @@ +//:://///////////////////////////////////////////// +//:: Howl: Daze +//:: NW_S1_HowlDaze +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A howl emanates from the creature which affects + all within 10ft unless they make a save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/4); + int nDuration = 1 + (nHD/4); + if(nDuration == 0) { nDuration = 1; } + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_DAZED_S); + effect eHowl = EffectDazed(); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eDur2 = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED); + effect eImpact = EffectVisualEffect(VFX_FNF_HOWL_MIND); + effect eLink = EffectLinkEffects(eHowl, eDur); + eLink = EffectLinkEffects(eLink, eDur2); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && !GetIsFriend(oTarget) && oTarget != oNPC) + { + nDuration = GetScaledDuration(nDuration , oTarget); + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_HOWL_DAZE)); + fDelay = GetDistanceToObject(oTarget)/10; + //Make a saving throw check + if(!/*Will Save*/ PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS, oNPC, fDelay)) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration))); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + } +} \ No newline at end of file diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howldeath.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_howldeath.ncs new file mode 100644 index 0000000..c1f8a98 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_howldeath.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howldeath.nss b/_content/_haks/aoc_prc8_merge/nw_s1_howldeath.nss new file mode 100644 index 0000000..5730647 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_howldeath.nss @@ -0,0 +1,59 @@ +//:://///////////////////////////////////////////// +//:: Howl: Death +//:: NW_S1_HowlDeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A howl emanates from the creature which affects + all within 10ft unless they make a save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/4); + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_DEATH); + effect eImpact = EffectVisualEffect(VFX_FNF_HOWL_ODD); + effect eHowl = EffectDeath(); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && !GetIsFriend(oTarget) && oTarget != oNPC) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_HOWL_DEATH)); + fDelay = GetDistanceToObject(oTarget)/10; + //Make a saving throw check + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_DEATH, oNPC, fDelay)) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eHowl, oTarget)); + //ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howlfear.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_howlfear.ncs new file mode 100644 index 0000000..1ac9f0e Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_howlfear.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howlfear.nss b/_content/_haks/aoc_prc8_merge/nw_s1_howlfear.nss new file mode 100644 index 0000000..13dcfaf --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_howlfear.nss @@ -0,0 +1,68 @@ +//:://///////////////////////////////////////////// +//:: Howl: Fear +//:: NW_S1_HowlFear +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A howl emanates from the creature which affects + all within 10ft unless they make a save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/4); + int nDuration = 1 + (nHD/4); + if(nDuration == 0) { nDuration = 1; } + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_FEAR_S); + effect eHowl = EffectFrightened(); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eDur2 = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_FEAR); + effect eImpact = EffectVisualEffect(VFX_FNF_HOWL_MIND); + effect eLink = EffectLinkEffects(eHowl, eDur); + eLink = EffectLinkEffects(eLink, eDur2); + + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && !GetIsFriend(oTarget) && oTarget != oNPC) + { + fDelay = GetDistanceToObject(oTarget)/10; + nDuration = GetScaledDuration(nDuration , oTarget); + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_HOWL_FEAR)); + + //Make a saving throw check + if(!/*Will Save*/ PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_FEAR)) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration))); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howlparal.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_howlparal.ncs new file mode 100644 index 0000000..42488a9 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_howlparal.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howlparal.nss b/_content/_haks/aoc_prc8_merge/nw_s1_howlparal.nss new file mode 100644 index 0000000..b0ecd43 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_howlparal.nss @@ -0,0 +1,65 @@ +//:://///////////////////////////////////////////// +//:: Howl: Paralysis +//:: NW_S1_HowlParal +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A howl emanates from the creature which affects + all within 10ft unless they make a save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/4); + int nDuration = 1 + (nHD/4); + if(nDuration == 0) { nDuration = 1; } + + float fDelay; + + effect eHowl = EffectParalyze(); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eDur2 = EffectVisualEffect(VFX_DUR_PARALYZE_HOLD); + effect eImpact = EffectVisualEffect(VFX_FNF_HOWL_ODD); + effect eLink = EffectLinkEffects(eHowl, eDur); + eLink = EffectLinkEffects(eLink, eDur2); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && !GetIsFriend(oTarget) && oTarget != oNPC) + { + fDelay = GetDistanceToObject(oTarget)/10; + nDuration = GetScaledDuration(nDuration , oTarget); + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_HOWL_PARALYSIS)); + + //Make a saving throw check + if(!PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_NONE, oNPC, fDelay)) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration))); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howlsonic.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_howlsonic.ncs new file mode 100644 index 0000000..ae721fd Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_howlsonic.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howlsonic.nss b/_content/_haks/aoc_prc8_merge/nw_s1_howlsonic.nss new file mode 100644 index 0000000..4de9768 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_howlsonic.nss @@ -0,0 +1,65 @@ +//:://///////////////////////////////////////////// +//:: Howl: Sonic +//:: NW_S1_HowlSonic +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A howl emanates from the creature which affects + all within 10ft unless they make a save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/4); + int nDamage; + int nSonic = nHD/4; + if(nSonic == 0) { nSonic = 1; } + + effect eVis = EffectVisualEffect(VFX_IMP_SONIC); + effect eHowl; + effect eImpact = EffectVisualEffect(VFX_FNF_HOWL_WAR_CRY); + + float fDelay; + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsFriend(oTarget) && oTarget != oNPC) + { + fDelay = GetDistanceToObject(oTarget)/20; + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_HOWL_SONIC)); + nDamage = d6(nSonic); + //Make a saving throw check + if(PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_SONIC, oNPC, fDelay)) + { + nDamage = nDamage / 2; + } + //Set damage effect + eHowl = EffectDamage(nDamage, DAMAGE_TYPE_SONIC); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + } +} \ No newline at end of file diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howlstun.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_howlstun.ncs new file mode 100644 index 0000000..9a8d7f6 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_howlstun.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_howlstun.nss b/_content/_haks/aoc_prc8_merge/nw_s1_howlstun.nss new file mode 100644 index 0000000..962d9b9 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_howlstun.nss @@ -0,0 +1,66 @@ +//:://///////////////////////////////////////////// +//:: Howl: Stun +//:: NW_S1_HowlStun +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A howl emanates from the creature which affects + all within 10ft unless they make a save. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +//#include "wm_include" +#include "NW_I0_SPELLS" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/4); + int nDuration = 1 + (nHD/4); + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_STUN); + effect eHowl = EffectStunned(); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eDur2 = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED); + effect eImpact = EffectVisualEffect(VFX_FNF_HOWL_MIND); + effect eLink = EffectLinkEffects(eHowl, eDur); + eLink = EffectLinkEffects(eLink, eDur2); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && !GetIsFriend(oTarget) && oTarget != oNPC) + { + fDelay = GetDistanceToObject(oTarget)/10; + nDuration = GetScaledDuration(nDuration , oTarget); + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_HOWL_STUN)); + + //Make a saving throw check + if(!/*Will Save*/ PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_MIND_SPELLS)) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration))); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_krenscare.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_krenscare.ncs new file mode 100644 index 0000000..c2c9876 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_krenscare.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_krenscare.nss b/_content/_haks/aoc_prc8_merge/nw_s1_krenscare.nss new file mode 100644 index 0000000..738463e --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_krenscare.nss @@ -0,0 +1,61 @@ +//:://///////////////////////////////////////////// +//:: Krenshar Fear Stare +//:: NW_S1_KrenScare +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Causes those in the gaze to be struck with fear +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Jan 8, 2002 +//::////////////////////////////////////////////// +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nMetaMagic = PRCGetMetaMagicFeat(); + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_FEAR_S); + effect eFear = EffectFrightened(); + effect eMind = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_FEAR); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + //Link the fear and mind effects + effect eLink = EffectLinkEffects(eFear, eMind); + eLink = EffectLinkEffects(eLink, eDur); + + + //Get first target in the spell cone + oTarget = GetFirstObjectInShape(SHAPE_CONE, 10.0, PRCGetSpellTargetLocation(), TRUE); + while(GetIsObjectValid(oTarget)) + { + //Make faction check + if(GetIsEnemy(oTarget)) + { + fDelay = GetDistanceToObject(oTarget)/20; + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_KRENSHAR_SCARE)); + //Make a will save + if(!/*Will Save*/ PRCMySavingThrow(SAVING_THROW_WILL, oTarget, nDC, SAVING_THROW_TYPE_FEAR)) + { + //Apply the linked effects and the VFX impact + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(3))); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + //Get next target in the spell cone + oTarget = GetNextObjectInShape(SHAPE_CONE, 10.0, PRCGetSpellTargetLocation(), TRUE); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_mephsalt.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_mephsalt.ncs new file mode 100644 index 0000000..5406ee0 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_mephsalt.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_mephsalt.nss b/_content/_haks/aoc_prc8_merge/nw_s1_mephsalt.nss new file mode 100644 index 0000000..03b0b97 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_mephsalt.nss @@ -0,0 +1,63 @@ +//:://///////////////////////////////////////////// +//:: Salt Mephit Breath +//:: NW_S1_MephSalt +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Salt Mephit shoots out a bolt of corrosive material + that causes 1d4 damage and reduces AC and Attack by 2 + + This should be a cone - Jaysyn +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCONMod = GetAbilityModifier(ABILITY_CONSTITUTION, oNPC); + int nDC = 10 +nCONMod+ (nHD/2); + int nDamage = d4(); + + effect eVis = EffectVisualEffect(VFX_IMP_ACID_S); + effect eBolt, eAttack, eAC; + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC, SAVING_THROW_TYPE_ACID); + + //Make a ranged touch attack + int nTouch = TouchAttackRanged(oTarget); + if(nDamage == 0) {nTouch = 0;} + if(nTouch > 0) + { + if(nTouch == 2) + { + nDamage *= 2; + } + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_MEPHIT_SALT_BREATH)); + + //Set damage, AC mod and attack mod effects + eBolt = EffectDamage(nDamage, DAMAGE_TYPE_ACID); + eAC = EffectACDecrease(2); + eAttack = EffectAttackDecrease(2); + effect eLink = EffectLinkEffects(eAttack, eAC); + eLink = EffectLinkEffects(eLink, eDur); + + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(3)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eBolt, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_mephsteam.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_mephsteam.ncs new file mode 100644 index 0000000..f61d7ef Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_mephsteam.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_mephsteam.nss b/_content/_haks/aoc_prc8_merge/nw_s1_mephsteam.nss new file mode 100644 index 0000000..9b46d89 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_mephsteam.nss @@ -0,0 +1,67 @@ +//:://///////////////////////////////////////////// +//:: Steam Mephit Breath +//:: NW_S1_MephSteam +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Steam Mephit shoots out a bolt of steam + that causes 1d4 damage and reduces AC by 4 + and Attack by 2 + + This should be a cone - Jaysyn +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 11, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCONMod = GetAbilityModifier(ABILITY_CONSTITUTION, oNPC); + int nDC = 10 +nCONMod+ (nHD/2); + int nDamage = d4(); + + + effect eVis = EffectVisualEffect(VFX_IMP_ACID_S); + effect eBolt, eAttack, eAC; + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + + + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC, SAVING_THROW_TYPE_FIRE); + + //Make a ranged touch attack + int nTouch = TouchAttackRanged(oTarget); + if(nDamage == 0) {nTouch = 0;} + + if(nTouch > 0) + { + if(nTouch == 2) + { + nDamage *= 2; + } + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_MEPHIT_STEAM_BREATH)); + + //Set damage, AC mod and attack mod effects + eBolt = EffectDamage(nDamage, DAMAGE_TYPE_FIRE); + eAC = EffectACDecrease(4); + eAttack = EffectAttackDecrease(2); + effect eLink = EffectLinkEffects(eAC, eAttack); + eLink = EffectLinkEffects(eLink, eDur); + + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(3)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eBolt, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_mumundead.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_mumundead.ncs new file mode 100644 index 0000000..2205868 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_mumundead.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_mumundead.nss b/_content/_haks/aoc_prc8_merge/nw_s1_mumundead.nss new file mode 100644 index 0000000..f11db57 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_mumundead.nss @@ -0,0 +1,53 @@ +//:://///////////////////////////////////////////// +//:: Bolster Undead +//:: NW_S1_MumUndead +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + This spell increases the Turn Resistance of + all undead around the caster by an amount + scaled with HD. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 22, 2002 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nScaling = nHD / 4; + + if(nScaling == 0) {nScaling = 1;} + + float fDelay; + + effect eTurn = EffectTurnResistanceIncrease(nScaling); + effect eVis = EffectVisualEffect(VFX_IMP_HEAD_EVIL); + effect eImpact = EffectVisualEffect(VFX_FNF_LOS_EVIL_30); + + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eImpact, GetLocation(oNPC)); + + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(GetIsFriend(oTarget)) + { + fDelay = GetRandomDelay(); + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_MUMMY_BOLSTER_UNDEAD, FALSE)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eTurn, oTarget, RoundsToSeconds(10))); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_COLOSSAL, GetLocation(oNPC)); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulschrdr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulschrdr.ncs new file mode 100644 index 0000000..acc6c11 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulschrdr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulschrdr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulschrdr.nss new file mode 100644 index 0000000..b55902c --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulschrdr.nss @@ -0,0 +1,73 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Charisma Drain +//:: NW_S1_PulsDeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. Damage can be reduced by half for all + damaging variants. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + int nDamage = nHD/5; + + if (nDamage == 0) {nDamage = 1;} + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eHowl; + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_NEGATIVE); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(oTarget != oNPC) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_ABILITY_DRAIN_CHARISMA)); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + //Make a saving throw check + if(!/*FortSave*/PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE, oNPC, fDelay)) + { + //Set the Ability mod and change to supernatural effect + eHowl = EffectAbilityDecrease(ABILITY_CHARISMA, nDamage); + eHowl = SupernaturalEffect(eHowl); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + } + //Get first target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulscold.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulscold.ncs new file mode 100644 index 0000000..23df913 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulscold.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulscold.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulscold.nss new file mode 100644 index 0000000..c5ff7d2 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulscold.nss @@ -0,0 +1,68 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Cold +//:: NW_S1_PulsCold +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. Damage can be reduced by half for all + damaging variants. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDamage = d6(nHD); + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_FROST_S); + effect eHowl; + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_COLD); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(oTarget != oNPC) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_COLD)); + + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC, SAVING_THROW_TYPE_COLD); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + eHowl = EffectDamage(nDamage, DAMAGE_TYPE_COLD); + if(nDamage > 0) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulscondr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulscondr.ncs new file mode 100644 index 0000000..39b62d7 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulscondr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulscondr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulscondr.nss new file mode 100644 index 0000000..bfdbfcf --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulscondr.nss @@ -0,0 +1,71 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Constitution Drain +//:: NW_S1_PulsDeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. Damage can be reduced by half for all + damaging variants. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + int nDamage = nHD/5; + + if (nDamage == 0) {nDamage = 1;} + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eHowl; + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_NEGATIVE); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(oTarget != oNPC) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_ABILITY_DRAIN_CONSTITUTION)); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + //Make a saving throw check + if(!/*FortSave*/PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE, oNPC, fDelay)) + { + //Set the Ability mod and change to supernatural effect + eHowl = EffectAbilityDecrease(ABILITY_CONSTITUTION, nDamage); + eHowl = SupernaturalEffect(eHowl); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + } + //Get first target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsdeath.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulsdeath.ncs new file mode 100644 index 0000000..6879326 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulsdeath.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsdeath.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulsdeath.nss new file mode 100644 index 0000000..7c949d1 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulsdeath.nss @@ -0,0 +1,68 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Death +//:: NW_S1_PulsDeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. Damage can be reduced by half for all + damaging variants. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + int nDamage = nHD/5; + + if (nDamage == 0) {nDamage = 1;} + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_DEATH); + effect eHowl = EffectDeath(); + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_NEGATIVE); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + if(oTarget != OBJECT_SELF) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_DEATH)); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + if(!/*FortSave*/PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_DEATH, oNPC, fDelay)) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eHowl, oTarget)); + //DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsdexdr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulsdexdr.ncs new file mode 100644 index 0000000..60b1f47 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulsdexdr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsdexdr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulsdexdr.nss new file mode 100644 index 0000000..d29872a --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulsdexdr.nss @@ -0,0 +1,70 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Dexterity Drain +//:: NW_S1_PulsDeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. Damage can be reduced by half for all + damaging variants. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + int nDamage = nHD/5; + + if (nDamage == 0) {nDamage = 1;} + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eHowl; + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_NEGATIVE); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(oTarget != oNPC) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_ABILITY_DRAIN_DEXTERITY)); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + //Make a saving throw check + if(!/*FortSave*/PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE, oNPC, fDelay)) + { + //Set the Ability mod and change to supernatural effect + eHowl = EffectAbilityDecrease(ABILITY_DEXTERITY, nDamage); + eHowl = SupernaturalEffect(eHowl); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + } + //Get first target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsdis.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulsdis.ncs new file mode 100644 index 0000000..39c19ba Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulsdis.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsdis.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulsdis.nss new file mode 100644 index 0000000..f81568c --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulsdis.nss @@ -0,0 +1,85 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Disease +//:: NW_S1_PulsDis +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of disease spreads out from the creature + and infects all those within 10ft +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Aug 14, 2000 +//::////////////////////////////////////////////// +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nRacial = MyPRCGetRacialType(oNPC); + int nHD = GetHitDice(oNPC); + int nDamage = d6(nHD); + int nDisease; + + float fDelay; + + effect eDisease; + effect ePulse = EffectVisualEffect(266); + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_NATURE); + + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, ePulse, GetLocation(oNPC)); + + //Determine the disease type based on the Racial Type + switch (nRacial) + { + case RACIAL_TYPE_VERMIN: + nDisease = DISEASE_VERMIN_MADNESS; + break; + case RACIAL_TYPE_UNDEAD: + nDisease = DISEASE_FILTH_FEVER; + break; + case RACIAL_TYPE_OUTSIDER: + nDisease = DISEASE_DEMON_FEVER; + break; + case RACIAL_TYPE_MAGICAL_BEAST: + nDisease = DISEASE_SOLDIER_SHAKES; + break; + case RACIAL_TYPE_ABERRATION: + nDisease = DISEASE_BLINDING_SICKNESS; + break; + default: + nDisease = DISEASE_MINDFIRE; + break; + } + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(oTarget != oNPC) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_PULSE_DISEASE)); + //Determine effect delay + fDelay = GetDistanceBetween(OBJECT_SELF, oTarget)/20; + eDisease = EffectDisease(nDisease); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDisease, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulselec.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulselec.ncs new file mode 100644 index 0000000..dd6a5f0 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulselec.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulselec.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulselec.nss new file mode 100644 index 0000000..2f85614 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulselec.nss @@ -0,0 +1,68 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Lightning +//:: NW_S0_CallLghtn.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + All creatures within 10ft of the creature take + 1d6 per HD up to 10d6 +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 22, 2001 +//::////////////////////////////////////////////// +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDamage; + + effect eVis = EffectVisualEffect(VFX_IMP_LIGHTNING_S); + effect eLightning = EffectBeam(VFX_BEAM_LIGHTNING, oNPC, BODY_NODE_CHEST); + effect eHowl = EffectVisualEffect(VFX_IMP_PULSE_COLD); + + DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eHowl, GetLocation(oNPC))); + + float fDelay; + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(oTarget != oNPC) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_LIGHTNING)); + //Roll the damage + nDamage = d6(nHD); + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC, SAVING_THROW_TYPE_ELECTRICITY); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + eHowl = EffectDamage(nDamage, DAMAGE_TYPE_ELECTRICAL); + if(nDamage > 0) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eLightning,oTarget, 0.5)); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsfire.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulsfire.ncs new file mode 100644 index 0000000..1da13e5 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulsfire.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsfire.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulsfire.nss new file mode 100644 index 0000000..9270aa9 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulsfire.nss @@ -0,0 +1,69 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Fire +//:: NW_S1_PulsFire +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. Damage can be reduced by half for all + damaging variants. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDamage; + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_FLAME_S); + effect eHowl; + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_FIRE); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, OBJECT_SELF); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(OBJECT_SELF)); + while(GetIsObjectValid(oTarget)) + { + if(oTarget != OBJECT_SELF) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_PULSE_FIRE)); + //Roll the damage + nDamage = d6(nHD); + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC, SAVING_THROW_TYPE_FIRE); + //Determine effect delay + fDelay = GetDistanceBetween(OBJECT_SELF, oTarget)/20; + eHowl = EffectDamage(nDamage, DAMAGE_TYPE_FIRE); + if(nDamage > 0) + { + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(OBJECT_SELF)); + } +} + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsholy.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulsholy.ncs new file mode 100644 index 0000000..3b93769 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulsholy.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsholy.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulsholy.nss new file mode 100644 index 0000000..20ae463 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulsholy.nss @@ -0,0 +1,89 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Holy +//:: NW_S1_PulsHoly +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. Damage can be reduced by half for all + damaging variants. Undead are damaged, allies are healed. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDamage; + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_HEALING_M); + effect eVis2 = EffectVisualEffect(VFX_IMP_SUNSTRIKE); + effect eHowl; + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_HOLY); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + //Roll the amount to heal or damage + nDamage = d4(nHD); + //If the target is not undead + if (MyPRCGetRacialType(oTarget) != RACIAL_TYPE_UNDEAD) + { + //Make a faction check + if(oTarget != oNPC) + { + if(GetIsFriend(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_HOLY, FALSE)); + //Set heal effect + eHowl = EffectHeal(nDamage); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + } + else + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC, SAVING_THROW_TYPE_DIVINE); + //Set damage effect + eHowl = EffectDamage(nDamage, DAMAGE_TYPE_DIVINE) ; + if(nDamage > 0) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_HOLY)); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis2, oTarget)); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsintdr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulsintdr.ncs new file mode 100644 index 0000000..ddf504a Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulsintdr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsintdr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulsintdr.nss new file mode 100644 index 0000000..8558364 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulsintdr.nss @@ -0,0 +1,72 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Intelligence Drain +//:: NW_S1_PulsDeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. Damage can be reduced by half for all + damaging variants. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + int nDamage = nHD/5; + + if (nDamage == 0) {nDamage = 1;} + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eHowl; + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_NEGATIVE); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(oTarget != oNPC) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_ABILITY_DRAIN_INTELLIGENCE)); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + //Make a saving throw check + if(!/*FortSave*/PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE, oNPC, fDelay)) + { + //Set the Ability mod and change to supernatural effect + eHowl = EffectAbilityDecrease(ABILITY_INTELLIGENCE, nDamage); + eHowl = SupernaturalEffect(eHowl); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + } + //Get first target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(OBJECT_SELF)); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulslvldr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulslvldr.ncs new file mode 100644 index 0000000..408bf6e Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulslvldr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulslvldr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulslvldr.nss new file mode 100644 index 0000000..f65e073 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulslvldr.nss @@ -0,0 +1,62 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Level Drain +//:: NW_S1_PulsLvlDr +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. Damage can be reduced by half for all + damaging variants. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = GetAreaOfEffectCreator(); + object oTarget = GetEnteringObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eHowl; + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_NEGATIVE); + + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eImpact, GetLocation(oNPC)); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + + while(GetIsObjectValid(oTarget)) + { + if(oTarget != oNPC) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + fDelay = GetSpellEffectDelay(GetLocation(oNPC), oTarget)/20; + //Make a saving throw check + if(!PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE, oNPC, fDelay)) + { + //Apply the VFX impact and effects + eHowl = EffectNegativeLevel(1); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsneg.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulsneg.ncs new file mode 100644 index 0000000..7dc823b Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulsneg.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsneg.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulsneg.nss new file mode 100644 index 0000000..9bfa749 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulsneg.nss @@ -0,0 +1,87 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Negative +//:: NW_S1_PulsDeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. Damage can be reduced by half for all + damaging variants. Undead are healed. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = GetAreaOfEffectCreator(); + object oTarget = GetEnteringObject(); + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + int nDamage; + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_HEALING_M); + effect eVis2 = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eHowl; + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_NEGATIVE); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(oTarget != oNPC) + { + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + //Roll the amount to heal or damage + nDamage = d4(nHD); + //If the target is undead + if (MyPRCGetRacialType(oTarget) == RACIAL_TYPE_UNDEAD) + { + //Make a faction check + if(GetIsFriend(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_HOLY, FALSE)); + //Set heal effect + eHowl = EffectHeal(nDamage); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + else + { + if(!GetIsReactionTypeFriendly(oTarget) && MyPRCGetRacialType(oTarget) != RACIAL_TYPE_UNDEAD) + { + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(nDamage, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE); + //Set damage effect + eHowl = EffectDamage(nDamage, DAMAGE_TYPE_NEGATIVE); + if(nDamage > 0) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_HOLY)); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis2, oTarget)); + } + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulspois.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulspois.ncs new file mode 100644 index 0000000..a381a67 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulspois.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulspois.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulspois.nss new file mode 100644 index 0000000..252ae3a --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulspois.nss @@ -0,0 +1,138 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Poison +//:: NW_S1_PulsPois +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. All who make a reflex save are not + poisoned. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 23, 2000 +//::////////////////////////////////////////////// +#include "prc_inc_racial" +//#include "wm_include" + +void main() +{ +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCONMod = GetAbilityModifier(ABILITY_CONSTITUTION, oNPC); + int nDC = 10 +nCONMod+ (nHD/2); + int nRacial = MyPRCGetRacialType(oNPC); + int nPoison; + + float fDelay; + + effect ePoison; + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_NATURE); + + //Determine the poison type based on the Racial Type and HD + switch (nRacial) + { + case RACIAL_TYPE_OUTSIDER: + if (nHD <= 9) + { + nPoison = POISON_QUASIT_VENOM; + } + else if (nHD > 9 && nHD < 13) + { + nPoison = POISON_BEBILITH_VENOM; + } + else if (nHD >= 13) + { + nPoison = POISON_PIT_FIEND_ICHOR; + } + break; + case RACIAL_TYPE_VERMIN: + if (nHD < 3) + { + nPoison = POISON_TINY_SPIDER_VENOM; + } + else if (nHD <= 3 && nHD < 6) + { + nPoison = POISON_SMALL_SPIDER_VENOM; + } + else if (nHD <= 6 && nHD < 9) + { + nPoison = POISON_MEDIUM_SPIDER_VENOM; + } + else if (nHD <= 9 && nHD < 12) + { + nPoison = POISON_LARGE_SPIDER_VENOM; + } + else if (nHD <= 12 && nHD < 15) + { + nPoison = POISON_HUGE_SPIDER_VENOM; + } + else if (nHD <= 15 && nHD < 18) + { + nPoison = POISON_GARGANTUAN_SPIDER_VENOM; + } + else if (nHD >= 18) + { + nPoison = POISON_COLOSSAL_SPIDER_VENOM; + } + break; + default: + if (nHD < 3) + { + nPoison = POISON_NIGHTSHADE; + } + else if (nHD <= 3 && nHD < 6) + { + nPoison = POISON_BLADE_BANE; + } + else if (nHD <= 6 && nHD < 9) + { + nPoison = POISON_BLOODROOT; + } + else if (nHD <= 9 && nHD < 12) + { + nPoison = POISON_LARGE_SPIDER_VENOM; + } + else if (nHD <= 12 && nHD < 15) + { + nPoison = POISON_LICH_DUST; + } + else if (nHD <= 15 && nHD < 18) + { + nPoison = POISON_DARK_REAVER_POWDER; + } + else if (nHD >= 18 ) + { + nPoison = POISON_BLACK_LOTUS_EXTRACT; + } + break; + } + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(oTarget != oNPC) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_POISON)); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + ePoison = EffectPoison(nPoison); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_PERMANENT, ePoison, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} + + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsspore.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulsspore.ncs new file mode 100644 index 0000000..4f7e590 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulsspore.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsspore.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulsspore.nss new file mode 100644 index 0000000..7e9e34d --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulsspore.nss @@ -0,0 +1,50 @@ +//:://///////////////////////////////////////////// +//:: Vrock Spores +//:: NW_S1_PulsSpore +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of disease spreads out from the creature + and infects all those within 10ft +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Jan 8, 2002 +//::////////////////////////////////////////////// +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + float fDelay; + effect eDisease; + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_NATURE); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_MEDIUM, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(oTarget != oNPC) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_DISEASE)); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + eDisease = EffectDisease(DISEASE_SOLDIER_SHAKES); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDisease, oTarget)); + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_MEDIUM, GetLocation(oNPC)); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsstrdr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulsstrdr.ncs new file mode 100644 index 0000000..704c1ca Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulsstrdr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulsstrdr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulsstrdr.nss new file mode 100644 index 0000000..5f88eab --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulsstrdr.nss @@ -0,0 +1,71 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Strength Drain +//:: NW_S1_PulsDeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. Damage can be reduced by half for all + damaging variants. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + int nDamage = nHD/5; + + if (nDamage == 0) {nDamage = 1;} + + float fDelay; + + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_NEGATIVE); + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eHowl; + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + while(GetIsObjectValid(oTarget)) + { + if(oTarget != oNPC) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_ABILITY_DRAIN_STRENGTH)); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + //Make a saving throw check + if(!/*FortSave*/PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE, oNPC, fDelay)) + { + //Set the Ability mod and change to supernatural effect + eHowl = EffectAbilityDecrease(ABILITY_STRENGTH, nDamage); + eHowl = SupernaturalEffect(eHowl); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + } + //Get next target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulswind.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulswind.ncs new file mode 100644 index 0000000..75d4133 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulswind.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulswind.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulswind.nss new file mode 100644 index 0000000..0572407 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulswind.nss @@ -0,0 +1,51 @@ +//:://///////////////////////////////////////////// +//:: Pulse Whirlwind +//:: NW_S1_PulsWind +//:: Copyright (c) 2001 Bioware Corp. +//:://///////////////////////////////////////////// +/* + All those that fail a save are knocked + down by the elemental whirlwind. +*/ +//:://///////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Jan 8, 2002 +//:://///////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nSTRMod = GetAbilityModifier(ABILITY_STRENGTH, oNPC); + int nDC = 10 +nSTRMod+ (nHD/2); + + effect eDown = EffectKnockdown(); + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_WIND); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, oNPC); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != oNPC) + { + //Make a saving throw check + if(!PRCMySavingThrow(SAVING_THROW_REFLEX, oTarget, nDC)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eDown, oTarget, 5.0); + } + //Get next target in spell area + } + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_LARGE, GetLocation(oNPC)); + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulswisdr.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_pulswisdr.ncs new file mode 100644 index 0000000..da829ca Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_pulswisdr.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_pulswisdr.nss b/_content/_haks/aoc_prc8_merge/nw_s1_pulswisdr.nss new file mode 100644 index 0000000..b1bf68c --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_pulswisdr.nss @@ -0,0 +1,68 @@ +//:://///////////////////////////////////////////// +//:: Pulse: Wisdom Drain +//:: NW_S1_PulsWisDr +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wave of energy emanates from the creature which affects + all within 10ft. Damage can be reduced by half for all + damaging variants. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 14, 2000 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget; + + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + int nDamage = nHD/5; + + if (nDamage == 0) {nDamage = 1;} + + float fDelay; + + effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY); + effect eHowl; + effect eImpact = EffectVisualEffect(VFX_IMP_PULSE_NEGATIVE); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eImpact, OBJECT_SELF); + + //Get first target in spell area + oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_MEDIUM, GetLocation(OBJECT_SELF)); + while(GetIsObjectValid(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget) && oTarget != OBJECT_SELF) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_PULSE_ABILITY_DRAIN_WISDOM)); + //Determine effect delay + fDelay = GetDistanceBetween(oNPC, oTarget)/20; + //Make a saving throw check + if(!/*FortSave*/PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NEGATIVE, oNPC, fDelay)) + { + //Set the Ability mod and change to supernatural effect + eHowl = EffectAbilityDecrease(ABILITY_WISDOM, nDamage); + eHowl = SupernaturalEffect(eHowl); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eHowl, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + //Get first target in spell area + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_MEDIUM, GetLocation(OBJECT_SELF)); + } +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_smokeclaw.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_smokeclaw.ncs new file mode 100644 index 0000000..2e5a547 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_smokeclaw.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_smokeclaw.nss b/_content/_haks/aoc_prc8_merge/nw_s1_smokeclaw.nss new file mode 100644 index 0000000..6db3666 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_smokeclaw.nss @@ -0,0 +1,64 @@ +//:://///////////////////////////////////////////// +//:: Smoke Claws +//:: NW_S1_SmokeClaw +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + If a Belker succeeds at a touch attack the + target breaths in part of the Belker and suffers + 3d4 damage per round until a Fortitude save is + made. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 23 , 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +//#include "wm_include" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + int nHD = GetHitDice(oNPC); + int nCONMod = GetAbilityModifier(ABILITY_CONSTITUTION, oNPC); + int nDC = 10 +nCONMod+ (nHD/2); + + int bSave = FALSE; + + effect eVis = EffectVisualEffect(VFX_COM_BLOOD_REG_RED); + effect eSmoke; + float fDelay = 0.0; + + //Make a touch attack + if(TouchAttackMelee(oTarget)) + { + if(!GetIsReactionTypeFriendly(oTarget)) + { + //Make a saving throw check + while (bSave == FALSE) + { + //Make a saving throw check + if(!/*FortSave*/PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_NONE, oNPC, fDelay)) + { + bSave = TRUE; + } + else + { + //Set damage + eSmoke = EffectDamage(d4(3)); + //Apply the VFX impact and effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eSmoke, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + //Increment the delay + fDelay = fDelay + 6.0; + } + } + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_smokeclawa.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_smokeclawa.ncs new file mode 100644 index 0000000..5feee77 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_smokeclawa.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_smokeclawa.nss b/_content/_haks/aoc_prc8_merge/nw_s1_smokeclawa.nss new file mode 100644 index 0000000..1975f4a --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_smokeclawa.nss @@ -0,0 +1,42 @@ +/* + PROJECT Q IV + (c) 2022 by Pstemarie + + Belker Smoke Claws AOE OnEnter Event Script + + Creatures entering the AOE must make a Fort save or suffer 3d4 damage. + + Note: Uses the "nw_" prefix for name continuity with the OC spellscript + "nw_s1_smokeclaw". + + Version: 1.0 + Created: 7 June 2022 + Author: Pstemarie + +*/ +#include "prc_inc_spells" +#include "NW_I0_SPELLS" + +void main() +{ + //Declare major variables + object oTarget = GetEnteringObject(); + effect eDamage; + effect eHit = EffectVisualEffect(VFX_COM_BLOOD_REG_RED); + + if(GetIsEnemy(oTarget, GetAreaOfEffectCreator())) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_SMOKE_CLAW)); + + //Make a saving throw check + if(!PRCMySavingThrow(SAVING_THROW_FORT, oTarget, 14, SAVING_THROW_TYPE_POISON)) + { + eDamage = EffectDamage(d4(3)); + + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_INSTANT, eHit, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eDamage, oTarget); + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_stink_a.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_stink_a.ncs new file mode 100644 index 0000000..bca10c2 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_stink_a.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_stink_a.nss b/_content/_haks/aoc_prc8_merge/nw_s1_stink_a.nss new file mode 100644 index 0000000..67652dd --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_stink_a.nss @@ -0,0 +1,57 @@ +//:://///////////////////////////////////////////// +//:: Stinking Cloud On Enter +//:: NW_S1_Stink_A.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Those within the area of effect must make a + fortitude save or be dazed. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 17, 2001 +//::////////////////////////////////////////////// + +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ +//:: Declare major variables + object oNPC = GetAreaOfEffectCreator(); + object oTarget = GetEnteringObject(); //Get the first object in the persistant area + + int nHD = GetHitDice(oNPC); + int nCONMod = GetAbilityModifier(ABILITY_CONSTITUTION, oNPC); + int nDC = 10 +nCONMod+ (nHD/2); + + effect eStink = EffectDazed(); + effect eMind = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eLink = EffectLinkEffects(eMind, eStink); + eLink = EffectLinkEffects(eLink, eDur); + + effect eVis = EffectVisualEffect(VFX_IMP_DAZED_S); + + float fDelay; + + //if (NullMagicOverride(GetArea(oTarget), oTarget, oTarget)) {return;} + + if(MyPRCGetRacialType(oTarget) != RACIAL_TYPE_VERMIN) + { + if(GetIsEnemy(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_STINKING_CLOUD)); + //Make a Fort Save + if(!PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_POISON)) + { + fDelay = GetRandomDelay(0.25, 1.0); + //Apply the VFX impact and linked effects + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(2))); + } + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_summmeph.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_summmeph.ncs new file mode 100644 index 0000000..8b16a11 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_summmeph.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_summmeph.nss b/_content/_haks/aoc_prc8_merge/nw_s1_summmeph.nss new file mode 100644 index 0000000..0cc7a62 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_summmeph.nss @@ -0,0 +1,82 @@ +//:://///////////////////////////////////////////// +//:: Summon Mephit +//:: NW_S1_SummMeph +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Summons a Mephit, type determined by caster +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Aug 14, 2001 +//::////////////////////////////////////////////// +#include "prc_inc_spells" + +// Applies a 1-hour cooldown to the summoned mephit +void WasteSummonSpell() +{ + object oSummoned = OBJECT_SELF; // The summoned creature + + location lSelf = GetLocation(oSummoned); + + effect eCooldown = EffectSpellFailure(100); + + eCooldown = EffectLinkEffects(SupernaturalEffect(eCooldown), TagEffect(eCooldown, "NO_SUMMON")); + + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eCooldown, oSummoned, RoundsToSeconds(2)); + + AssignCommand(oSummoned, ActionCastSpellAtLocation(378/*SUMMON_MEPHIT*/, lSelf, METAMAGIC_ANY, FALSE, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + +} + + +void main() +{ + object oCaster = OBJECT_SELF; + string sCasterResRef = GetResRef(oCaster); + + // Roll d% for the 25% chance of summoning + int nRoll = d100(1); + if (nRoll > 25) + { + // Create a puff of smoke at the caster's location and play a fizzling sound + location lCaster = GetLocation(oCaster); + effect eSmoke = EffectVisualEffect(VFX_IMP_MAGIC_RESISTANCE_USE); + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eSmoke, lCaster); + + // Play a sound effect to simulate the fizzle + PlaySound("sff_spellfail"); + + return; + } + + // Summon the mephit using the caster's ResRef + effect eSummon = EffectSummonCreature(sCasterResRef, VFX_FNF_SUMMON_MONSTER_2); + + // Handle metamagic: Extend Spell doubles the duration + int nMetaMagic = PRCGetMetaMagicFeat(); + float fDuration = HoursToSeconds(24); + if (nMetaMagic & METAMAGIC_EXTEND) fDuration *= 2; + + // Apply the summoning effect at the target location + location lTarget = PRCGetSpellTargetLocation(); + ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, eSummon, lTarget, fDuration); + + // Find the summoned creature and apply a cooldown marker + DelayCommand(0.1, AssignCommand(GetAssociate(ASSOCIATE_TYPE_SUMMONED, oCaster), WasteSummonSpell())); +} + + + + + +/* void main() +{ + //Declare major variables + int nMetaMagic = GetMetaMagicFeat(); + effect eSummon = EffectSummonCreature("NW_S_MEPSTEAM",VFX_FNF_SUMMON_MONSTER_1); + // effect eVis = EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_1); + //Apply the VFX impact and summon effect + //ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, eVis, GetSpellTargetLocation()); + ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, eSummon, GetSpellTargetLocation(), HoursToSeconds(24)); +} */ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_trogstink.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_trogstink.ncs new file mode 100644 index 0000000..1cae10c Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_trogstink.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_trogstink.nss b/_content/_haks/aoc_prc8_merge/nw_s1_trogstink.nss new file mode 100644 index 0000000..38cfb7f --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_trogstink.nss @@ -0,0 +1,21 @@ +//:://///////////////////////////////////////////// +//:: Troglidyte Stench +//:: nw_s1_TrogStench.nss +//:: Copyright (c) 2004 Bioware Corp. +//::////////////////////////////////////////////// +/* + Objects entering the aura must make a fortitude saving + throw (DC 13) or suffer 1d6 points of Strength + Ability Damage +*/ +//::////////////////////////////////////////////// +//:: Created By: Craig Welburn +//:: Created On: Nov 6, 2004 +//::////////////////////////////////////////////// + +void main() +{ + effect eStench = EffectAreaOfEffect(AOE_MOB_TROGLODYTE_STENCH); + eStench = UnyieldingEffect(eStench); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eStench, OBJECT_SELF); +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_trogstinka.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_trogstinka.ncs new file mode 100644 index 0000000..1e643fd Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_trogstinka.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_trogstinka.nss b/_content/_haks/aoc_prc8_merge/nw_s1_trogstinka.nss new file mode 100644 index 0000000..108669c --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_trogstinka.nss @@ -0,0 +1,66 @@ +//:://///////////////////////////////////////////// +//:: Aura of Troglodyte Stench On Enter +//:: nw_s1_trogstinkA.nss +//:: Copyright (c) 2004 Bioware Corp. +//::////////////////////////////////////////////// +/* + Objects entering the Stench must make a fortitude + saving throw (DC 13) or suffer 1D6 points of + Strength Ability Damage. +*/ +//::////////////////////////////////////////////// +//:: Created By: Craig Welburn +//:: Created On: Nov 6, 2004 +//::////////////////////////////////////////////// +//#include "X0_I0_SPELLS" +#include "prc_inc_spells" + +//:: Modified to be CON based, like PnP - Jaysyn + +void main() +{ +//:: Declare major variables + object oTarget = GetEnteringObject(); + object oSource = GetAreaOfEffectCreator(); + + int nHD = GetHitDice(oSource); + int nCONMod = GetAbilityModifier(ABILITY_CONSTITUTION, oSource); + int nDC = 10 +nCONMod+ (nHD/2); + +//:: Declare all the required effects + effect eVis1; + effect eVis2; + effect eStrenghDrain; + + if(!GetHasSpellEffect(SPELLABILITY_TROGLODYTE_STENCH, oTarget)) + { + // Is the target a valid creature + if((GetIsEnemy(oTarget, oSource)) + && (GetIsReactionTypeFriendly(oTarget, oSource) != TRUE)) + { + // Notify the target that they are being attacked + SignalEvent(oTarget, EventSpellCastAt(oSource, AOE_MOB_TROGLODYTE_STENCH)); + + // Prepare the visual effect for the casting and saving throw + eVis1 = EffectVisualEffect(VFX_IMP_REDUCE_ABILITY_SCORE); + eVis2 = EffectVisualEffect(VFX_IMP_FORTITUDE_SAVING_THROW_USE); + + // Create the 1d6 strength reduction effect + // and make it supernatural so it can be dispelled + eStrenghDrain = EffectAbilityDecrease(ABILITY_STRENGTH, d6()); + eStrenghDrain = SupernaturalEffect(eStrenghDrain); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis2, oTarget); + + // Make a Fortitude saving throw, DC 13 and apply the effect if it fails + if (!PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_POISON, oSource)) + { + if (GetIsImmune(oTarget, IMMUNITY_TYPE_POISON) == FALSE) + { + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis1, oTarget); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eStrenghDrain, oTarget, RoundsToSeconds(10)); + } + } + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_tyrantfga.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_tyrantfga.ncs new file mode 100644 index 0000000..5f27b26 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_tyrantfga.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_tyrantfga.nss b/_content/_haks/aoc_prc8_merge/nw_s1_tyrantfga.nss new file mode 100644 index 0000000..a2752cb --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_tyrantfga.nss @@ -0,0 +1,56 @@ +//:://///////////////////////////////////////////// +//:: Tyrant Fog Zombie Mist Heartbeat +//:: NW_S1_TyrantFgA.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creatures entering the area around the zombie + must save or take 1 point of Constitution + damage. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 25, 2001 +//::////////////////////////////////////////////// +#include "NW_I0_SPELLS" +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = GetAreaOfEffectCreator(); + object oTarget = GetEnteringObject(); + //if (NullMagicOverride(GetArea(oTarget), oTarget, oTarget)) {return;} + + int bAbsent = TRUE; + int nHD = GetHitDice(oNPC); + int nCHAMod = GetAbilityModifier(ABILITY_CHARISMA, oNPC); + int nDC = 10 +nCHAMod+ (nHD/2); + + effect eTest; + effect eCon = EffectAbilityDecrease(ABILITY_CONSTITUTION, 1); + eCon = ExtraordinaryEffect(eCon); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE); + effect eLink = EffectLinkEffects(eCon, eDur); + + if(!GetHasSpellEffect(SPELLABILITY_TYRANT_FOG_MIST, oTarget)) + { + if(bAbsent == TRUE) + { + if(GetIsEnemy(oTarget, oNPC)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(oNPC, SPELLABILITY_TYRANT_FOG_MIST)); + //Make a saving throw check + if(!PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_POISON)) + { + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(5)); + } + } + } + } +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_tyrantfog.ncs b/_content/_haks/aoc_prc8_merge/nw_s1_tyrantfog.ncs new file mode 100644 index 0000000..8ba90b5 Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s1_tyrantfog.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s1_tyrantfog.nss b/_content/_haks/aoc_prc8_merge/nw_s1_tyrantfog.nss new file mode 100644 index 0000000..e3ab9e6 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s1_tyrantfog.nss @@ -0,0 +1,25 @@ +//:://///////////////////////////////////////////// +//:: Tyrant Fog Zombie Mist +//:: NW_S1_TyrantFog.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creatures entering the area around the zombie + must save or take 1 point of Constitution + damage. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 25, 2001 +//::////////////////////////////////////////////// +//#include "wm_include" +#include "prc_inc_spells" + +void main() +{ + //if (WildMagicOverride()) { return; } + + //Declare and apply the AOE + effect eAOE = EffectAreaOfEffect(AOE_MOB_TYRANT_FOG); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eAOE, OBJECT_SELF, HoursToSeconds(100)); +} diff --git a/_content/_haks/aoc_prc8_merge/nw_s2_divprot.ncs b/_content/_haks/aoc_prc8_merge/nw_s2_divprot.ncs new file mode 100644 index 0000000..7f7632c Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s2_divprot.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s2_divprot.nss b/_content/_haks/aoc_prc8_merge/nw_s2_divprot.nss new file mode 100644 index 0000000..fff40ab --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s2_divprot.nss @@ -0,0 +1,45 @@ +//:://///////////////////////////////////////////// +//:: Divine Protection +//:: NW_S2_DivProt.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Makes the target creature invisible to hostile + creatures unless they make a Will Save to ignore + the Sanctuary Effect +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Jan 8, 2002 +//::////////////////////////////////////////////// +#include "prc_inc_spells" +//#include "wm_include" +void main() +{ + //if (WildMagicOverride()) { return; } + +//:: Declare major variables + object oNPC = OBJECT_SELF; + object oTarget = PRCGetSpellTargetObject(); + + effect eVis = EffectVisualEffect(VFX_DUR_SANCTUARY); + effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE); + int nDC = 10 + GetAbilityModifier(ABILITY_CHARISMA) + GetLevelByTypeDivine(oNPC); + effect eSanc = EffectSanctuary(nDC); + + effect eLink = EffectLinkEffects(eVis, eSanc); + eLink = EffectLinkEffects(eLink, eDur); + //Fire cast spell at event for the specified target + SignalEvent(OBJECT_SELF, EventSpellCastAt(oNPC, SPELLABILITY_DIVINE_PROTECTION, FALSE)); + + int nDuration = GetLevelByTypeDivine(oNPC); + //Enter Metamagic conditions + int nMetaMagic = PRCGetMetaMagicFeat(); + if (nMetaMagic == METAMAGIC_EXTEND) + { + nDuration = nDuration *2; //Duration is +100% + } + //Apply the VFX impact and effects + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration)); +} + diff --git a/_content/_haks/aoc_prc8_merge/nw_s3_balordeth.ncs b/_content/_haks/aoc_prc8_merge/nw_s3_balordeth.ncs new file mode 100644 index 0000000..f54e84e Binary files /dev/null and b/_content/_haks/aoc_prc8_merge/nw_s3_balordeth.ncs differ diff --git a/_content/_haks/aoc_prc8_merge/nw_s3_balordeth.nss b/_content/_haks/aoc_prc8_merge/nw_s3_balordeth.nss new file mode 100644 index 0000000..db095f7 --- /dev/null +++ b/_content/_haks/aoc_prc8_merge/nw_s3_balordeth.nss @@ -0,0 +1,63 @@ +// HCR v3.2.0 - Execute default death script after fireball effects is complete. +//:://////////////////////////////////////////////////////////////////////////// +//:: FileName: NW_S3_BALORDETH +//:://////////////////////////////////////////////////////////////////////////// +/* + Fireball explosion does 50 damage to all within 20ft. +*/ +//:://////////////////////////////////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Jan 9, 2002 +//:://////////////////////////////////////////////////////////////////////////// +#include "NW_I0_SPELLS" +#include "prc_inc_spells" +#include "prc_add_spell_dc" +//:://////////////////////////////////////////////////////////////////////////// +void main() +{ + // Declare major variables. + int nMetaMagic = PRCGetMetaMagicFeat(); + int nDamage; + float fDelay; + effect eVis = EffectVisualEffect(VFX_IMP_FLAME_M); + effect eDam; + + // Apply the fireball explosion. + effect eExplode = EffectVisualEffect(VFX_FNF_FIREBALL); + location lTarget = GetLocation(OBJECT_SELF); + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eExplode, lTarget); + + // Cycle through the targets until an invalid object is captured. + object oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_HUGE, lTarget, TRUE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR); + while (GetIsObjectValid(oTarget)) + { + // Fire cast spell at event for the specified target. + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_FIREBALL)); + + // Calculate delay based on distance between explosion and the target. + fDelay = (GetDistanceBetweenLocations(lTarget, GetLocation(oTarget))/20); + if (!PRCDoResistSpell(OBJECT_SELF, oTarget, FloatToInt(fDelay))) + { + // Adjust damage based on Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(50, oTarget, PRCGetSpellSaveDC(), SAVING_THROW_TYPE_FIRE); + if (nDamage > 0) + { + // Apply effects to the currently selected target. + eDam = EffectDamage(nDamage, DAMAGE_TYPE_FIRE); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + + // This visual effect is applied to the target object not the + // location as above. This visual effect represents the flame that + // erupts on the target not on the ground. + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + + // Select the next target. + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_HUGE, lTarget, TRUE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR); + } + + // HCR 3.0 - Call default death script. + ExecuteScript("nw_c2_default7", OBJECT_SELF); +} +//:://////////////////////////////////////////////////////////////////////////// diff --git a/_content/_tools/NWN.CLI.exe b/_content/_tools/NWN.CLI.exe new file mode 100644 index 0000000..67fdd29 Binary files /dev/null and b/_content/_tools/NWN.CLI.exe differ diff --git a/_content/_tools/NWN_compDcomp.exe b/_content/_tools/NWN_compDcomp.exe new file mode 100644 index 0000000..18253e0 Binary files /dev/null and b/_content/_tools/NWN_compDcomp.exe differ diff --git a/_content/_tools/cygiconv-2.dll b/_content/_tools/cygiconv-2.dll new file mode 100644 index 0000000..926464c Binary files /dev/null and b/_content/_tools/cygiconv-2.dll differ diff --git a/_content/_tools/cygintl-2.dll b/_content/_tools/cygintl-2.dll new file mode 100644 index 0000000..aef3a8c Binary files /dev/null and b/_content/_tools/cygintl-2.dll differ diff --git a/_content/_tools/cygintl-3.dll b/_content/_tools/cygintl-3.dll new file mode 100644 index 0000000..bd6e382 Binary files /dev/null and b/_content/_tools/cygintl-3.dll differ diff --git a/_content/_tools/cygintl-8.dll b/_content/_tools/cygintl-8.dll new file mode 100644 index 0000000..e636367 Binary files /dev/null and b/_content/_tools/cygintl-8.dll differ diff --git a/_content/_tools/cygpcre-0.dll b/_content/_tools/cygpcre-0.dll new file mode 100644 index 0000000..eb68c8d Binary files /dev/null and b/_content/_tools/cygpcre-0.dll differ diff --git a/_content/_tools/cygwin1.dll b/_content/_tools/cygwin1.dll new file mode 100644 index 0000000..7fd577c Binary files /dev/null and b/_content/_tools/cygwin1.dll differ diff --git a/_content/_tools/cygxml2-2.dll b/_content/_tools/cygxml2-2.dll new file mode 100644 index 0000000..11baa98 Binary files /dev/null and b/_content/_tools/cygxml2-2.dll differ diff --git a/_content/_tools/cygz.dll b/_content/_tools/cygz.dll new file mode 100644 index 0000000..c94d66c Binary files /dev/null and b/_content/_tools/cygz.dll differ diff --git a/_content/_tools/hakbuilder.json b/_content/_tools/hakbuilder.json new file mode 100644 index 0000000..6fac19a --- /dev/null +++ b/_content/_tools/hakbuilder.json @@ -0,0 +1,10 @@ +{ + "OutputPath": "../_output/", + "HakList": [ + { + "Name": "aoc_prc8_merge", + "Path": "../_haks/aoc_prc8_merge/", + "CompileModels": false + }, + ] +} diff --git a/_content/_tools/nwn_erf.exe b/_content/_tools/nwn_erf.exe new file mode 100644 index 0000000..1dba285 Binary files /dev/null and b/_content/_tools/nwn_erf.exe differ diff --git a/_content/_tools/nwnmdlcomp.exe b/_content/_tools/nwnmdlcomp.exe new file mode 100644 index 0000000..4cdc440 Binary files /dev/null and b/_content/_tools/nwnmdlcomp.exe differ diff --git a/_content/_tools/pcre64.dll b/_content/_tools/pcre64.dll new file mode 100644 index 0000000..40b4ac3 Binary files /dev/null and b/_content/_tools/pcre64.dll differ diff --git a/_content/_tools/tlk2xml.exe b/_content/_tools/tlk2xml.exe new file mode 100644 index 0000000..27a49be Binary files /dev/null and b/_content/_tools/tlk2xml.exe differ diff --git a/_content/_tools/xml2tlk.exe b/_content/_tools/xml2tlk.exe new file mode 100644 index 0000000..a729ab4 Binary files /dev/null and b/_content/_tools/xml2tlk.exe differ diff --git a/_module/Module.Packer.deps.json b/_module/Module.Packer.deps.json new file mode 100644 index 0000000..03ac992 --- /dev/null +++ b/_module/Module.Packer.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Module.Packer/1.0.0": { + "runtime": { + "Module.Packer.dll": {} + } + } + } + }, + "libraries": { + "Module.Packer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/_module/Module.Packer.dll b/_module/Module.Packer.dll new file mode 100644 index 0000000..e896006 Binary files /dev/null and b/_module/Module.Packer.dll differ diff --git a/_module/Module.Packer.exe b/_module/Module.Packer.exe new file mode 100644 index 0000000..0980ce6 Binary files /dev/null and b/_module/Module.Packer.exe differ diff --git a/_module/Module.Packer.pdb b/_module/Module.Packer.pdb new file mode 100644 index 0000000..d5dc1e1 Binary files /dev/null and b/_module/Module.Packer.pdb differ diff --git a/_module/Module.Packer.runtimeconfig.dev.json b/_module/Module.Packer.runtimeconfig.dev.json new file mode 100644 index 0000000..389d567 --- /dev/null +++ b/_module/Module.Packer.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\Tyler\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Tyler\\.nuget\\packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ] + } +} \ No newline at end of file diff --git a/_module/Module.Packer.runtimeconfig.json b/_module/Module.Packer.runtimeconfig.json new file mode 100644 index 0000000..bc456d7 --- /dev/null +++ b/_module/Module.Packer.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp3.1", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "3.1.0" + } + } +} \ No newline at end of file diff --git a/_module/PackModule.cmd b/_module/PackModule.cmd new file mode 100644 index 0000000..4006c91 --- /dev/null +++ b/_module/PackModule.cmd @@ -0,0 +1 @@ +Module.Packer.exe "The Arena of Champions [PRC8-CEP3].mod" p \ No newline at end of file diff --git a/_module/UnpackModule.cmd b/_module/UnpackModule.cmd new file mode 100644 index 0000000..c9a4583 --- /dev/null +++ b/_module/UnpackModule.cmd @@ -0,0 +1 @@ +Module.Packer.exe "The Arena of Champions [PRC8-CEP3].mod" u \ No newline at end of file diff --git a/_module/are/_base.are.json b/_module/are/_base.are.json new file mode 100644 index 0000000..5eccb06 --- /dev/null +++ b/_module/are/_base.are.json @@ -0,0 +1,346 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 1 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 0 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 2 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 0 + }, + "LightingScheme": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 0 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 13132900 + }, + "MoonFogAmount": { + "type": "byte", + "value": 0 + }, + "MoonFogColor": { + "type": "dword", + "value": 6566450 + }, + "MoonShadows": { + "type": "byte", + "value": 1 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "_base" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "_base" + }, + "ShadowOpacity": { + "type": "byte", + "value": 50 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 6566450 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 16777215 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 9535080 + }, + "SunShadows": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "_base" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 210 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 209 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 209 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 210 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tcn01" + }, + "Version": { + "type": "dword", + "value": 53 + }, + "Width": { + "type": "int", + "value": 2 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/area.are.json b/_module/are/area.are.json new file mode 100644 index 0000000..ce0f7fb --- /dev/null +++ b/_module/are/area.are.json @@ -0,0 +1,346 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 1 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 2 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 12 + }, + "LoadScreenID": { + "type": "word", + "value": 47 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 3947580 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 11184810 + }, + "MoonFogAmount": { + "type": "byte", + "value": 5 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Master Crafter's Workshop" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "area" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "CraftersWorkshop" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 257 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 94 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 258 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 94 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tin01" + }, + "Version": { + "type": "dword", + "value": 6 + }, + "Width": { + "type": "int", + "value": 2 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/area001.are.json b/_module/are/area001.are.json new file mode 100644 index 0000000..084bc31 --- /dev/null +++ b/_module/are/area001.are.json @@ -0,0 +1,432 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 1 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 2 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 13 + }, + "LoadScreenID": { + "type": "word", + "value": 54 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 2960685 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 6457991 + }, + "MoonFogAmount": { + "type": "byte", + "value": 5 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Great Library" + } + }, + "NoRest": { + "type": "byte", + "value": 1 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "area001" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Area001" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 46 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 55 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 46 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 46 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 157 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 46 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tic01" + }, + "Version": { + "type": "dword", + "value": 16 + }, + "Width": { + "type": "int", + "value": 3 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/arena.are.json b/_module/are/arena.are.json new file mode 100644 index 0000000..1a9ea1d --- /dev/null +++ b/_module/are/arena.are.json @@ -0,0 +1,1894 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 1 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 0 + }, + "FogClipDist": { + "type": "float", + "value": 500.0 + }, + "Height": { + "type": "int", + "value": 5 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 0 + }, + "LightingScheme": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 81 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 0 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 13132900 + }, + "MoonFogAmount": { + "type": "byte", + "value": 0 + }, + "MoonFogColor": { + "type": "dword", + "value": 6566450 + }, + "MoonShadows": { + "type": "byte", + "value": 1 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena of Champions" + } + }, + "NoRest": { + "type": "byte", + "value": 1 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "battleon" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 2 + }, + "ResRef": { + "type": "resref", + "value": "arena" + }, + "ShadowOpacity": { + "type": "byte", + "value": 50 + }, + "SkyBox": { + "type": "byte", + "value": 1 + }, + "SunAmbientColor": { + "type": "dword", + "value": 6566450 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 16777215 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 9535080 + }, + "SunShadows": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "arena" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 265 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 149 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 149 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 157 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 149 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 149 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 149 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 265 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 16 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 120 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 271 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 245 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 44 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 2 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 121 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 2 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 159 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 2 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 149 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 264 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 159 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 44 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 42 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 319 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 2 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 319 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 2 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 319 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 2 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 149 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 197 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 159 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 44 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 245 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 159 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 2 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 121 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 2 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 44 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 2 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 149 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 15 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 200 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 199 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 157 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 149 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 149 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 149 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 265 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tcn01" + }, + "Version": { + "type": "dword", + "value": 231 + }, + "Width": { + "type": "int", + "value": 8 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/desolateanddespa.are.json b/_module/are/desolateanddespa.are.json new file mode 100644 index 0000000..9c8b54e --- /dev/null +++ b/_module/are/desolateanddespa.are.json @@ -0,0 +1,2926 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 4 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 8 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 17 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 3355424 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 12230770 + }, + "MoonFogAmount": { + "type": "byte", + "value": 6 + }, + "MoonFogColor": { + "type": "dword", + "value": 12169092 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Desolate and Despairing" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "desolateanddespa" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 3 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Genesis" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 0 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 29 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 26 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 18 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 74 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 42 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 14 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 4 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 10 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 28 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 13 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 46 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 12 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 44 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 13 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 28 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 14 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 28 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 29 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 28 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 42 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 14 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 73 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 28 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 14 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 29 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 14 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 28 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 14 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 19 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 46 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 12 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 10 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 10 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 6 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 6 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 14 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 4 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 2 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 46 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 4 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 12 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 54 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 53 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 14 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 6 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 4 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 14 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 28 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 52 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 51 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 74 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 17 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 29 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 28 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 12 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 13 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 28 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tti01" + }, + "Version": { + "type": "dword", + "value": 10 + }, + "Width": { + "type": "int", + "value": 8 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/ey_dpcon_erewood.are.json b/_module/are/ey_dpcon_erewood.are.json new file mode 100644 index 0000000..a8b72dc --- /dev/null +++ b/_module/are/ey_dpcon_erewood.are.json @@ -0,0 +1,1249 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 4 + }, + "FogClipDist": { + "type": "float", + "value": 100.0 + }, + "Height": { + "type": "int", + "value": 5 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 0 + }, + "LightingScheme": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 58 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 0 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 5066061 + }, + "MoonFogAmount": { + "type": "byte", + "value": 30 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Ere'Wood" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "ey_dpcon_erewood" + }, + "ShadowOpacity": { + "type": "byte", + "value": 30 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 32896 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 4227200 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 4194368 + }, + "SunShadows": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Genesis" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 4 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 126 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 18 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 56 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 114 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 4 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 68 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 51 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 17 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 122 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 167 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 143 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 67 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 66 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 52 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 57 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 126 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 12 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 57 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 126 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 10 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 9 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "ttf02" + }, + "Version": { + "type": "dword", + "value": 7 + }, + "Width": { + "type": "int", + "value": 5 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/frostedpits.are.json b/_module/are/frostedpits.are.json new file mode 100644 index 0000000..5e68b0e --- /dev/null +++ b/_module/are/frostedpits.are.json @@ -0,0 +1,2926 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 4 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 8 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 20 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 14362660 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 33023 + }, + "MoonFogAmount": { + "type": "byte", + "value": 3 + }, + "MoonFogColor": { + "type": "dword", + "value": 7091712 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Frosted Pits" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "frostedpits" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Genesis" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 2 + }, + "Tile_ID": { + "type": "int", + "value": 47 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 2 + }, + "Tile_ID": { + "type": "int", + "value": 4 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 9 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 7 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 9 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 9 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 9 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 7 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 2 + }, + "Tile_ID": { + "type": "int", + "value": 4 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 4 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 6 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 0 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 9 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 46 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 7 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 46 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 4 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 9 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 68 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 10 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 7 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 54 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 53 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 50 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 59 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 9 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 57 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 55 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 52 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 51 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 50 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 60 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 58 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 56 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 7 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 9 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 9 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 4 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 68 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 50 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 9 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 46 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 9 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 6 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 46 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 2 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 47 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 7 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 2 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 2 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 8 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 7 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 31 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 31 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tti01" + }, + "Version": { + "type": "dword", + "value": 12 + }, + "Width": { + "type": "int", + "value": 8 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/frozentimes.are.json b/_module/are/frozentimes.are.json new file mode 100644 index 0000000..0912bc7 --- /dev/null +++ b/_module/are/frozentimes.are.json @@ -0,0 +1,2926 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 100 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 1 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 4 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 8 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 0 + }, + "LightingScheme": { + "type": "byte", + "value": 9 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 0 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 5263440 + }, + "MoonFogAmount": { + "type": "byte", + "value": 7 + }, + "MoonFogColor": { + "type": "dword", + "value": 1973790 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Frozen Times" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "frozentimes" + }, + "ShadowOpacity": { + "type": "byte", + "value": 20 + }, + "SkyBox": { + "type": "byte", + "value": 5 + }, + "SunAmbientColor": { + "type": "dword", + "value": 16711680 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 14079702 + }, + "SunFogAmount": { + "type": "byte", + "value": 7 + }, + "SunFogColor": { + "type": "dword", + "value": 12303291 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Genesis" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 1 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 1 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 1 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 1 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 1 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 1 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 1 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 1 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 25 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 26 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 24 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 27 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 24 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 68 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 23 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 18 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 23 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 32 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 25 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 19 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 48 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 49 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 71 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 12 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 74 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 74 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 24 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 23 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 74 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 74 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 4 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 47 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 46 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 14 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 27 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 24 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 13 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 54 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 53 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 29 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 25 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 50 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 25 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 52 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 51 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 29 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 26 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 19 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 19 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 24 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 15 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 29 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 29 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 31 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tti01" + }, + "Version": { + "type": "dword", + "value": 7 + }, + "Width": { + "type": "int", + "value": 8 + }, + "WindPower": { + "type": "int", + "value": 2 + } +} diff --git a/_module/are/hallofheroes.are.json b/_module/are/hallofheroes.are.json new file mode 100644 index 0000000..e2dbbdb --- /dev/null +++ b/_module/are/hallofheroes.are.json @@ -0,0 +1,1894 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 0 + }, + "FogClipDist": { + "type": "float", + "value": 100.0 + }, + "Height": { + "type": "int", + "value": 8 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 0 + }, + "LightingScheme": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 2 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 0 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 13132900 + }, + "MoonFogAmount": { + "type": "byte", + "value": 0 + }, + "MoonFogColor": { + "type": "dword", + "value": 6566450 + }, + "MoonShadows": { + "type": "byte", + "value": 1 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Hall of Heroes" + } + }, + "NoRest": { + "type": "byte", + "value": 1 + }, + "OnEnter": { + "type": "resref", + "value": "final_cutscene" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 2 + }, + "ResRef": { + "type": "resref", + "value": "hallofheroes" + }, + "ShadowOpacity": { + "type": "byte", + "value": 50 + }, + "SkyBox": { + "type": "byte", + "value": 1 + }, + "SunAmbientColor": { + "type": "dword", + "value": 6566450 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 16777215 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 9535080 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "HallofHeroes" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 176 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 319 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 222 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 231 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 221 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 319 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 221 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 231 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 233 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 221 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 319 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 177 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 233 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 317 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 274 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 317 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 32 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 124 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 319 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 124 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 32 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 230 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 319 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 319 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 319 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 30 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 230 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 124 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 319 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 124 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 234 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 29 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 230 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 33 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 230 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 29 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tcn01" + }, + "Version": { + "type": "dword", + "value": 36 + }, + "Width": { + "type": "int", + "value": 5 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/lakevictory.are.json b/_module/are/lakevictory.are.json new file mode 100644 index 0000000..96670fa --- /dev/null +++ b/_module/are/lakevictory.are.json @@ -0,0 +1,3958 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 4 + }, + "FogClipDist": { + "type": "float", + "value": 100.0 + }, + "Height": { + "type": "int", + "value": 8 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 2 + }, + "LoadScreenID": { + "type": "word", + "value": 65 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 0 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 2570047 + }, + "MoonFogAmount": { + "type": "byte", + "value": 15 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Star Lake" + } + }, + "NoRest": { + "type": "byte", + "value": 1 + }, + "OnEnter": { + "type": "resref", + "value": "show_begin" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 0 + }, + "ResRef": { + "type": "resref", + "value": "lakevictory" + }, + "ShadowOpacity": { + "type": "byte", + "value": 30 + }, + "SkyBox": { + "type": "byte", + "value": 1 + }, + "SunAmbientColor": { + "type": "dword", + "value": 3291708 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 9144700 + }, + "SunFogAmount": { + "type": "byte", + "value": 7 + }, + "SunFogColor": { + "type": "dword", + "value": 2110773 + }, + "SunShadows": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "LakeVictory" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 35 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 60 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 35 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 49 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 49 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 21 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 197 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 51 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 201 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 49 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 6 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 55 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 0 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 35 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 60 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 59 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 195 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 195 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 58 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 52 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 184 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 195 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 195 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 206 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 51 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 55 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 60 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 121 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 189 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 183 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 21 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 59 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 186 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 184 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 201 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 35 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 36 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 60 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 35 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 27 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 49 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "ttr01" + }, + "Version": { + "type": "dword", + "value": 36 + }, + "Width": { + "type": "int", + "value": 11 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/limbo.are.json b/_module/are/limbo.are.json new file mode 100644 index 0000000..bf18862 --- /dev/null +++ b/_module/are/limbo.are.json @@ -0,0 +1,1249 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 6 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 5 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 21 + }, + "LoadScreenID": { + "type": "word", + "value": 88 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 0 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 0 + }, + "MoonFogAmount": { + "type": "byte", + "value": 10 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Limbo" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "randomlightenin2" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "limbo" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Limbo" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 266 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 87 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 87 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 267 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 106 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "ttu01" + }, + "Version": { + "type": "dword", + "value": 7 + }, + "Width": { + "type": "int", + "value": 5 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/limbo001.are.json b/_module/are/limbo001.are.json new file mode 100644 index 0000000..01e5b14 --- /dev/null +++ b/_module/are/limbo001.are.json @@ -0,0 +1,2926 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 50 + }, + "ChanceRain": { + "type": "int", + "value": 100 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "This are is used as storage location by various PRC systems. It should not be accessible to players under any circumstances.\r\n\r\n\r\nThis area is a part of the Player Resource Consortium pack." + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 1 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 4 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 8 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 0 + }, + "LightingScheme": { + "type": "byte", + "value": 10 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "ModListenCheck": { + "type": "int", + "value": -2 + }, + "ModSpotCheck": { + "type": "int", + "value": -2 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 0 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 2631720 + }, + "MoonFogAmount": { + "type": "byte", + "value": 3 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Limbo" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "limbo001" + }, + "ShadowOpacity": { + "type": "byte", + "value": 30 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 3947580 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 7895160 + }, + "SunFogAmount": { + "type": "byte", + "value": 3 + }, + "SunFogColor": { + "type": "dword", + "value": 3947580 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Limbo" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 12 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 124 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 124 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 124 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 121 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 12 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 67 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 63 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 69 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 75 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 66 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 122 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 12 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 69 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 66 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 70 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 64 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 124 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 64 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 65 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 63 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 63 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 68 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 12 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 124 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 69 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 65 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 63 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 64 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 66 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 69 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 64 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 69 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 65 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 75 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 70 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 124 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 122 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 67 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 64 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 69 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 66 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 75 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 121 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 125 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 126 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "ttd01" + }, + "Version": { + "type": "dword", + "value": 13 + }, + "Width": { + "type": "int", + "value": 8 + }, + "WindPower": { + "type": "int", + "value": 2 + } +} diff --git a/_module/are/mordmagman01.are.json b/_module/are/mordmagman01.are.json new file mode 100644 index 0000000..0bd8f97 --- /dev/null +++ b/_module/are/mordmagman01.are.json @@ -0,0 +1,862 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "This area is used by the Mordenkainen's Magnificent Mansion -spell. It should only be accessible by said spell.\r\n\r\n\r\nThis area is a part of the Player Resource Consortium pack." + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 1 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 4 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 12 + }, + "LoadScreenID": { + "type": "word", + "value": 40 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 3947580 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 11184810 + }, + "MoonFogAmount": { + "type": "byte", + "value": 5 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Mordenkainen's Magnificent Mansion" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 0 + }, + "ResRef": { + "type": "resref", + "value": "mordmagman01" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MordenkainensMagnificentMansion" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 174 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 91 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tic01" + }, + "Version": { + "type": "dword", + "value": 6 + }, + "Width": { + "type": "int", + "value": 4 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/mordmagman02.are.json b/_module/are/mordmagman02.are.json new file mode 100644 index 0000000..0ff1446 --- /dev/null +++ b/_module/are/mordmagman02.are.json @@ -0,0 +1,862 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "This area is used by the Mordenkainen's Magnificent Mansion -spell. It should only be accessible by said spell.\r\n\r\n\r\nThis area is a part of the Player Resource Consortium pack." + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 1 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 4 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 12 + }, + "LoadScreenID": { + "type": "word", + "value": 40 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 3947580 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 11184810 + }, + "MoonFogAmount": { + "type": "byte", + "value": 5 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Mordenkainen's Magnificent Mansion" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 0 + }, + "ResRef": { + "type": "resref", + "value": "mordmagman02" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MordenkainensMagnificentMansion" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 174 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 91 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tic01" + }, + "Version": { + "type": "dword", + "value": 7 + }, + "Width": { + "type": "int", + "value": 4 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/mordmagman03.are.json b/_module/are/mordmagman03.are.json new file mode 100644 index 0000000..766929f --- /dev/null +++ b/_module/are/mordmagman03.are.json @@ -0,0 +1,862 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "This area is used by the Mordenkainen's Magnificent Mansion -spell. It should only be accessible by said spell.\r\n\r\n\r\nThis area is a part of the Player Resource Consortium pack." + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 1 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 4 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 12 + }, + "LoadScreenID": { + "type": "word", + "value": 40 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 3947580 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 11184810 + }, + "MoonFogAmount": { + "type": "byte", + "value": 5 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Mordenkainen's Magnificent Mansion" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 0 + }, + "ResRef": { + "type": "resref", + "value": "mordmagman03" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MordenkainensMagnificentMansion" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 174 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 91 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tic01" + }, + "Version": { + "type": "dword", + "value": 7 + }, + "Width": { + "type": "int", + "value": 4 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/mordmagman04.are.json b/_module/are/mordmagman04.are.json new file mode 100644 index 0000000..930a563 --- /dev/null +++ b/_module/are/mordmagman04.are.json @@ -0,0 +1,862 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "This area is used by the Mordenkainen's Magnificent Mansion -spell. It should only be accessible by said spell.\r\n\r\n\r\nThis area is a part of the Player Resource Consortium pack." + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 1 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 4 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 12 + }, + "LoadScreenID": { + "type": "word", + "value": 40 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 3947580 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 11184810 + }, + "MoonFogAmount": { + "type": "byte", + "value": 5 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Mordenkainen's Magnificent Mansion" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 0 + }, + "ResRef": { + "type": "resref", + "value": "mordmagman04" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MordenkainensMagnificentMansion" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 174 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 91 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tic01" + }, + "Version": { + "type": "dword", + "value": 7 + }, + "Width": { + "type": "int", + "value": 4 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/mordmagman05.are.json b/_module/are/mordmagman05.are.json new file mode 100644 index 0000000..8ead0e2 --- /dev/null +++ b/_module/are/mordmagman05.are.json @@ -0,0 +1,862 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "This area is used by the Mordenkainen's Magnificent Mansion -spell. It should only be accessible by said spell.\r\n\r\n\r\nThis area is a part of the Player Resource Consortium pack." + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 1 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 4 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 12 + }, + "LoadScreenID": { + "type": "word", + "value": 40 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 3947580 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 11184810 + }, + "MoonFogAmount": { + "type": "byte", + "value": 5 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Mordenkainen's Magnificent Mansion" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 0 + }, + "ResRef": { + "type": "resref", + "value": "mordmagman05" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MordenkainensMagnificentMansion" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 174 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 91 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tic01" + }, + "Version": { + "type": "dword", + "value": 7 + }, + "Width": { + "type": "int", + "value": 4 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/mordmagman06.are.json b/_module/are/mordmagman06.are.json new file mode 100644 index 0000000..ca98b84 --- /dev/null +++ b/_module/are/mordmagman06.are.json @@ -0,0 +1,862 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "This area is used by the Mordenkainen's Magnificent Mansion -spell. It should only be accessible by said spell.\r\n\r\n\r\nThis area is a part of the Player Resource Consortium pack." + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 1 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 4 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 12 + }, + "LoadScreenID": { + "type": "word", + "value": 40 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 3947580 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 11184810 + }, + "MoonFogAmount": { + "type": "byte", + "value": 5 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Mordenkainen's Magnificent Mansion" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 0 + }, + "ResRef": { + "type": "resref", + "value": "mordmagman06" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MordenkainensMagnificentMansion" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 174 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 83 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 91 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 82 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 116 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tic01" + }, + "Version": { + "type": "dword", + "value": 7 + }, + "Width": { + "type": "int", + "value": 4 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/prc_maze_01.are.json b/_module/are/prc_maze_01.are.json new file mode 100644 index 0000000..4d4251d --- /dev/null +++ b/_module/are/prc_maze_01.are.json @@ -0,0 +1,11182 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "Local variable PRC_Maze_Entries_Count should contain the number of entry waypoints.\r\nThe tags of the entry waypoints should be of format PRC_MAZE_ENTRY_WP_N, where N is a sequential number unique to each entry, starting at value 1.\r\n\r\n\r\nThis area is provided by the Player Resource Consortium pack." + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 3 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 16 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 13 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 2960685 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 6457991 + }, + "MoonFogAmount": { + "type": "byte", + "value": 5 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Maze" + } + }, + "NoRest": { + "type": "byte", + "value": 1 + }, + "OnEnter": { + "type": "resref", + "value": "prc_maze_onenter" + }, + "OnExit": { + "type": "resref", + "value": "prc_maze_onexit" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "prc_maze_01" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_01" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 41 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 118 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 118 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 40 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 41 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 118 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 40 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 40 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 118 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 130 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 39 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 119 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 37 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 4 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 127 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tdc01" + }, + "Version": { + "type": "dword", + "value": 8 + }, + "Width": { + "type": "int", + "value": 16 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/ruinedminds001.are.json b/_module/are/ruinedminds001.are.json new file mode 100644 index 0000000..924fd64 --- /dev/null +++ b/_module/are/ruinedminds001.are.json @@ -0,0 +1,2926 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 3 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 8 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 18 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 2310951 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 2114144 + }, + "MoonFogAmount": { + "type": "byte", + "value": 10 + }, + "MoonFogColor": { + "type": "dword", + "value": 1849670 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Ruined Minds" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "ruinedminds001" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 2 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Genesis" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 12 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 219 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 179 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 167 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 263 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 235 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 240 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 264 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 224 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 103 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 180 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 8 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 255 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 187 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 222 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 170 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 131 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 221 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 110 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 184 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 90 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 91 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 170 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 218 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 9 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 134 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 185 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 92 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 93 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 222 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 186 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 193 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 183 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 3 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 184 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 94 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 95 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 221 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 179 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 161 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 221 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 168 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 96 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 97 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 220 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 1 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 167 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 180 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 219 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 218 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 221 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 168 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 212 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 5 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 2 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tdr01" + }, + "Version": { + "type": "dword", + "value": 6 + }, + "Width": { + "type": "int", + "value": 8 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/thequietofthemin.are.json b/_module/are/thequietofthemin.are.json new file mode 100644 index 0000000..ee5bf80 --- /dev/null +++ b/_module/are/thequietofthemin.are.json @@ -0,0 +1,1722 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 4 + }, + "FogClipDist": { + "type": "float", + "value": 100.0 + }, + "Height": { + "type": "int", + "value": 6 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 0 + }, + "LightingScheme": { + "type": "byte", + "value": 3 + }, + "LoadScreenID": { + "type": "word", + "value": 63 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 0 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 13132900 + }, + "MoonFogAmount": { + "type": "byte", + "value": 0 + }, + "MoonFogColor": { + "type": "dword", + "value": 6566450 + }, + "MoonShadows": { + "type": "byte", + "value": 1 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Quiet of the Mind" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "thequietofthemin" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 2 + }, + "SunAmbientColor": { + "type": "dword", + "value": 5129021 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 4946100 + }, + "SunFogAmount": { + "type": "byte", + "value": 1 + }, + "SunFogColor": { + "type": "dword", + "value": 6566450 + }, + "SunShadows": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Genesis" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 7 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 24 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 222 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 198 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 86 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 22 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 7 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 194 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 193 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 87 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 205 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 11 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 49 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 35 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 38 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 186 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 193 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 49 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 50 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 55 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 58 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 49 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 202 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 1 + }, + "Tile_ID": { + "type": "int", + "value": 207 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 0 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 6 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 0 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 0 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 20 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 16 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 16 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 0 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "ttr01" + }, + "Version": { + "type": "dword", + "value": 4 + }, + "Width": { + "type": "int", + "value": 6 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/thestoreroom.are.json b/_module/are/thestoreroom.are.json new file mode 100644 index 0000000..93dba96 --- /dev/null +++ b/_module/are/thestoreroom.are.json @@ -0,0 +1,346 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 1 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 2 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 13 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 2960685 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 6457991 + }, + "MoonFogAmount": { + "type": "byte", + "value": 5 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Great Storeroom" + } + }, + "NoRest": { + "type": "byte", + "value": 0 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "thestoreroom" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "TheStoreroom" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 159 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 21 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 13 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 159 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 30 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 14 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 159 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tic01" + }, + "Version": { + "type": "dword", + "value": 14 + }, + "Width": { + "type": "int", + "value": 2 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/are/undergroundshrin.are.json b/_module/are/undergroundshrin.are.json new file mode 100644 index 0000000..56d3c27 --- /dev/null +++ b/_module/are/undergroundshrin.are.json @@ -0,0 +1,1206 @@ +{ + "__data_type": "ARE ", + "ChanceLightning": { + "type": "int", + "value": 0 + }, + "ChanceRain": { + "type": "int", + "value": 0 + }, + "ChanceSnow": { + "type": "int", + "value": 0 + }, + "Comments": { + "type": "cexostring", + "value": "" + }, + "Creator_ID": { + "type": "int", + "value": -1 + }, + "DayNightCycle": { + "type": "byte", + "value": 0 + }, + "Expansion_List": { + "type": "list", + "value": [] + }, + "Flags": { + "type": "dword", + "value": 3 + }, + "FogClipDist": { + "type": "float", + "value": 45.0 + }, + "Height": { + "type": "int", + "value": 6 + }, + "ID": { + "type": "int", + "value": -1 + }, + "IsNight": { + "type": "byte", + "value": 1 + }, + "LightingScheme": { + "type": "byte", + "value": 21 + }, + "LoadScreenID": { + "type": "word", + "value": 97 + }, + "ModListenCheck": { + "type": "int", + "value": 0 + }, + "ModSpotCheck": { + "type": "int", + "value": 0 + }, + "MoonAmbientColor": { + "type": "dword", + "value": 0 + }, + "MoonDiffuseColor": { + "type": "dword", + "value": 0 + }, + "MoonFogAmount": { + "type": "byte", + "value": 10 + }, + "MoonFogColor": { + "type": "dword", + "value": 0 + }, + "MoonShadows": { + "type": "byte", + "value": 0 + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Underground Shrine" + } + }, + "NoRest": { + "type": "byte", + "value": 1 + }, + "OnEnter": { + "type": "resref", + "value": "" + }, + "OnExit": { + "type": "resref", + "value": "balls_off" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "PlayerVsPlayer": { + "type": "byte", + "value": 3 + }, + "ResRef": { + "type": "resref", + "value": "undergroundshrin" + }, + "ShadowOpacity": { + "type": "byte", + "value": 60 + }, + "SkyBox": { + "type": "byte", + "value": 0 + }, + "SunAmbientColor": { + "type": "dword", + "value": 0 + }, + "SunDiffuseColor": { + "type": "dword", + "value": 0 + }, + "SunFogAmount": { + "type": "byte", + "value": 0 + }, + "SunFogColor": { + "type": "dword", + "value": 0 + }, + "SunShadows": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "UndergroundShrine" + }, + "Tile_List": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 2 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 21 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 27 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 1 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 59 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 62 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 65 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 58 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 61 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 64 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 2 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 2 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 57 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 60 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 0 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 63 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 0 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 1, + "Tile_AnimLoop1": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop2": { + "type": "byte", + "value": 1 + }, + "Tile_AnimLoop3": { + "type": "byte", + "value": 1 + }, + "Tile_Height": { + "type": "int", + "value": 0 + }, + "Tile_ID": { + "type": "int", + "value": 3 + }, + "Tile_MainLight1": { + "type": "byte", + "value": 0 + }, + "Tile_MainLight2": { + "type": "byte", + "value": 1 + }, + "Tile_Orientation": { + "type": "int", + "value": 3 + }, + "Tile_SrcLight1": { + "type": "byte", + "value": 3 + }, + "Tile_SrcLight2": { + "type": "byte", + "value": 3 + } + } + ] + }, + "Tileset": { + "type": "resref", + "value": "tii01" + }, + "Version": { + "type": "dword", + "value": 8 + }, + "Width": { + "type": "int", + "value": 4 + }, + "WindPower": { + "type": "int", + "value": 0 + } +} diff --git a/_module/dlg/amulet.dlg.json b/_module/dlg/amulet.dlg.json new file mode 100644 index 0000000..b7db557 --- /dev/null +++ b/_module/dlg/amulet.dlg.json @@ -0,0 +1,5505 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "ammmax_reached" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "ammmax_reached2" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your amulet?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose spell class [Level is random]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose a feat" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose profcicency type" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "ammdone_1" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "ammred_0" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "ammed_1" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "ammred1_1" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "ammred_2" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "ammred_3" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "ammred_4" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "ammred_6" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bdone_1" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "bred_0" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "bred_1" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "blred1_1" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "blred_2" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "blred_3" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "blred_4" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "blred_6" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "blred_7" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "blred_8" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "blred_9" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "blred_10" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "blred_11" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "blred_12" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose ability type" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 204 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do nothing" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "umd_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Use Magic Device]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tumb_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tumble]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "taunt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Taunt]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spot]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spell_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spellcraft]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "search_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Search]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "perf_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Perform]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "parry_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Parry]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "silent_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Move Silently]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "hide_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hide]" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "heal_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heal]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "disc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Discipline]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "conc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Concentration]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Spell Slot]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wiz_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wizard]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sorc_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sorcerer]" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pally_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Paladin]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "druid_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Druid]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cler_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cleric]" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bard_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bard]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Feat]" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Weapon Proficiency]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wpe_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exotic]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wpm_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Martial]" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wfin_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Weapon Finesse]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "2weapfig_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Two-weapon Fighting]" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Penetration]" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "patt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Power Attack]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "knockdown_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Knockdown]" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dodge_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dodge]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ccast_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Combat Casting]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cleave_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cleave]" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "aph_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Armour Proficiency: Heavy]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "amby_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ambidexterity]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus]" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ammdred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III]" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III] *** DONE ***" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ammdred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus II]" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus II]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I|] *** DONE ***" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "amm_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I]" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I] *** DONE ***" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V]" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV]" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III]" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance II]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance II]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bl_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I]" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ability Bonus]" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cha_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Charisma]" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "int_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Intelligence]" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wis_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wisdom]" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "con_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Constitution]" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dex_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dexterity]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "str_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Strength]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/amulet_red.dlg.json b/_module/dlg/amulet_red.dlg.json new file mode 100644 index 0000000..1cd1ca4 --- /dev/null +++ b/_module/dlg/amulet_red.dlg.json @@ -0,0 +1,6800 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What would you like?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose a school " + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose a feat" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "ammmax_reached" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "ammmax_reached2" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your amulet?" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose spell class [Level is random]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "ammdone_1" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "ammred_0" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "ammed_1" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "ammred1_1" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "ammred_2" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "ammred_3" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "ammred_4" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "ammred_6" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bdone_1" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "bred_0" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "bred_1" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "blred1_1" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "blred_2" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "blred_3" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "blred_4" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "blred_6" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "blred_7" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "blred_8" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "blred_9" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "blred_10" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "blred_11" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "blred_12" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose ability type" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose profcicency type" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "done_1a" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "red_0a" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "red_1a" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "red1_1a" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "red_2a" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "red_3a" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "red_4a" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "red_6a" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select spell resistence treatment?" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You already have the maximum spell resistance treatment!" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 273 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Focus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do nothing" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "umd_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Use Magic Device]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tumb_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tumble]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "taunt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Taunt]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spot]" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spell_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spellcraft]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "search_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Search]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "perf_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Perform]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "parry_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Parry]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "silent_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Move Silently]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "hide_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hide]" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "heal_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heal]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "disc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Discipline]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "conc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Concentration]" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Spell Slot]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wiz_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wizard]" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sorc_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sorcerer]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pally_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Paladin]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "druid_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Druid]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cler_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cleric]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bard_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bard]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Feat]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus]" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ammdred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III]" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III] *** DONE ***" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ammdred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus II]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus II]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I|] *** DONE ***" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "amm_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I] *** DONE ***" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV]" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV]" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III]" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance II]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance II]" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bl_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ability Bonus]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cha_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Charisma]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "int_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Intelligence]" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wis_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wisdom]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "con_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Constitution]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dex_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dexterity]" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "str_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Strength]" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Weapon Proficiency]" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wpe_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exotic]" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wpm_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Martial]" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wfin_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Weapon Finesse]" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "2weapfig_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Two-weapon Fighting]" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Penetration]" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "patt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Power Attack]" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "knockdown_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Knockdown]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dodge_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dodge]" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ccast_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Combat Casting]" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cleave_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cleave]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "aph_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Armour Proficiency: Heavy]" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "amby_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ambidexterity]" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfnec_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Necromancy]" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfill_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Illusion]" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfevo_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Evocation]" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfenc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Enchantment]" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfdiv_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divination]" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfcon_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Conjuration]" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfabj_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Abjuration]" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "max_spell" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Resistence]" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_3a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Resistance III]" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Resistance III]" + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_2a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Resistance II]" + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Resistance II]" + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_1a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Resistance I]" + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(cont)" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/angel.dlg.json b/_module/dlg/angel.dlg.json new file mode 100644 index 0000000..26387b6 --- /dev/null +++ b/_module/dlg/angel.dlg.json @@ -0,0 +1,659 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do you wish to recieve power?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 32 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Not at this time\n" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Let's Duel" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "take500000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Take 500000 XP" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "take20000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Take 20000 XP" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "take10000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Take 10000 XP" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "take5000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Take 5000 XP" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_003" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "50000 XP" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_002" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "20000 XP" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_001" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "10000 XP" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_004" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Enlighten me" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/angel2.dlg.json b/_module/dlg/angel2.dlg.json new file mode 100644 index 0000000..35f413e --- /dev/null +++ b/_module/dlg/angel2.dlg.json @@ -0,0 +1,26065 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "mc_facing" + }, + "EndConversation": { + "type": "resref", + "value": "mc_facing" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 217 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_030" + }, + "Index": { + "type": "dword", + "value": 216 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_032" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "divine_ready1" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_033" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is your wish?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You need to have your weapon readied for this." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The almighty one has deemed you worthy." + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ahh. The Divine Parchment! The inscriptions claim to grant the bearer audience with the Divine One." + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I'm sure the Divine one will consider your request, however, you must demonstrate your piety before he will grant you such power." + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You need to have your weapon readied for this." + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The almighty one has deemed you worthy." + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I accept your challenge! Please choose a level of difficulty." + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I accept your challenge! Please choose a level of difficulty." + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select option." + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option switches to Campaign Manager Mode. This is irreversable, your inventory will be purged and you will be unable to compete in the arena." + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Campaign manager mode gives you access to unlimited gold and almost every item in the three campaigns. Such wealth would throw out the balance of the game in terms of not having to properly 'work' for your upgrades. This would greatly spoil the fun of the Arena challenges. " + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "If you export your character and return to the arena, you will no longer hold the rank you had, monsters will no longer be unlocked and you will be stripped of all items and gold." + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Campaign manager mode allows access to the warehouse and the smith's house. The smith will imbue your weapon with certain campaign-specific properties. " + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The warehouse holds every item imaginable from the campaigns and a chest filled with unlimited gold for your taking." + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finally, the chain near the great library allows you to insert your character at any chapter in all three campaigns." + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm." + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Campaign Manager Mode - [Initiated]" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You can't initiate campaign manager mode during a multiplayer session. " + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hint] You may initiate this mode when there is [one player only] in the arena. If you wish to conduct a multiplayer campaign manager mode session, have the first player initiate the mode before the others join. When campaign manager mode is set, other players may join at their leisure. This is to safeguard against disruptive behaviour during multiplayer session." + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to reset?" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills, deaths, hits and damage score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] Once you reset this score it is gone forever. Proceed?" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills and deaths score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset the module. All upgrade options will be reset their oroginal values. Your progress in the arena will be retained. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset all of your progress and stats in the arena. This includes your kills, deaths, damage, hits, rank, defeated opponents and completed challenges. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 215 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 210 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 166 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 165 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 164 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 150 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 149 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select option." + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 137 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 134 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 125 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_031" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_051" + }, + "Index": { + "type": "dword", + "value": 113 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 112 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 111 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to purge?" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 116 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 114 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will remove your Nordock token and reset the both your character and the arena. " + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 118 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 117 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the Nordock token from your inventory. Are you sure?" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 122 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 121 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 120 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This is an advanced users option. It will remove all of the data tokens from your character. The next time you enter, you will be stripped of all gold and equipment and issued with 6 new data tokens. This is a useful oprtion for starting again from scratch. " + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 124 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 123 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the data tokens from your inventory. Are you sure?" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 131 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 126 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Purge equipment slots too?" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 130 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 129 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and inventory only]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 133 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 132 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and all possessions]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 136 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 135 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold]" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 146 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 143 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 140 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 139 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 138 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which Items?" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 142 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 141 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory and equipment slots]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 145 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 144 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge equipment slots only]" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 148 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory only]" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 161 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 160 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 159 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 158 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 157 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 156 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 154 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 153 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 152 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 151 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired alignment.]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 163 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 162 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option is now locked because you have already defeated a challenger. This is an anti-exploit system." + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 207 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 206 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 205 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 204 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 203 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 202 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 201 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 200 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 199 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 198 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 197 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 196 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 195 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 194 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 193 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 192 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 191 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 190 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 189 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 188 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 187 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 186 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 185 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 184 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 183 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 182 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 181 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 180 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 28, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 179 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 29, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 178 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 30, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 177 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 31, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 176 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 32, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 175 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 33, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 174 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 34, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 173 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 35, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 172 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 36, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 171 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 37, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 170 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 38, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 169 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 39, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 168 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 40, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 167 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired level.]" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 209 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 208 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 212 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 211 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 214 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 213 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 315 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 310 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 266 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 265 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 264 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 251 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 220 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 219 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 218 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "vs_nnwgrdm2_yes" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is your wish?" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 239 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 236 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 229 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 223 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 222 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 221 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to purge?" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 226 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 225 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 224 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This is an advanced users option. It will remove all of the data tokens from your character. The next time you enter, you will be stripped of all gold and equipment and issued with 6 new data tokens. This is a useful oprtion for starting again from scratch. " + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 228 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 227 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the data tokens from your inventory. Are you sure?" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 233 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 230 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Purge equipment slots too?" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 232 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 231 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and inventory only]" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 235 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 234 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and all possessions]" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 238 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 237 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold]" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 248 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 245 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 242 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 241 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 240 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which Items?" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 244 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 243 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory and equipment slots]" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 247 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 246 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge equipment slots only]" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 250 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 249 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory only]" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 261 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 260 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 259 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 258 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 257 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 256 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 255 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 254 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 253 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 252 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired alignment.]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 263 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 262 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option is now locked because you have already defeated a challenger. This is an anti-exploit system." + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 307 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 306 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 305 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 304 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 303 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 302 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 301 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 300 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 299 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 298 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 297 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 296 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 295 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 294 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 293 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 292 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 291 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 290 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 289 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 288 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 287 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 286 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 285 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 284 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 283 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 282 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 281 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 280 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 28, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 279 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 29, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 278 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 30, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 277 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 31, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 276 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 32, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 275 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 33, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 274 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 34, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 273 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 35, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 272 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 36, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 271 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 37, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 270 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 38, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 269 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 39, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 268 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 40, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 267 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired level.]" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 309 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 308 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 312 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 311 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 314 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 313 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 1545 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort\n" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Recieve Power]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_ammo" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Could you translate this parchment for me?" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I seek divine power so that I may face Lord Lucifer in a final battle." + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_027" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I am ready to bow before my master, mighty Starfall." + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_ammo" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_007" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel Challenge]" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_imposs" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hardcore]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_vhard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Very Hard]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hard]" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Medium]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Easy]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_007" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel Challenge]" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_imposs" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hardcore]" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_vhard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Very Hard]" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hard]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Medium]" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Easy]" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Game Options]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_046" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Change to Campaign Manager Mode]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "inv_open" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Let me drop a few items first" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Why?" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What happens if my player data objects are removed?" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is campaign manager mode?" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(end)" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Initiate Campaign Manager Mode]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]\n" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mode_change" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[More Information]" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Player Score]" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All]" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_all_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hits/Damage]" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_hitdam" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kills/Deaths]" + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Eye of Amaterasu]" + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_eye" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Arena]" + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_arena" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Character Options]" + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "inv_open" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Open Inventory]" + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Items]" + } + } + }, + { + "__struct_id": 111, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 112, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 113, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Nordock Token]" + } + } + }, + { + "__struct_id": 114, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 115, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 116, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 117, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 118, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "nt_remove" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 119, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Data Tokens]" + } + } + }, + { + "__struct_id": 120, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 121, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 122, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 123, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 124, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_data" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 125, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items and Gold]" + } + } + }, + { + "__struct_id": 126, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 127, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 128, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 129, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 130, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 131, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 132, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 133, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 134, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gold Only]" + } + } + }, + { + "__struct_id": 135, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 136, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "gold_purge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 137, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items Only]" + } + } + }, + { + "__struct_id": 138, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 139, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 140, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Both]" + } + } + }, + { + "__struct_id": 141, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 142, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 143, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Equipment Slots]" + } + } + }, + { + "__struct_id": 144, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 145, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_slot" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 146, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Inventory]" + } + } + }, + { + "__struct_id": 147, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 148, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 149, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sf_score" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Display Score]" + } + } + }, + { + "__struct_id": 150, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "align_check" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Alignment change]" + } + } + }, + { + "__struct_id": 151, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 152, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 153, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ce" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Chaotic Evil]" + } + } + }, + { + "__struct_id": 154, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Chaotic Neutral]" + } + } + }, + { + "__struct_id": 155, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Chaotic Good]" + } + } + }, + { + "__struct_id": 156, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ne" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Neutral Evil]" + } + } + }, + { + "__struct_id": 157, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[True Neutral]" + } + } + }, + { + "__struct_id": 158, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Neutral Good]" + } + } + }, + { + "__struct_id": 159, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "le" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lawful Evil]" + } + } + }, + { + "__struct_id": 160, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ln" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lawful Neutral]" + } + } + }, + { + "__struct_id": 161, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lawful Good]" + } + } + }, + { + "__struct_id": 162, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 163, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 164, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "delevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Take 1 level]" + } + } + }, + { + "__struct_id": 165, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "givelevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Add 1 level]" + } + } + }, + { + "__struct_id": 166, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set level]" + } + } + }, + { + "__struct_id": 167, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 168, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 40." + } + } + }, + { + "__struct_id": 169, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv39" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 39." + } + } + }, + { + "__struct_id": 170, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv38" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 38." + } + } + }, + { + "__struct_id": 171, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv37" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 37." + } + } + }, + { + "__struct_id": 172, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv36" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 36." + } + } + }, + { + "__struct_id": 173, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv35" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 35." + } + } + }, + { + "__struct_id": 174, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv34" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 34." + } + } + }, + { + "__struct_id": 175, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv33" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 33." + } + } + }, + { + "__struct_id": 176, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 32." + } + } + }, + { + "__struct_id": 177, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv31" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 31." + } + } + }, + { + "__struct_id": 178, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv30" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 30." + } + } + }, + { + "__struct_id": 179, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv29" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 29." + } + } + }, + { + "__struct_id": 180, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv28" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 28." + } + } + }, + { + "__struct_id": 181, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv27" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 27." + } + } + }, + { + "__struct_id": 182, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv26" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 26." + } + } + }, + { + "__struct_id": 183, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 25." + } + } + }, + { + "__struct_id": 184, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv24" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 24." + } + } + }, + { + "__struct_id": 185, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv23" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 23." + } + } + }, + { + "__struct_id": 186, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 22." + } + } + }, + { + "__struct_id": 187, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 21." + } + } + }, + { + "__struct_id": 188, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 20." + } + } + }, + { + "__struct_id": 189, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 19." + } + } + }, + { + "__struct_id": 190, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 18." + } + } + }, + { + "__struct_id": 191, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 17." + } + } + }, + { + "__struct_id": 192, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 16." + } + } + }, + { + "__struct_id": 193, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 15." + } + } + }, + { + "__struct_id": 194, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 14." + } + } + }, + { + "__struct_id": 195, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 13." + } + } + }, + { + "__struct_id": 196, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 12." + } + } + }, + { + "__struct_id": 197, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 11." + } + } + }, + { + "__struct_id": 198, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 10." + } + } + }, + { + "__struct_id": 199, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv09" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 9." + } + } + }, + { + "__struct_id": 200, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv08" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 8." + } + } + }, + { + "__struct_id": 201, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv07" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 7." + } + } + }, + { + "__struct_id": 202, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv06" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 6." + } + } + }, + { + "__struct_id": 203, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv05" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 5." + } + } + }, + { + "__struct_id": 204, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv04" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 4." + } + } + }, + { + "__struct_id": 205, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv03" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 3." + } + } + }, + { + "__struct_id": 206, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv02" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 2." + } + } + }, + { + "__struct_id": 207, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 1." + } + } + }, + { + "__struct_id": 208, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 209, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 210, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 1st level]" + } + } + }, + { + "__struct_id": 211, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 212, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 213, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 214, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 215, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_004" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 40th Level]" + } + } + }, + { + "__struct_id": 216, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_ammo" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acquire Divine Ammunition]" + } + } + }, + { + "__struct_id": 217, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "start_a_merch" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purchase Arena Tokens]" + } + } + }, + { + "__struct_id": 218, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Nevermind\n" + } + } + }, + { + "__struct_id": 219, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "start_a_merch2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acquire Arena Tokens]" + } + } + }, + { + "__struct_id": 220, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Items]" + } + } + }, + { + "__struct_id": 221, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 222, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 223, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Data Tokens]" + } + } + }, + { + "__struct_id": 224, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 225, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 226, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 227, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 228, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_data" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 229, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items and Gold]" + } + } + }, + { + "__struct_id": 230, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 231, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 232, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 233, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 234, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 235, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 236, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gold Only]" + } + } + }, + { + "__struct_id": 237, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 238, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "gold_purge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 239, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items Only]" + } + } + }, + { + "__struct_id": 240, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 241, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 242, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Both]" + } + } + }, + { + "__struct_id": 243, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 244, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 245, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Equipment Slots]" + } + } + }, + { + "__struct_id": 246, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 247, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_slot" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 248, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Inventory]" + } + } + }, + { + "__struct_id": 249, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 250, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 251, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "align_check" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Alignment change]" + } + } + }, + { + "__struct_id": 252, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 253, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ce" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Evil." + } + } + }, + { + "__struct_id": 254, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Neutral." + } + } + }, + { + "__struct_id": 255, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Good." + } + } + }, + { + "__struct_id": 256, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ne" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neutral Evil." + } + } + }, + { + "__struct_id": 257, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "True Neutral." + } + } + }, + { + "__struct_id": 258, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neutral Good." + } + } + }, + { + "__struct_id": 259, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "le" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Evil." + } + } + }, + { + "__struct_id": 260, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ln" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Neutral." + } + } + }, + { + "__struct_id": 261, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Good." + } + } + }, + { + "__struct_id": 262, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 263, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 264, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "delevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Take 1 level]" + } + } + }, + { + "__struct_id": 265, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "givelevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Add 1 level]" + } + } + }, + { + "__struct_id": 266, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set level]" + } + } + }, + { + "__struct_id": 267, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 268, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 40." + } + } + }, + { + "__struct_id": 269, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv39" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 39." + } + } + }, + { + "__struct_id": 270, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv38" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 38." + } + } + }, + { + "__struct_id": 271, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv37" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 37." + } + } + }, + { + "__struct_id": 272, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv36" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 36." + } + } + }, + { + "__struct_id": 273, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv35" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 35." + } + } + }, + { + "__struct_id": 274, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv34" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 34." + } + } + }, + { + "__struct_id": 275, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv33" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 33." + } + } + }, + { + "__struct_id": 276, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 32." + } + } + }, + { + "__struct_id": 277, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv31" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 31." + } + } + }, + { + "__struct_id": 278, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv30" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 30." + } + } + }, + { + "__struct_id": 279, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv29" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 29." + } + } + }, + { + "__struct_id": 280, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv28" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 28." + } + } + }, + { + "__struct_id": 281, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv27" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 27." + } + } + }, + { + "__struct_id": 282, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv26" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 26." + } + } + }, + { + "__struct_id": 283, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 25." + } + } + }, + { + "__struct_id": 284, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv24" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 24." + } + } + }, + { + "__struct_id": 285, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv23" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 23." + } + } + }, + { + "__struct_id": 286, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 22." + } + } + }, + { + "__struct_id": 287, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 21." + } + } + }, + { + "__struct_id": 288, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 20." + } + } + }, + { + "__struct_id": 289, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 19." + } + } + }, + { + "__struct_id": 290, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 18." + } + } + }, + { + "__struct_id": 291, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 17." + } + } + }, + { + "__struct_id": 292, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 16." + } + } + }, + { + "__struct_id": 293, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 15." + } + } + }, + { + "__struct_id": 294, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 14." + } + } + }, + { + "__struct_id": 295, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 13." + } + } + }, + { + "__struct_id": 296, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 12." + } + } + }, + { + "__struct_id": 297, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 11." + } + } + }, + { + "__struct_id": 298, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 10." + } + } + }, + { + "__struct_id": 299, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv09" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 9." + } + } + }, + { + "__struct_id": 300, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv08" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 8." + } + } + }, + { + "__struct_id": 301, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv07" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 7." + } + } + }, + { + "__struct_id": 302, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv06" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 6." + } + } + }, + { + "__struct_id": 303, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv05" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 5." + } + } + }, + { + "__struct_id": 304, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv04" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 4." + } + } + }, + { + "__struct_id": 305, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv03" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 3." + } + } + }, + { + "__struct_id": 306, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv02" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 2." + } + } + }, + { + "__struct_id": 307, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 1." + } + } + }, + { + "__struct_id": 308, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 309, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 310, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 1st level]" + } + } + }, + { + "__struct_id": 311, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 312, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 313, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 314, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 315, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_004" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 40th Level]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/angel3.dlg.json b/_module/dlg/angel3.dlg.json new file mode 100644 index 0000000..522e2be --- /dev/null +++ b/_module/dlg/angel3.dlg.json @@ -0,0 +1,47801 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "mc_facing" + }, + "EndConversation": { + "type": "resref", + "value": "mc_facing" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 517 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_030" + }, + "Index": { + "type": "dword", + "value": 516 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 205 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_032" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "divine_ready1c" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_033a" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is your wish?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You need to have your weapon readied for this." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The almighty one has deemed you worthy." + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ahh. The Dark Parchment! The inscriptions claim to grant the bearer audience with the Dark one." + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I'm sure the Dark one will consider your request, however, you must demonstrate your piety before he will grant you such power." + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You need to have your weapon readied for this." + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the Dark one." + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the Dark one." + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The Darkone has deemed you worthy." + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I accept your challenge! Please choose a level of difficulty." + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 202 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 199 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 187 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_055" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select option." + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will remove your Australis token and reset the arena. " + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the Australis token from your inventory and restart your AOC game. Are you sure?" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will dispossess you of all gold and items and cap your level at 28.\n\nProceed?" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option switches to Campaign Manager Mode. This is irreversable, your inventory will be purged and you will be unable to compete in the arena." + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Campaign manager mode gives you access to unlimited gold and almost every item in the three campaigns. Such wealth would throw out the balance of the game in terms of not having to properly 'work' for your upgrades. This would greatly spoil the fun of the Arena challenges. " + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "If you export your character and return to the arena, you will no longer hold the rank you had, monsters will no longer be unlocked and you will be stripped of all items and gold." + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Campaign manager mode allows access to the warehouse and the smith's house. The smith will imbue your weapon with certain campaign-specific properties. " + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The warehouse holds every item imaginable from the campaigns and a chest filled with unlimited gold for your taking." + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finally, the chain near the great library allows you to insert your character at any chapter in all three campaigns." + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm." + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Campaign Manager Mode - [Initiated]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 182 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 177 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 133 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 132 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 131 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 118 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "vs_nnwgrdm2_yes" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is your wish?" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to purge?" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This is an advanced users option. It will remove all of the data tokens from your character. The next time you enter, you will be stripped of all gold and equipment and issued with 6 new data tokens. This is a useful oprtion for starting again from scratch. " + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the data tokens from your inventory. Are you sure?" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Purge equipment slots too?" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and inventory only]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and all possessions]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold]" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 112 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which Items?" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 111 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory and equipment slots]" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 114 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 113 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge equipment slots only]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 117 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 116 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory only]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 126 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 125 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 124 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 123 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 122 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 121 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 120 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired alignment.]" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 130 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 129 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option is now locked because you have already defeated a challenger. This is an anti-exploit system." + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 174 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 173 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 172 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 171 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 170 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 169 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 168 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 167 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 166 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 165 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 164 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 163 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 162 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 161 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 160 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 159 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 158 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 157 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 156 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 154 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 153 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 152 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 151 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 150 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 149 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 148 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 28, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 146 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 29, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 145 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 30, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 144 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 31, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 143 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 32, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 142 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 33, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 141 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 34, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 140 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 35, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 139 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 36, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 138 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 37, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 137 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 38, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 136 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 39, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 135 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 40, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 134 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired level.]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 176 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 175 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 179 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 178 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 181 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 180 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 185 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 184 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 183 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You can't initiate campaign manager mode during a multiplayer session. " + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 186 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hint] You may initiate this mode when there is [one player only] in the arena. If you wish to conduct a multiplayer campaign manager mode session, have the first player initiate the mode before the others join. When campaign manager mode is set, other players may join at their leisure. This is to safeguard against disruptive behaviour during multiplayer session." + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 196 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 193 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 190 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 189 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 188 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to reset?" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 192 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 191 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills, deaths, hits and damage score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 195 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 194 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] Once you reset this score it is gone forever. Proceed?" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 198 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 197 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills and deaths score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 201 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 200 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset the module. All upgrade options will be reset their oroginal values. Your progress in the arena will be retained. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 204 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 203 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset all of your progress and stats in the arena. This includes your kills, deaths, damage, hits, rank, defeated opponents and completed challenges. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 515 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 303 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 259 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 258 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 257 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 243 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 242 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 209 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 208 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 207 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 206 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select option." + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 230 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 227 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 218 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_031" + }, + "Index": { + "type": "dword", + "value": 212 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 211 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 210 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to purge?" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 215 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 214 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 213 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This is an advanced users option. It will remove all of the data tokens from your character. The next time you enter, you will be stripped of all gold and equipment and issued with 6 new data tokens. This is a useful oprtion for starting again from scratch. " + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 217 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 216 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the data tokens from your inventory. Are you sure?" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 224 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 221 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 220 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 219 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Purge equipment slots too?" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 223 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 222 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and inventory only]" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 226 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 225 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and all possessions]" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 229 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 228 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold]" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 239 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 236 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 233 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 232 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 231 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which Items?" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 235 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 234 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory and equipment slots]" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 238 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 237 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge equipment slots only]" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 241 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 240 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory only]" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 254 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 253 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 252 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 251 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 250 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 249 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 248 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 247 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 246 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 245 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 244 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired alignment.]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 256 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 255 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option is now locked because you have already defeated a challenger. This is an anti-exploit system." + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 300 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 299 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 298 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 297 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 296 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 295 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 294 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 293 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 292 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 291 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 290 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 289 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 288 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 287 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 286 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 285 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 284 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 283 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 282 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 281 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 280 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 279 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 278 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 277 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 276 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 275 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 274 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 273 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 28, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 272 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 29, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 271 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 30, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 270 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 31, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 269 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 32, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 268 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 33, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 267 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 34, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 266 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 35, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 265 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 36, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 264 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 37, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 263 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 38, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 262 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 39, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 261 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 40, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 260 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired level.]" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 302 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 301 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 512 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 304 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 511 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_030" + }, + "Index": { + "type": "dword", + "value": 510 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 205 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 362 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_032" + }, + "Index": { + "type": "dword", + "value": 354 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "divine_ready1" + }, + "Index": { + "type": "dword", + "value": 329 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_033" + }, + "Index": { + "type": "dword", + "value": 306 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 305 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is your wish?" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 308 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 307 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You need to have your weapon readied for this." + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 316 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 313 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 311 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 310 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 309 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 312 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 314 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 315 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 317 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 318 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 326 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 323 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 321 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 320 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 319 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 322 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 324 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The almighty one has deemed you worthy." + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 325 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 327 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 328 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 330 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ahh. The Divine Parchment! The inscriptions claim to grant the bearer audience with the Divine One." + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 331 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I'm sure the Divine one will consider your request, however, you must demonstrate your piety before he will grant you such power." + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 333 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 332 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You need to have your weapon readied for this." + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 341 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 338 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 336 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 335 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 334 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 337 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 339 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 340 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 342 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 343 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 351 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 348 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 346 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 345 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 344 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 347 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 349 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The almighty one has deemed you worthy." + } + } + }, + { + "__struct_id": 111, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 350 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 112, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 352 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 113, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 353 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 114, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 361 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 360 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 359 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 358 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 357 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 356 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 355 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I accept your challenge! Please choose a level of difficulty." + } + } + }, + { + "__struct_id": 115, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 507 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 504 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 492 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 374 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 371 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_055" + }, + "Index": { + "type": "dword", + "value": 365 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 364 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 363 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select option." + } + } + }, + { + "__struct_id": 116, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 368 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 367 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 366 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will remove your Australis token and reset the arena. " + } + } + }, + { + "__struct_id": 117, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 370 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 369 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the Australis token from your inventory and restart your AOC game. Are you sure?" + } + } + }, + { + "__struct_id": 118, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 373 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 372 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will dispossess you of all gold and items and cap your level at 28.\n\nProceed?" + } + } + }, + { + "__struct_id": 119, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 386 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 382 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 380 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 378 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 377 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 376 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 375 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option switches to Campaign Manager Mode. This is irreversable, your inventory will be purged and you will be unable to compete in the arena." + } + } + }, + { + "__struct_id": 120, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 379 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Campaign manager mode gives you access to unlimited gold and almost every item in the three campaigns. Such wealth would throw out the balance of the game in terms of not having to properly 'work' for your upgrades. This would greatly spoil the fun of the Arena challenges. " + } + } + }, + { + "__struct_id": 121, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 381 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "If you export your character and return to the arena, you will no longer hold the rank you had, monsters will no longer be unlocked and you will be stripped of all items and gold." + } + } + }, + { + "__struct_id": 122, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 383 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Campaign manager mode allows access to the warehouse and the smith's house. The smith will imbue your weapon with certain campaign-specific properties. " + } + } + }, + { + "__struct_id": 123, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 384 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The warehouse holds every item imaginable from the campaigns and a chest filled with unlimited gold for your taking." + } + } + }, + { + "__struct_id": 124, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 385 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finally, the chain near the great library allows you to insert your character at any chapter in all three campaigns." + } + } + }, + { + "__struct_id": 125, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 388 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 387 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm." + } + } + }, + { + "__struct_id": 126, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 389 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Campaign Manager Mode - [Initiated]" + } + } + }, + { + "__struct_id": 127, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 487 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 482 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 438 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 437 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 436 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 423 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 392 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 391 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 390 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "vs_nnwgrdm2_yes" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is your wish?" + } + } + }, + { + "__struct_id": 128, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 411 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 408 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 401 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 395 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 394 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 393 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to purge?" + } + } + }, + { + "__struct_id": 129, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 398 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 397 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 396 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This is an advanced users option. It will remove all of the data tokens from your character. The next time you enter, you will be stripped of all gold and equipment and issued with 6 new data tokens. This is a useful oprtion for starting again from scratch. " + } + } + }, + { + "__struct_id": 130, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 400 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 399 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the data tokens from your inventory. Are you sure?" + } + } + }, + { + "__struct_id": 131, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 405 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 402 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Purge equipment slots too?" + } + } + }, + { + "__struct_id": 132, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 404 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 403 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and inventory only]" + } + } + }, + { + "__struct_id": 133, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 407 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 406 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and all possessions]" + } + } + }, + { + "__struct_id": 134, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 410 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 409 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold]" + } + } + }, + { + "__struct_id": 135, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 420 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 417 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 414 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 413 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 412 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which Items?" + } + } + }, + { + "__struct_id": 136, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 416 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 415 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory and equipment slots]" + } + } + }, + { + "__struct_id": 137, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 419 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 418 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge equipment slots only]" + } + } + }, + { + "__struct_id": 138, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 422 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 421 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory only]" + } + } + }, + { + "__struct_id": 139, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 433 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 432 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 431 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 430 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 429 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 428 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 427 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 426 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 425 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 424 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired alignment.]" + } + } + }, + { + "__struct_id": 140, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 435 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 434 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option is now locked because you have already defeated a challenger. This is an anti-exploit system." + } + } + }, + { + "__struct_id": 141, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 479 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 478 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 477 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 476 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 475 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 474 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 473 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 472 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 471 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 470 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 469 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 468 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 467 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 466 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 465 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 464 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 463 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 462 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 461 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 460 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 459 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 458 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 457 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 456 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 455 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 454 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 453 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 452 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 28, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 451 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 29, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 450 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 30, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 449 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 31, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 448 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 32, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 447 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 33, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 446 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 34, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 445 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 35, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 444 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 36, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 443 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 37, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 442 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 38, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 441 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 39, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 440 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 40, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 439 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired level.]" + } + } + }, + { + "__struct_id": 142, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 481 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 480 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 143, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 484 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 483 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm" + } + } + }, + { + "__struct_id": 144, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 486 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 485 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 145, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 490 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 489 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 488 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You can't initiate campaign manager mode during a multiplayer session. " + } + } + }, + { + "__struct_id": 146, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 491 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hint] You may initiate this mode when there is [one player only] in the arena. If you wish to conduct a multiplayer campaign manager mode session, have the first player initiate the mode before the others join. When campaign manager mode is set, other players may join at their leisure. This is to safeguard against disruptive behaviour during multiplayer session." + } + } + }, + { + "__struct_id": 147, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 501 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 498 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 495 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 494 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 493 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to reset?" + } + } + }, + { + "__struct_id": 148, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 497 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 496 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills, deaths, hits and damage score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 149, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 500 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 499 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] Once you reset this score it is gone forever. Proceed?" + } + } + }, + { + "__struct_id": 150, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 503 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 502 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills and deaths score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 151, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 506 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 505 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset the module. All upgrade options will be reset their oroginal values. Your progress in the arena will be retained. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 152, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 509 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 508 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset all of your progress and stats in the arena. This includes your kills, deaths, damage, hits, rank, defeated opponents and completed challenges. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 153, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 514 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 513 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 154, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 615 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 610 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 566 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 565 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 564 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 551 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 520 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 519 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 518 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "vs_nx2mephm_yes" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is your wish?" + } + } + }, + { + "__struct_id": 155, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 539 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 536 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 529 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 523 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 522 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 521 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to purge?" + } + } + }, + { + "__struct_id": 156, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 526 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 525 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 524 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This is an advanced users option. It will remove all of the data tokens from your character. The next time you enter, you will be stripped of all gold and equipment and issued with 6 new data tokens. This is a useful oprtion for starting again from scratch. " + } + } + }, + { + "__struct_id": 157, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 528 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 527 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the data tokens from your inventory. Are you sure?" + } + } + }, + { + "__struct_id": 158, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 533 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 530 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Purge equipment slots too?" + } + } + }, + { + "__struct_id": 159, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 532 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 531 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and inventory only]" + } + } + }, + { + "__struct_id": 160, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 535 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 534 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and all possessions]" + } + } + }, + { + "__struct_id": 161, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 538 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 537 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Gold]" + } + } + }, + { + "__struct_id": 162, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 548 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 545 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 542 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 541 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 540 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which Items?" + } + } + }, + { + "__struct_id": 163, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 544 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 543 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory and equipment slots]" + } + } + }, + { + "__struct_id": 164, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 547 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 546 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge equipment slots only]" + } + } + }, + { + "__struct_id": 165, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 550 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 549 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory only]" + } + } + }, + { + "__struct_id": 166, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 561 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 560 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 559 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 558 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 557 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 556 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 555 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 554 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 553 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 552 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired alignment.]" + } + } + }, + { + "__struct_id": 167, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 563 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 562 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option is now locked because you have already defeated a challenger. This is an anti-exploit system." + } + } + }, + { + "__struct_id": 168, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 607 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 606 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 605 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 604 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 603 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 602 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 601 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 600 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 599 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 598 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 597 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 596 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 595 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 594 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 593 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 592 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 591 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 590 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 589 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 588 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 587 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 586 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 585 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 584 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 583 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 582 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 581 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 580 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 28, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 579 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 29, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 578 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 30, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 577 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 31, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 576 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 32, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 575 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 33, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 574 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 34, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 573 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 35, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 572 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 36, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 571 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 37, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 570 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 38, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 569 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 39, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 568 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 40, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 567 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired level.]" + } + } + }, + { + "__struct_id": 169, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 609 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 608 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 170, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 612 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 611 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm" + } + } + }, + { + "__struct_id": 171, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 614 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 613 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 3096 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort\n" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Recieve Power]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_3a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_ammo2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Could you translate this parchment for me?" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I seek divine power so that I may face the Arch Angel Tyriel in a final battle." + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_027a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I am ready to bow before my maker, mighty Mephisto." + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "take_div" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "take_div" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_ammo" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_007" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel Challenge]" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_imposs" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hardcore]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_vhard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Very Hard]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hard]" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Medium]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Easy]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Game Options]" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Change to AOC Mode]" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "nt_remove" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Change to Australis Mode]" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "n_start" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_046" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Change to Campaign Manager Mode]" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "inv_open" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Let me drop a few items first" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Why?" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What happens if my player data objects are removed?" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is campaign manager mode?" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(end)" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Initiate Campaign Manager Mode]" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]\n" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mode_change" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Nevermind\n" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "start_a_merch2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acquire Arena Tokens]" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Items]" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Data Tokens]" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_data" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items and Gold]" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gold Only]" + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "gold_purge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items Only]" + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Both]" + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 111, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 112, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Equipment Slots]" + } + } + }, + { + "__struct_id": 113, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 114, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_slot" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 115, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Inventory]" + } + } + }, + { + "__struct_id": 116, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 117, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 118, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "align_check" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Alignment change]" + } + } + }, + { + "__struct_id": 119, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 120, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ce" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Evil." + } + } + }, + { + "__struct_id": 121, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Neutral." + } + } + }, + { + "__struct_id": 122, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Good." + } + } + }, + { + "__struct_id": 123, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ne" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neutral Evil." + } + } + }, + { + "__struct_id": 124, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "True Neutral." + } + } + }, + { + "__struct_id": 125, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neutral Good." + } + } + }, + { + "__struct_id": 126, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "le" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Evil." + } + } + }, + { + "__struct_id": 127, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ln" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Neutral." + } + } + }, + { + "__struct_id": 128, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Good." + } + } + }, + { + "__struct_id": 129, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 130, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 131, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "delevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Take 1 level]" + } + } + }, + { + "__struct_id": 132, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "givelevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Add 1 level]" + } + } + }, + { + "__struct_id": 133, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set level]" + } + } + }, + { + "__struct_id": 134, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 135, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 40." + } + } + }, + { + "__struct_id": 136, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv39" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 39." + } + } + }, + { + "__struct_id": 137, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv38" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 38." + } + } + }, + { + "__struct_id": 138, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv37" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 37." + } + } + }, + { + "__struct_id": 139, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv36" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 36." + } + } + }, + { + "__struct_id": 140, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv35" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 35." + } + } + }, + { + "__struct_id": 141, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv34" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 34." + } + } + }, + { + "__struct_id": 142, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv33" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 33." + } + } + }, + { + "__struct_id": 143, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 32." + } + } + }, + { + "__struct_id": 144, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv31" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 31." + } + } + }, + { + "__struct_id": 145, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv30" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 30." + } + } + }, + { + "__struct_id": 146, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv29" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 29." + } + } + }, + { + "__struct_id": 147, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv28" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 28." + } + } + }, + { + "__struct_id": 148, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv27" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 27." + } + } + }, + { + "__struct_id": 149, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv26" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 26." + } + } + }, + { + "__struct_id": 150, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 25." + } + } + }, + { + "__struct_id": 151, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv24" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 24." + } + } + }, + { + "__struct_id": 152, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv23" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 23." + } + } + }, + { + "__struct_id": 153, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 22." + } + } + }, + { + "__struct_id": 154, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 21." + } + } + }, + { + "__struct_id": 155, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 20." + } + } + }, + { + "__struct_id": 156, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 19." + } + } + }, + { + "__struct_id": 157, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 18." + } + } + }, + { + "__struct_id": 158, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 17." + } + } + }, + { + "__struct_id": 159, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 16." + } + } + }, + { + "__struct_id": 160, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 15." + } + } + }, + { + "__struct_id": 161, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 14." + } + } + }, + { + "__struct_id": 162, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 13." + } + } + }, + { + "__struct_id": 163, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 12." + } + } + }, + { + "__struct_id": 164, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 11." + } + } + }, + { + "__struct_id": 165, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 10." + } + } + }, + { + "__struct_id": 166, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv09" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 9." + } + } + }, + { + "__struct_id": 167, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv08" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 8." + } + } + }, + { + "__struct_id": 168, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv07" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 7." + } + } + }, + { + "__struct_id": 169, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv06" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 6." + } + } + }, + { + "__struct_id": 170, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv05" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 5." + } + } + }, + { + "__struct_id": 171, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv04" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 4." + } + } + }, + { + "__struct_id": 172, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv03" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 3." + } + } + }, + { + "__struct_id": 173, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv02" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 2." + } + } + }, + { + "__struct_id": 174, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 1." + } + } + }, + { + "__struct_id": 175, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 176, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 177, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 1st level]" + } + } + }, + { + "__struct_id": 178, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 179, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 180, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 181, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 182, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_004" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 40th Level]" + } + } + }, + { + "__struct_id": 183, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 184, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 185, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[More Information]" + } + } + }, + { + "__struct_id": 186, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 187, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Player Score]" + } + } + }, + { + "__struct_id": 188, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 189, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 190, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All]" + } + } + }, + { + "__struct_id": 191, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 192, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_all_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 193, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hits/Damage]" + } + } + }, + { + "__struct_id": 194, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 195, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_hitdam" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 196, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kills/Deaths]" + } + } + }, + { + "__struct_id": 197, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 198, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 199, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Eye of Amaterasu]" + } + } + }, + { + "__struct_id": 200, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 201, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_eye" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 202, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Arena]" + } + } + }, + { + "__struct_id": 203, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 204, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_arena" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 205, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Character Options]" + } + } + }, + { + "__struct_id": 206, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 207, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 208, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "inv_open" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Open Inventory]" + } + } + }, + { + "__struct_id": 209, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Items]" + } + } + }, + { + "__struct_id": 210, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 211, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 212, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Data Tokens]" + } + } + }, + { + "__struct_id": 213, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 214, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 215, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 216, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 217, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_data" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 218, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items and Gold]" + } + } + }, + { + "__struct_id": 219, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 220, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 221, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 222, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 223, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 224, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 225, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 226, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 227, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gold Only]" + } + } + }, + { + "__struct_id": 228, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 229, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "gold_purge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 230, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items Only]" + } + } + }, + { + "__struct_id": 231, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 232, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 233, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Both]" + } + } + }, + { + "__struct_id": 234, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 235, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 236, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Equipment Slots]" + } + } + }, + { + "__struct_id": 237, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 238, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_slot" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 239, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Inventory]" + } + } + }, + { + "__struct_id": 240, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 241, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 242, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sf_score" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Display Score]" + } + } + }, + { + "__struct_id": 243, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "align_check" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Alignment change]" + } + } + }, + { + "__struct_id": 244, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 245, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 246, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ce" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Chaotic Evil]" + } + } + }, + { + "__struct_id": 247, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Chaotic Neutral]" + } + } + }, + { + "__struct_id": 248, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Chaotic Good]" + } + } + }, + { + "__struct_id": 249, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ne" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Neutral Evil]" + } + } + }, + { + "__struct_id": 250, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[True Neutral]" + } + } + }, + { + "__struct_id": 251, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Neutral Good]" + } + } + }, + { + "__struct_id": 252, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "le" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lawful Evil]" + } + } + }, + { + "__struct_id": 253, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ln" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lawful Neutral]" + } + } + }, + { + "__struct_id": 254, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lawful Good]" + } + } + }, + { + "__struct_id": 255, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 256, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 257, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "delevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Take 1 level]" + } + } + }, + { + "__struct_id": 258, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "givelevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Add 1 level]" + } + } + }, + { + "__struct_id": 259, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set level]" + } + } + }, + { + "__struct_id": 260, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 261, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 40." + } + } + }, + { + "__struct_id": 262, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv39" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 39." + } + } + }, + { + "__struct_id": 263, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv38" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 38." + } + } + }, + { + "__struct_id": 264, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv37" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 37." + } + } + }, + { + "__struct_id": 265, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv36" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 36." + } + } + }, + { + "__struct_id": 266, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv35" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 35." + } + } + }, + { + "__struct_id": 267, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv34" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 34." + } + } + }, + { + "__struct_id": 268, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv33" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 33." + } + } + }, + { + "__struct_id": 269, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 32." + } + } + }, + { + "__struct_id": 270, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv31" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 31." + } + } + }, + { + "__struct_id": 271, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv30" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 30." + } + } + }, + { + "__struct_id": 272, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv29" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 29." + } + } + }, + { + "__struct_id": 273, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv28" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 28." + } + } + }, + { + "__struct_id": 274, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv27" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 27." + } + } + }, + { + "__struct_id": 275, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv26" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 26." + } + } + }, + { + "__struct_id": 276, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 25." + } + } + }, + { + "__struct_id": 277, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv24" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 24." + } + } + }, + { + "__struct_id": 278, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv23" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 23." + } + } + }, + { + "__struct_id": 279, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 22." + } + } + }, + { + "__struct_id": 280, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 21." + } + } + }, + { + "__struct_id": 281, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 20." + } + } + }, + { + "__struct_id": 282, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 19." + } + } + }, + { + "__struct_id": 283, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 18." + } + } + }, + { + "__struct_id": 284, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 17." + } + } + }, + { + "__struct_id": 285, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 16." + } + } + }, + { + "__struct_id": 286, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 15." + } + } + }, + { + "__struct_id": 287, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 14." + } + } + }, + { + "__struct_id": 288, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 13." + } + } + }, + { + "__struct_id": 289, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 12." + } + } + }, + { + "__struct_id": 290, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 11." + } + } + }, + { + "__struct_id": 291, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 10." + } + } + }, + { + "__struct_id": 292, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv09" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 9." + } + } + }, + { + "__struct_id": 293, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv08" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 8." + } + } + }, + { + "__struct_id": 294, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv07" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 7." + } + } + }, + { + "__struct_id": 295, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv06" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 6." + } + } + }, + { + "__struct_id": 296, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv05" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 5." + } + } + }, + { + "__struct_id": 297, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv04" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 4." + } + } + }, + { + "__struct_id": 298, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv03" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 3." + } + } + }, + { + "__struct_id": 299, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv02" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 2." + } + } + }, + { + "__struct_id": 300, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 1." + } + } + }, + { + "__struct_id": 301, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 302, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 303, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 1st level]" + } + } + }, + { + "__struct_id": 304, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 305, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort\n" + } + } + }, + { + "__struct_id": 306, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Recieve Power]" + } + } + }, + { + "__struct_id": 307, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 308, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 309, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 310, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 311, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 312, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 313, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 314, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 315, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 316, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 317, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 318, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 319, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 320, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 321, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 322, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 323, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 324, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_ammo" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 325, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 326, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 327, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 328, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 329, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Could you translate this parchment for me?" + } + } + }, + { + "__struct_id": 330, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I seek divine power so that I may face Lord Lucifer in a final battle." + } + } + }, + { + "__struct_id": 331, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_027" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I am ready to bow before my master, mighty Starfall." + } + } + }, + { + "__struct_id": 332, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 333, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 334, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 335, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 336, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 337, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 338, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 339, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 340, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 341, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 342, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 343, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 344, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 345, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 346, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 347, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 348, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 111 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 349, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_ammo" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 350, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 351, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 113 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 112 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 352, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 353, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 354, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 114 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_007" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel Challenge]" + } + } + }, + { + "__struct_id": 355, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 356, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 357, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_imposs" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hardcore]" + } + } + }, + { + "__struct_id": 358, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_vhard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Very Hard]" + } + } + }, + { + "__struct_id": 359, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hard]" + } + } + }, + { + "__struct_id": 360, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Medium]" + } + } + }, + { + "__struct_id": 361, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Easy]" + } + } + }, + { + "__struct_id": 362, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Game Options]" + } + } + }, + { + "__struct_id": 363, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 364, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 365, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 116 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Change to AOC Mode]" + } + } + }, + { + "__struct_id": 366, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 367, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 368, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 117 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 369, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 370, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "nt_remove" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 371, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 118 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Change to Australis Mode]" + } + } + }, + { + "__struct_id": 372, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 373, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "n_start" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 374, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_046" + }, + "Index": { + "type": "dword", + "value": 145 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Change to Campaign Manager Mode]" + } + } + }, + { + "__struct_id": 375, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 376, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 377, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "inv_open" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Let me drop a few items first" + } + } + }, + { + "__struct_id": 378, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 120 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Why?" + } + } + }, + { + "__struct_id": 379, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 380, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 121 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What happens if my player data objects are removed?" + } + } + }, + { + "__struct_id": 381, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 382, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 122 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is campaign manager mode?" + } + } + }, + { + "__struct_id": 383, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 123 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 384, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 124 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 385, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(end)" + } + } + }, + { + "__struct_id": 386, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 125 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Initiate Campaign Manager Mode]" + } + } + }, + { + "__struct_id": 387, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]\n" + } + } + }, + { + "__struct_id": 388, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 126 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mode_change" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 389, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 390, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Nevermind\n" + } + } + }, + { + "__struct_id": 391, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "start_a_merch2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acquire Arena Tokens]" + } + } + }, + { + "__struct_id": 392, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Items]" + } + } + }, + { + "__struct_id": 393, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 394, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 395, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 129 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Data Tokens]" + } + } + }, + { + "__struct_id": 396, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 397, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 398, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 130 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 399, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 400, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_data" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 401, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 131 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items and Gold]" + } + } + }, + { + "__struct_id": 402, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 132 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 403, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 404, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 405, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 133 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 406, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 407, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 408, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 134 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gold Only]" + } + } + }, + { + "__struct_id": 409, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 410, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "gold_purge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 411, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 135 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items Only]" + } + } + }, + { + "__struct_id": 412, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 413, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 414, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 136 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Both]" + } + } + }, + { + "__struct_id": 415, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 416, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 417, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 137 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Equipment Slots]" + } + } + }, + { + "__struct_id": 418, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 419, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_slot" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 420, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 138 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Inventory]" + } + } + }, + { + "__struct_id": 421, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 422, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 423, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "align_check" + }, + "Index": { + "type": "dword", + "value": 140 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 139 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Alignment change]" + } + } + }, + { + "__struct_id": 424, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 425, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ce" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Evil." + } + } + }, + { + "__struct_id": 426, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Neutral." + } + } + }, + { + "__struct_id": 427, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Good." + } + } + }, + { + "__struct_id": 428, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ne" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neutral Evil." + } + } + }, + { + "__struct_id": 429, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "True Neutral." + } + } + }, + { + "__struct_id": 430, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neutral Good." + } + } + }, + { + "__struct_id": 431, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "le" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Evil." + } + } + }, + { + "__struct_id": 432, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ln" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Neutral." + } + } + }, + { + "__struct_id": 433, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Good." + } + } + }, + { + "__struct_id": 434, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 435, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 436, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "delevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Take 1 level]" + } + } + }, + { + "__struct_id": 437, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "givelevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Add 1 level]" + } + } + }, + { + "__struct_id": 438, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 141 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set level]" + } + } + }, + { + "__struct_id": 439, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 440, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 40." + } + } + }, + { + "__struct_id": 441, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv39" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 39." + } + } + }, + { + "__struct_id": 442, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv38" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 38." + } + } + }, + { + "__struct_id": 443, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv37" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 37." + } + } + }, + { + "__struct_id": 444, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv36" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 36." + } + } + }, + { + "__struct_id": 445, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv35" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 35." + } + } + }, + { + "__struct_id": 446, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv34" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 34." + } + } + }, + { + "__struct_id": 447, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv33" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 33." + } + } + }, + { + "__struct_id": 448, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 32." + } + } + }, + { + "__struct_id": 449, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv31" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 31." + } + } + }, + { + "__struct_id": 450, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv30" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 30." + } + } + }, + { + "__struct_id": 451, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv29" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 29." + } + } + }, + { + "__struct_id": 452, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv28" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 28." + } + } + }, + { + "__struct_id": 453, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv27" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 27." + } + } + }, + { + "__struct_id": 454, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv26" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 26." + } + } + }, + { + "__struct_id": 455, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 25." + } + } + }, + { + "__struct_id": 456, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv24" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 24." + } + } + }, + { + "__struct_id": 457, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv23" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 23." + } + } + }, + { + "__struct_id": 458, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 22." + } + } + }, + { + "__struct_id": 459, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 21." + } + } + }, + { + "__struct_id": 460, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 20." + } + } + }, + { + "__struct_id": 461, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 19." + } + } + }, + { + "__struct_id": 462, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 18." + } + } + }, + { + "__struct_id": 463, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 17." + } + } + }, + { + "__struct_id": 464, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 16." + } + } + }, + { + "__struct_id": 465, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 15." + } + } + }, + { + "__struct_id": 466, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 14." + } + } + }, + { + "__struct_id": 467, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 13." + } + } + }, + { + "__struct_id": 468, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 12." + } + } + }, + { + "__struct_id": 469, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 11." + } + } + }, + { + "__struct_id": 470, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 10." + } + } + }, + { + "__struct_id": 471, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv09" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 9." + } + } + }, + { + "__struct_id": 472, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv08" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 8." + } + } + }, + { + "__struct_id": 473, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv07" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 7." + } + } + }, + { + "__struct_id": 474, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv06" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 6." + } + } + }, + { + "__struct_id": 475, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv05" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 5." + } + } + }, + { + "__struct_id": 476, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv04" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 4." + } + } + }, + { + "__struct_id": 477, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv03" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 3." + } + } + }, + { + "__struct_id": 478, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv02" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 2." + } + } + }, + { + "__struct_id": 479, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 142 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 1." + } + } + }, + { + "__struct_id": 480, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 481, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 482, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 143 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 1st level]" + } + } + }, + { + "__struct_id": 483, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 484, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 144 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 485, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 486, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 487, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_004" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 40th Level]" + } + } + }, + { + "__struct_id": 488, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 489, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 490, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 146 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[More Information]" + } + } + }, + { + "__struct_id": 491, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 492, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Player Score]" + } + } + }, + { + "__struct_id": 493, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 494, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 495, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 148 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All]" + } + } + }, + { + "__struct_id": 496, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 497, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_all_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 498, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 149 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hits/Damage]" + } + } + }, + { + "__struct_id": 499, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 500, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_hitdam" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 501, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 150 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kills/Deaths]" + } + } + }, + { + "__struct_id": 502, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 503, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 504, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 151 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Eye of Amaterasu]" + } + } + }, + { + "__struct_id": 505, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 506, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_eye" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 507, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 152 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Arena]" + } + } + }, + { + "__struct_id": 508, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 509, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_arena" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 510, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_ammo" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acquire Divine Ammunition]" + } + } + }, + { + "__struct_id": 511, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "start_a_merch" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purchase Arena Tokens]" + } + } + }, + { + "__struct_id": 512, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 153 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 513, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 514, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 515, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "set_40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 40th Level]" + } + } + }, + { + "__struct_id": 516, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_ammo2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acquire Malevolent Ammunition]" + } + } + }, + { + "__struct_id": 517, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "start_a_merch" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purchase Arena Tokens]" + } + } + }, + { + "__struct_id": 518, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 519, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "start_a_merch2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acquire Arena Tokens]" + } + } + }, + { + "__struct_id": 520, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Items]" + } + } + }, + { + "__struct_id": 521, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 522, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 523, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 156 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Data Tokens]" + } + } + }, + { + "__struct_id": 524, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 525, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 526, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 157 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 527, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 528, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_data" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 529, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 158 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items and Gold]" + } + } + }, + { + "__struct_id": 530, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 159 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 531, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 532, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 533, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 160 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 534, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 535, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 536, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 161 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gold Only]" + } + } + }, + { + "__struct_id": 537, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 538, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "gold_purge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 539, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 162 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items Only]" + } + } + }, + { + "__struct_id": 540, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 541, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 542, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 163 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Both]" + } + } + }, + { + "__struct_id": 543, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 544, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 545, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 164 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Equipment]" + } + } + }, + { + "__struct_id": 546, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 547, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_slot" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 548, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 165 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Inventory]" + } + } + }, + { + "__struct_id": 549, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 550, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 551, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "align_check" + }, + "Index": { + "type": "dword", + "value": 167 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 166 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Alignment change]" + } + } + }, + { + "__struct_id": 552, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 154 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 553, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ce" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Evil." + } + } + }, + { + "__struct_id": 554, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Neutral." + } + } + }, + { + "__struct_id": 555, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Good." + } + } + }, + { + "__struct_id": 556, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ne" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neutral Evil." + } + } + }, + { + "__struct_id": 557, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "True Neutral." + } + } + }, + { + "__struct_id": 558, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neutral Good." + } + } + }, + { + "__struct_id": 559, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "le" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Evil." + } + } + }, + { + "__struct_id": 560, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ln" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Neutral." + } + } + }, + { + "__struct_id": 561, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Good." + } + } + }, + { + "__struct_id": 562, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 563, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 154 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 564, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "delevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Take 1 level]" + } + } + }, + { + "__struct_id": 565, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "givelevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Add 1 level]" + } + } + }, + { + "__struct_id": 566, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 168 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set level]" + } + } + }, + { + "__struct_id": 567, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 568, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 40." + } + } + }, + { + "__struct_id": 569, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv39" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 39." + } + } + }, + { + "__struct_id": 570, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv38" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 38." + } + } + }, + { + "__struct_id": 571, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv37" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 37." + } + } + }, + { + "__struct_id": 572, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv36" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 36." + } + } + }, + { + "__struct_id": 573, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv35" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 35." + } + } + }, + { + "__struct_id": 574, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv34" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 34." + } + } + }, + { + "__struct_id": 575, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv33" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 33." + } + } + }, + { + "__struct_id": 576, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 32." + } + } + }, + { + "__struct_id": 577, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv31" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 31." + } + } + }, + { + "__struct_id": 578, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv30" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 30." + } + } + }, + { + "__struct_id": 579, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv29" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 29." + } + } + }, + { + "__struct_id": 580, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv28" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 28." + } + } + }, + { + "__struct_id": 581, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv27" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 27." + } + } + }, + { + "__struct_id": 582, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv26" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 26." + } + } + }, + { + "__struct_id": 583, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 25." + } + } + }, + { + "__struct_id": 584, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv24" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 24." + } + } + }, + { + "__struct_id": 585, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv23" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 23." + } + } + }, + { + "__struct_id": 586, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 22." + } + } + }, + { + "__struct_id": 587, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 21." + } + } + }, + { + "__struct_id": 588, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 20." + } + } + }, + { + "__struct_id": 589, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 19." + } + } + }, + { + "__struct_id": 590, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 18." + } + } + }, + { + "__struct_id": 591, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 17." + } + } + }, + { + "__struct_id": 592, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 16." + } + } + }, + { + "__struct_id": 593, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 15." + } + } + }, + { + "__struct_id": 594, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 14." + } + } + }, + { + "__struct_id": 595, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 13." + } + } + }, + { + "__struct_id": 596, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 12." + } + } + }, + { + "__struct_id": 597, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 11." + } + } + }, + { + "__struct_id": 598, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 10." + } + } + }, + { + "__struct_id": 599, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv09" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 9." + } + } + }, + { + "__struct_id": 600, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv08" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 8." + } + } + }, + { + "__struct_id": 601, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv07" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 7." + } + } + }, + { + "__struct_id": 602, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv06" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 6." + } + } + }, + { + "__struct_id": 603, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv05" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 5." + } + } + }, + { + "__struct_id": 604, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv04" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 4." + } + } + }, + { + "__struct_id": 605, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv03" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 3." + } + } + }, + { + "__struct_id": 606, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv02" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 2." + } + } + }, + { + "__struct_id": 607, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 169 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 1." + } + } + }, + { + "__struct_id": 608, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 609, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 610, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 170 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 1st level]" + } + } + }, + { + "__struct_id": 611, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 154 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 612, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 171 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 613, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 614, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 154 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 615, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_004" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 40th Level]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 154 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/angel4.dlg.json b/_module/dlg/angel4.dlg.json new file mode 100644 index 0000000..7c6d259 --- /dev/null +++ b/_module/dlg/angel4.dlg.json @@ -0,0 +1,25785 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "mc_facing" + }, + "EndConversation": { + "type": "resref", + "value": "mc_facing" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 212 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_030" + }, + "Index": { + "type": "dword", + "value": 211 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_032" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "divine_ready1" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_033" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is your wish?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You need to have your weapon readied for this." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The almighty one has deemed you worthy." + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ahh. The Divine Parchment! The inscriptions claim to grant the bearer audience with the Divine One." + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I'm sure the Divine one will consider your request, however, you must demonstrate your piety before he will grant you such power." + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You need to have your weapon readied for this." + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please make a donation to the almighty one." + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your gesture has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_200k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The almighty one has deemed you worthy." + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 100000gp" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "take_10k" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your donation has been recieved. Prepare for judgement." + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have the 10000gp" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_032a" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I accept your challenge! Please choose a level of difficulty." + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_055" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select option." + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will remove your Australis token and reset the arena. " + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the Australis token from your inventory and restart your AOC game. Are you sure?" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will dispossess you of all gold and items and initiate a special mode that changes the arena items to those available on the Australis DoD server.\n\nProceed?" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option switches to Campaign Manager Mode. This is irreversable, your inventory will be purged and you will be unable to compete in the arena." + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Campaign manager mode gives you access to unlimited gold and almost every item in the three campaigns. Such wealth would throw out the balance of the game in terms of not having to properly 'work' for your upgrades. This would greatly spoil the fun of the Arena challenges. " + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "If you export your character and return to the arena, you will no longer hold the rank you had, monsters will no longer be unlocked and you will be stripped of all items and gold." + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Campaign manager mode allows access to the warehouse and the smith's house. The smith will imbue your weapon with certain campaign-specific properties. " + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The warehouse holds every item imaginable from the campaigns and a chest filled with unlimited gold for your taking." + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finally, the chain near the great library allows you to insert your character at any chapter in all three campaigns." + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm." + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Campaign Manager Mode - [Initiated]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You can't initiate campaign manager mode during a multiplayer session. " + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hint] You may initiate this mode when there is [one player only] in the arena. If you wish to conduct a multiplayer campaign manager mode session, have the first player initiate the mode before the others join. When campaign manager mode is set, other players may join at their leisure. This is to safeguard against disruptive behaviour during multiplayer session." + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to reset?" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills, deaths, hits and damage score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] Once you reset this score it is gone forever. Proceed?" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills and deaths score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset the module. All upgrade options will be reset their oroginal values. Your progress in the arena will be retained. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset all of your progress and stats in the arena. This includes your kills, deaths, damage, hits, rank, defeated opponents and completed challenges. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 210 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 205 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_054" + }, + "Index": { + "type": "dword", + "value": 161 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 160 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 159 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 145 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 144 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 111 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select option." + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 132 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 129 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 120 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_031" + }, + "Index": { + "type": "dword", + "value": 114 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 113 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 112 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to purge?" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 117 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 116 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This is an advanced users option. It will remove all of the data tokens from your character. The next time you enter, you will be stripped of all gold and equipment and issued with 6 new data tokens. This is a useful oprtion for starting again from scratch. " + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 118 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the data tokens from your inventory. Are you sure?" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 126 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 123 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 122 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 121 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Purge equipment slots too?" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 125 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 124 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and inventory only]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and all possessions]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 131 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 130 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold]" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 141 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 138 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 135 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 134 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 133 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which Items?" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 137 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 136 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory and equipment slots]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 140 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 139 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge equipment slots only]" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 143 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 142 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory only]" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 156 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 154 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 153 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 152 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 151 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 150 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 149 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 148 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 146 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired alignment.]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 158 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 157 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option is now locked because you have already defeated a challenger. This is an anti-exploit system." + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 202 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 201 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 200 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 199 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 198 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 197 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 196 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 195 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 194 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 193 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 192 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 191 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 190 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 189 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 188 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 187 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 186 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 185 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 184 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 183 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 182 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 181 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 180 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 179 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 178 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 177 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 176 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 175 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 28, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 174 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 29, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 173 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 30, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 172 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 31, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 171 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 32, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 170 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 33, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 169 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 34, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 168 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 35, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 167 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 36, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 166 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 37, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 165 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 38, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 164 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 39, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 163 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 40, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 162 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired level.]" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 204 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 203 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 207 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 206 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 209 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 208 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 310 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 305 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 261 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 260 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 259 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 246 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 215 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 214 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 213 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "vs_nnwgrdm2_yes" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is your wish?" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 234 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 231 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 224 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 218 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 217 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 216 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to purge?" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 221 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 220 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 219 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This is an advanced users option. It will remove all of the data tokens from your character. The next time you enter, you will be stripped of all gold and equipment and issued with 6 new data tokens. This is a useful oprtion for starting again from scratch. " + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 223 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 222 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the data tokens from your inventory. Are you sure?" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 228 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 225 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Purge equipment slots too?" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 227 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 226 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and inventory only]" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 230 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 229 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and all possessions]" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 233 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 232 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold]" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 243 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 240 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 237 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 236 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 235 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which Items?" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 239 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 238 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory and equipment slots]" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 242 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 241 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge equipment slots only]" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 245 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 244 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory only]" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 256 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 255 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 254 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 253 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 252 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 251 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 250 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 249 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 248 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 247 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired alignment.]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 258 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 257 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option is now locked because you have already defeated a challenger. This is an anti-exploit system." + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 302 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 301 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 300 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 299 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 298 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 297 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 296 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 295 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 294 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 293 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 292 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 291 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 290 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 289 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 288 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 287 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 286 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 285 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 284 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 283 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 282 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 281 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 280 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 279 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 278 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 277 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 276 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 275 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 28, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 274 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 29, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 273 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 30, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 272 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 31, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 271 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 32, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 270 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 33, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 269 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 34, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 268 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 35, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 267 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 36, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 266 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 37, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 265 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 38, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 264 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 39, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 263 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 40, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 262 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired level.]" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 304 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 303 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 307 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 306 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 309 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 308 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 1562 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort\n" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Recieve Power]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_ammo" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Could you translate this parchment for me?" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I seek divine power so that I may face Lord Lucifer in a final battle." + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_027" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I am ready to bow before my master, mighty Starfall." + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "weap_check" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my heart and soul [Give nothing]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_200k" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my wealth and power [Give 100000gp]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_ammo" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "musthave_10k" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I offer my loyalty and a small donation [Give 10000gp]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "god_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bow_check" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_007" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel Challenge]" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_imposs" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hardcore]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_vhard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Very Hard]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hard]" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Medium]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "duel_time_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Easy]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Game Options]" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Change to AOC Mode]" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "nt_remove" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Change to Australis Mode]" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "n_start" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_046" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Change to Campaign Manager Mode]" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "inv_open" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Let me drop a few items first" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Why?" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What happens if my player data objects are removed?" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is campaign manager mode?" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(end)" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Initiate Campaign Manager Mode]" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]\n" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mode_change" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[More Information]" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Player Score]" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All]" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_all_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hits/Damage]" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_hitdam" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kills/Deaths]" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Eye of Amaterasu]" + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_eye" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Arena]" + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_arena" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Character Options]" + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "inv_open" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Open Inventory]" + } + } + }, + { + "__struct_id": 111, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Items]" + } + } + }, + { + "__struct_id": 112, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 113, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 114, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Data Tokens]" + } + } + }, + { + "__struct_id": 115, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 116, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 117, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 118, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 119, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_data" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 120, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items and Gold]" + } + } + }, + { + "__struct_id": 121, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 122, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 123, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 124, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 125, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 126, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 127, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 128, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 129, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gold Only]" + } + } + }, + { + "__struct_id": 130, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 131, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "gold_purge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 132, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items Only]" + } + } + }, + { + "__struct_id": 133, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 134, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 135, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Both]" + } + } + }, + { + "__struct_id": 136, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 137, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 138, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Equipment Slots]" + } + } + }, + { + "__struct_id": 139, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 140, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_slot" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 141, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Inventory]" + } + } + }, + { + "__struct_id": 142, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 143, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 144, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sf_score" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Display Score]" + } + } + }, + { + "__struct_id": 145, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "align_check" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Alignment change]" + } + } + }, + { + "__struct_id": 146, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 147, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 148, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ce" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Chaotic Evil]" + } + } + }, + { + "__struct_id": 149, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Chaotic Neutral]" + } + } + }, + { + "__struct_id": 150, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Chaotic Good]" + } + } + }, + { + "__struct_id": 151, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ne" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Neutral Evil]" + } + } + }, + { + "__struct_id": 152, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[True Neutral]" + } + } + }, + { + "__struct_id": 153, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Neutral Good]" + } + } + }, + { + "__struct_id": 154, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "le" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lawful Evil]" + } + } + }, + { + "__struct_id": 155, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ln" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lawful Neutral]" + } + } + }, + { + "__struct_id": 156, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lawful Good]" + } + } + }, + { + "__struct_id": 157, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 158, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 159, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "delevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Take 1 level]" + } + } + }, + { + "__struct_id": 160, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "givelevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Add 1 level]" + } + } + }, + { + "__struct_id": 161, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set level]" + } + } + }, + { + "__struct_id": 162, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 163, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 40." + } + } + }, + { + "__struct_id": 164, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv39" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 39." + } + } + }, + { + "__struct_id": 165, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv38" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 38." + } + } + }, + { + "__struct_id": 166, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv37" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 37." + } + } + }, + { + "__struct_id": 167, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv36" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 36." + } + } + }, + { + "__struct_id": 168, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv35" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 35." + } + } + }, + { + "__struct_id": 169, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv34" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 34." + } + } + }, + { + "__struct_id": 170, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv33" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 33." + } + } + }, + { + "__struct_id": 171, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 32." + } + } + }, + { + "__struct_id": 172, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv31" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 31." + } + } + }, + { + "__struct_id": 173, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv30" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 30." + } + } + }, + { + "__struct_id": 174, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv29" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 29." + } + } + }, + { + "__struct_id": 175, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv28" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 28." + } + } + }, + { + "__struct_id": 176, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv27" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 27." + } + } + }, + { + "__struct_id": 177, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv26" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 26." + } + } + }, + { + "__struct_id": 178, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 25." + } + } + }, + { + "__struct_id": 179, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv24" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 24." + } + } + }, + { + "__struct_id": 180, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv23" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 23." + } + } + }, + { + "__struct_id": 181, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 22." + } + } + }, + { + "__struct_id": 182, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 21." + } + } + }, + { + "__struct_id": 183, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 20." + } + } + }, + { + "__struct_id": 184, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 19." + } + } + }, + { + "__struct_id": 185, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 18." + } + } + }, + { + "__struct_id": 186, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 17." + } + } + }, + { + "__struct_id": 187, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 16." + } + } + }, + { + "__struct_id": 188, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 15." + } + } + }, + { + "__struct_id": 189, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 14." + } + } + }, + { + "__struct_id": 190, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 13." + } + } + }, + { + "__struct_id": 191, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 12." + } + } + }, + { + "__struct_id": 192, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 11." + } + } + }, + { + "__struct_id": 193, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 10." + } + } + }, + { + "__struct_id": 194, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv09" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 9." + } + } + }, + { + "__struct_id": 195, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv08" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 8." + } + } + }, + { + "__struct_id": 196, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv07" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 7." + } + } + }, + { + "__struct_id": 197, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv06" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 6." + } + } + }, + { + "__struct_id": 198, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv05" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 5." + } + } + }, + { + "__struct_id": 199, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv04" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 4." + } + } + }, + { + "__struct_id": 200, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv03" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 3." + } + } + }, + { + "__struct_id": 201, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv02" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 2." + } + } + }, + { + "__struct_id": 202, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 1." + } + } + }, + { + "__struct_id": 203, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 204, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 205, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 1st level]" + } + } + }, + { + "__struct_id": 206, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 207, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 208, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 209, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 210, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "set_40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 40th Level]" + } + } + }, + { + "__struct_id": 211, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_ammo" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acquire Divine Ammunition]" + } + } + }, + { + "__struct_id": 212, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "start_a_merch" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purchase Arena Tokens]" + } + } + }, + { + "__struct_id": 213, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Nevermind\n" + } + } + }, + { + "__struct_id": 214, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "start_a_merch2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acquire Arena Tokens]" + } + } + }, + { + "__struct_id": 215, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Items]" + } + } + }, + { + "__struct_id": 216, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 217, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 218, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Data Tokens]" + } + } + }, + { + "__struct_id": 219, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 220, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 221, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 222, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 223, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_data" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 224, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items and Gold]" + } + } + }, + { + "__struct_id": 225, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 226, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 227, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 228, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 229, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 230, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 231, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gold Only]" + } + } + }, + { + "__struct_id": 232, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 233, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "gold_purge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 234, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items Only]" + } + } + }, + { + "__struct_id": 235, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 236, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 237, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Both]" + } + } + }, + { + "__struct_id": 238, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 239, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 240, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Equipment Slots]" + } + } + }, + { + "__struct_id": 241, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 242, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_slot" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 243, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Inventory]" + } + } + }, + { + "__struct_id": 244, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 245, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 246, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "align_check" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Alignment change]" + } + } + }, + { + "__struct_id": 247, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 248, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ce" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Evil." + } + } + }, + { + "__struct_id": 249, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Neutral." + } + } + }, + { + "__struct_id": 250, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Good." + } + } + }, + { + "__struct_id": 251, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ne" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neutral Evil." + } + } + }, + { + "__struct_id": 252, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "True Neutral." + } + } + }, + { + "__struct_id": 253, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neutral Good." + } + } + }, + { + "__struct_id": 254, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "le" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Evil." + } + } + }, + { + "__struct_id": 255, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ln" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Neutral." + } + } + }, + { + "__struct_id": 256, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Good." + } + } + }, + { + "__struct_id": 257, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 258, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 259, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "delevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Take 1 level]" + } + } + }, + { + "__struct_id": 260, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "givelevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Add 1 level]" + } + } + }, + { + "__struct_id": 261, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set level]" + } + } + }, + { + "__struct_id": 262, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 263, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 40." + } + } + }, + { + "__struct_id": 264, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv39" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 39." + } + } + }, + { + "__struct_id": 265, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv38" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 38." + } + } + }, + { + "__struct_id": 266, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv37" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 37." + } + } + }, + { + "__struct_id": 267, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv36" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 36." + } + } + }, + { + "__struct_id": 268, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv35" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 35." + } + } + }, + { + "__struct_id": 269, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv34" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 34." + } + } + }, + { + "__struct_id": 270, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv33" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 33." + } + } + }, + { + "__struct_id": 271, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 32." + } + } + }, + { + "__struct_id": 272, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv31" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 31." + } + } + }, + { + "__struct_id": 273, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv30" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 30." + } + } + }, + { + "__struct_id": 274, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv29" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 29." + } + } + }, + { + "__struct_id": 275, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv28" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 28." + } + } + }, + { + "__struct_id": 276, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv27" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 27." + } + } + }, + { + "__struct_id": 277, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv26" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 26." + } + } + }, + { + "__struct_id": 278, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 25." + } + } + }, + { + "__struct_id": 279, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv24" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 24." + } + } + }, + { + "__struct_id": 280, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv23" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 23." + } + } + }, + { + "__struct_id": 281, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 22." + } + } + }, + { + "__struct_id": 282, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 21." + } + } + }, + { + "__struct_id": 283, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 20." + } + } + }, + { + "__struct_id": 284, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 19." + } + } + }, + { + "__struct_id": 285, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 18." + } + } + }, + { + "__struct_id": 286, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 17." + } + } + }, + { + "__struct_id": 287, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 16." + } + } + }, + { + "__struct_id": 288, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 15." + } + } + }, + { + "__struct_id": 289, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 14." + } + } + }, + { + "__struct_id": 290, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 13." + } + } + }, + { + "__struct_id": 291, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 12." + } + } + }, + { + "__struct_id": 292, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 11." + } + } + }, + { + "__struct_id": 293, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 10." + } + } + }, + { + "__struct_id": 294, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv09" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 9." + } + } + }, + { + "__struct_id": 295, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv08" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 8." + } + } + }, + { + "__struct_id": 296, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv07" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 7." + } + } + }, + { + "__struct_id": 297, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv06" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 6." + } + } + }, + { + "__struct_id": 298, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv05" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 5." + } + } + }, + { + "__struct_id": 299, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv04" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 4." + } + } + }, + { + "__struct_id": 300, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv03" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 3." + } + } + }, + { + "__struct_id": 301, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv02" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 2." + } + } + }, + { + "__struct_id": 302, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 1." + } + } + }, + { + "__struct_id": 303, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 304, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 305, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 1st level]" + } + } + }, + { + "__struct_id": 306, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 307, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 308, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 309, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 310, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_004" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 40th Level]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 68 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/armour.dlg.json b/_module/dlg/armour.dlg.json new file mode 100644 index 0000000..78b80e8 --- /dev/null +++ b/_module/dlg/armour.dlg.json @@ -0,0 +1,6831 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "accmax_reached" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "accmax_reached2" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "class_check_arc" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your armour?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "blmax_reached1" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "blmax_reached" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "pr_max_reached1" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "pr_max_reached" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "slmax_limit1" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "slmax_limit" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose damage resistance type?" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sldone_1" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "slred_0" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "slred_1" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "slred1_1" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "slred_2" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "slred_3" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "slred_4" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "slred_6" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "slred_7" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "slred_8" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "slred_9" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "slred_10" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "slred_11" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "slred_12" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment?" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "prdone_1" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "prred_0" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "prred_1" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "prred1_1" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "prred_2" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "prred_3" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "prred_4" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "prred_6" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "prred_7" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "prred_8" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "prred_9" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "prred_10" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "prred_11" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "prred_12" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment?" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bdone_1" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "bred_0" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "bred_1" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "blred1_1" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "blred_2" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "blred_3" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "blred_4" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "blred_6" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "blred_7" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "blred_8" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "blred_9" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "blred_10" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "blred_11" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "blred_12" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "palorcler" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose a feat" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "accdone_1" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "accred_0" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "acced_1" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "accred1_1" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "accred_2" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "accred_3" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "accred_4" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "accred_6" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose ability type" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 314 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "umd_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Use Magic Device]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tumb_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tumble]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "taunt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Taunt]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spell_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spellcraft]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "perf_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Perform]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "silent_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Move Silently]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "hide_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hide]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "heal_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heal]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "disc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Discipline]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "conc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Concentration]" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "evade_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Evasion]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Resistence]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sldred_imbue_51" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance V]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance V]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sldred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance IV]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance IV]" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sldred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance III]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance III]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sldred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance II]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance II]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sldred_imbue_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance I]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "prdred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance V]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance V]" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "prdred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance IV]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance IV]" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "prdred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance III]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance III]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "prdred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance II]" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance II]" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "prdred_imbue_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance I]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeoning Damage *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeoning Damage]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V]" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV]" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III]" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance II]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance II]" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bl_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I]" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Feat]" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ccast_imbue2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Extra Turning]" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ccast_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Combat Casting]" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus]" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "accdred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III]" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III]" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III] *** DONE ***" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "accdred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus II]" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus II]" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I|] *** DONE ***" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acc_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I]" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I] *** DONE ***" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ability Bonus]" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "con_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Constitution]" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dex_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dexterity]" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "str_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Strength]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/armour_silver.dlg.json b/_module/dlg/armour_silver.dlg.json new file mode 100644 index 0000000..cc7b1ca --- /dev/null +++ b/_module/dlg/armour_silver.dlg.json @@ -0,0 +1,1826 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_021" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_020" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_af" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_af2b" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like to imbue your armour?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "done_1" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "red_0" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "red_1" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "red1_1" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "red_2" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "red_3" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "red_4" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "red_6" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "red_7" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "red_8" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "red_9" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "red_10" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "red_11" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "red_12" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select damage reduction treatment?" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You already have the maximum damage reduction treatment!" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 104 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "asf_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Arcane Spell Failure]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Arcane Spell Failure *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "crit_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Immunity Critical Hits]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Immunity Critical Hits *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "max_reduction" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction V]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction V]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction V] *** DONE ***" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction IV]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction IV]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction IV] *** DONE ***" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction III]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction III]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction III] *** DONE ***" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction II]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction II]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction I|] *** DONE ***" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction I]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction I] *** DONE ***" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/ats_c_trash.dlg.json b/_module/dlg/ats_c_trash.dlg.json new file mode 100644 index 0000000..6d07c6f --- /dev/null +++ b/_module/dlg/ats_c_trash.dlg.json @@ -0,0 +1,207 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "" + }, + "EndConversation": { + "type": "resref", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Are you sure you wish to destroy this trash?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 25 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "No, I've changed my mind. I don't know what came over me." + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ats_at_trash_yes" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Yes! It's junk anyways!" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/belt.dlg.json b/_module/dlg/belt.dlg.json new file mode 100644 index 0000000..5ba4bb3 --- /dev/null +++ b/_module/dlg/belt.dlg.json @@ -0,0 +1,7654 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your belt?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "shield_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "shield_check" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose immunity type" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "dvmax_reached1" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "dvmax_reached" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "ngmax_damred1" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "ngmax_damred" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "pomax_reached1" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "pomax_reached" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose damage resistance type?" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your cloak?" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "podone_1" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "pored_0" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "poed_1" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "pored1_1" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "pored_2" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "pored_3" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "pored_4" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "pored_6" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "pored_7" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "pored_8" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "pored_9" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "pored_10" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "pored_11" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "pored_12" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "ngdone_1" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "ngred_0" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "nged_1" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "ngred1_1" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "ngred_2" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "ngred_3" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "ngred_4" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "ngred_6" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "ngred_7" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "ngred_8" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "ngred_9" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "ngred_10" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "ngred_11" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "ngred_12" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "dvdone_1" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "dvred_0" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "dved_1" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "dved1_1" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "dvred_2" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "dvred_3" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "dvred_4" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "dvred_6" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "dvred_7" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "dvred_8" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "dvred_9" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "dvred_10" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "dvred_11" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "dvred_12" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose spell class" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose ability type" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 320 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do nothing" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "umd_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Use Magic Device]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tumb_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tumble]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "taunt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Taunt]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spot]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spell_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spellcraft]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "search_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Search]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "perf_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Perform]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "parry_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Parry]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "silent_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Move Silently]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "hide_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hide]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "heal_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heal]" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "disc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Discipline]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "conc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Concentration]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Immunity Bonus]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "kd_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Knockdown]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "par_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Paralysis]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pois_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Poison]" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ld_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Level Drain]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "death_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Death Magic]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mind_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mind Spells]" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Resistence]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tumb_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tumble]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spell_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spellcraft]" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "perf_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Perform]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "silent_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Move Silently]" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "hide_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hide]" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "invis_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Invisability (2/day)]" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "evade_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Evasion]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ac_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "podred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance V]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance V]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "podred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance IV]" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance IV]" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "podred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance III]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance III]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "podred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance II]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance II]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "po_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance I]" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage]" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ngdred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance V]" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance V]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ngdred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance IV]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance IV]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ngdred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance III]" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance III]" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ngdred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance II]" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance II]" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance I]" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage]" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dvdred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance V]" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance V]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dvdred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance IV]" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance IV]" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dvdred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance III]" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance III]" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dvdred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance II]" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance II]" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dv_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance I]" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Spell Slot]" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wiz_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wizard]" + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sorc_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sorcerer]" + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pally_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Paladin]" + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "druid_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Druid]" + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cler_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cleric]" + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bard_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bard]" + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ability Bonus]" + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "con_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Constitution]" + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dex_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dexterity]" + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "str_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Strength]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/boots.dlg.json b/_module/dlg/boots.dlg.json new file mode 100644 index 0000000..53b69ec --- /dev/null +++ b/_module/dlg/boots.dlg.json @@ -0,0 +1,3605 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "bttmax_reached" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "bttmax_reached2" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your boots?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose a feat" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bttdone_1" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "bttred_0" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "btted_1" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "bttred1_1" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "bttred_2" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "bttred_3" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "bttred_4" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "bttred_6" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bdone_1" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "bred_0" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "bred_1" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "blred1_1" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "blred_2" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "blred_3" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "blred_4" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "blred_6" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "blred_7" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "blred_8" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "blred_9" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "blred_10" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "blred_11" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "blred_12" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose ability type" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 154 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do nothing" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tumb_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tumble]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "taunt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Taunt]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "search_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Search]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "perf_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Perform]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "parry_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Parry]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "silent_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Move Silently]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "hide_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hide]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "speed_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Haste]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "free_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Freedom of Movement]" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Feat]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dodge_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dodge]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bttdred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III]" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III] *** DONE ***" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bttdred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus II]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus II]" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I|] *** DONE ***" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "btt_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I]" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I] *** DONE ***" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV]" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III]" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance II]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance II]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bl_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ability Bonus]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dex_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dexterity]" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "str_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Strength]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/bow.dlg.json b/_module/dlg/bow.dlg.json new file mode 100644 index 0000000..f83d76e --- /dev/null +++ b/_module/dlg/bow.dlg.json @@ -0,0 +1,985 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "rangeff1" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "rangeff12" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "fire_lbd1mc" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "fire_lbd1mcmc" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your Bow?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "r_ab1" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "r_ab1t1" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "r_ab122" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "r_ab1222" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "r_ab13" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "r_ab1333" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 60 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Massive Criticals] *** UPGRADED ***" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mass_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Massive Criticals]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus III] *** DONE ***" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "rab2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus III]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus II] *** DONE ***" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "rab12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus II]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus I] *** DONE ***" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "rab1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus I]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/bow2.dlg.json b/_module/dlg/bow2.dlg.json new file mode 100644 index 0000000..5998722 --- /dev/null +++ b/_module/dlg/bow2.dlg.json @@ -0,0 +1,985 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "rangeff1" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "rangeff12" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "fire_lbd1mc" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "fire_lbd1mcmc" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your Crossbow?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "r_ab1" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "r_ab1t1" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "r_ab122" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "r_ab1222" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "r_ab13" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "r_ab1333" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 60 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Massive Criticals] *** UPGRADED ***" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mass_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Massive Criticals]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus III] *** DONE ***" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "rab2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus III]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus II] *** DONE ***" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "rab12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus II]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus I] *** DONE ***" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "rab1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus I]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/bow3.dlg.json b/_module/dlg/bow3.dlg.json new file mode 100644 index 0000000..ef051de --- /dev/null +++ b/_module/dlg/bow3.dlg.json @@ -0,0 +1,929 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mc_not2" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "mc_not" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like to imbue your Bow?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mcngdone_12" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "mcngred_02" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "mcnged_12" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "mcngred1_12" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "ngred_22mc" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "mcngred_32" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "mcngred_42" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "ngred_62mc" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 56 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Massive Criticals]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mcgdred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals III]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals III]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals III] *** DONE ***" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mngdred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals II]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals II]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals I|] *** DONE ***" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mcng_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals I]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals I] *** DONE ***" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Massive Criticals] *** FULLY UPGRADED ***" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/bow4.dlg.json b/_module/dlg/bow4.dlg.json new file mode 100644 index 0000000..b0ea054 --- /dev/null +++ b/_module/dlg/bow4.dlg.json @@ -0,0 +1,929 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mc_not2" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "mc_not" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like to imbue your Crossow?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mcngdone_12" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "mcngred_02" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "mcnged_12" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "mcngred1_12" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "ngred_22mc" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "mcngred_32" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "mcngred_42" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "ngred_62mc" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 56 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Massive Criticals]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mcgdred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals III]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals III]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals III] *** DONE ***" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mngdred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals II]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals II]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals I|] *** DONE ***" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mcng_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals I]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals I] *** DONE ***" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Massive Criticals] *** FULLY UPGRADED ***" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/bracers.dlg.json b/_module/dlg/bracers.dlg.json new file mode 100644 index 0000000..7e9b8e2 --- /dev/null +++ b/_module/dlg/bracers.dlg.json @@ -0,0 +1,4211 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your bracers?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose damage resistance type?" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your armour?" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose ability type" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose a feat" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose profcicency type" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose ability type" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your amulet?" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose spell class" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 144 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do nothing" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tstrike_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[True Strike (5/day)]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "taunt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Taunt]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spell_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spellcraft]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "perf_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Perform]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "parry_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Parry]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "heal_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heal]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Resistence]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do nothing" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "evade_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Evasion]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ac_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ability Bonus]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "con_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Constitution]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dex_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dexterity]" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "str_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Strength]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pier_imbue_arm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "slash_imbue_arm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage]" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "blud_imbue_arm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeoning Damage]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_imbue_arm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sonic_imbue_arm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage]" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pos_imbue_arm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "neg_imbue_arm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage]" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acid_imbue_arm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "elec_imbue_arm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cold_imbue_arm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fire_imbue_arm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Feat]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Weapon Proficiency]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wpe_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exotic]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wpm_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Martial]" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wfin_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Weapon Finesse]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "2weapfig_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Two-weapon Fighting]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "amby_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ambidexterity]" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bracer_ac" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ability Bonus]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do nothing" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "invis_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Epic Spell: Greater Ruin]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Spell Slot]" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wiz_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wizard]" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sorc_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sorcerer]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pally_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Paladin]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "druid_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Druid]" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cler_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cleric]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bard_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bard]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ac_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus]" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cha_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Charisma]" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "int_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Intelligence]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dex_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dexterity]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/celestialm.dlg.json b/_module/dlg/celestialm.dlg.json new file mode 100644 index 0000000..1cbc80c --- /dev/null +++ b/_module/dlg/celestialm.dlg.json @@ -0,0 +1,1364 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "Celestial" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Welcome, brave . What will it be?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "Celestial" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "That will be 1000gp" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "Celestial" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You can't afford the 1000gp fee." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "Celestial" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "That will be 1000gp" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "Celestial" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You can't afford the 1000gp fee." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "Celestial" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "That will be 500gp" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "Celestial" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You can't afford the 500gp fee." + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 96 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Nothing right now." + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "ifless1000gp" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I need protection from magic." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Forget it." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "castgspellmantle" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Sure here is the gold." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "ifless1000gp" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I would like my armour enchanted." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Forget it." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "castshadshield" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Sure here is the gold." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "ifless500gp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I would like my weapon blessed." + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Forget it." + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "castgmweapon" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Sure here is the gold." + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "castgrestoration" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I need my soul cleansed." + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "castheal" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I am in need of healing." + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "a_celmerch" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I would like to buy some supplies." + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/changer.dlg.json b/_module/dlg/changer.dlg.json new file mode 100644 index 0000000..69d888f --- /dev/null +++ b/_module/dlg/changer.dlg.json @@ -0,0 +1,8401 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is your wish, mortal?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Examine me for all of the possible appearance codes.]\n\n[Start with the hundreds digit here.]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "clear_app" + }, + "Sound": { + "type": "resref", + "value": "c_slaadpow_slct" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[This friendly old Slaad offers several services.]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired alignment.]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 28, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 29, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 30, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 31, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 32, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 33, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 34, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 35, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 36, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 37, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 38, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 39, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 40, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired level.]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[IMPORTANT. Decreasing your experience level can potentially harm hitpoint calculations, rendering your character \"illegal\" and restricting it from joining many games. It doesn't generally happen, but be sure to back up your character before continuing.]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_lo" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "app1000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[[IMPORTANT:] Do not attempt to enter a non-CEP module using a CEP-exclusive appearance.]\n\n[Refer to the three wall scrolls for your appearance number. Start with the hundreds digit.]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Now give the tens digit.]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Now give the ones digit.]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "invalid" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[You've selected . Confirm?]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "shapechange" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change initiated]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Invalid number... you'll have to examine me again to find a good one.]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 322 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I want an appearance change." + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exit]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I want an alignment change." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ce" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Chaotic Evil." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Chaotic Neutral." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Chaotic Good." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ne" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Neutral Evil." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me True Neutral." + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Neutral Good." + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "le" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Lawful Evil." + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ln" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Lawful Neutral." + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Lawful Good." + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Instant experience levels." + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 40." + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv39" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 39." + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv38" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 38." + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv37" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 37." + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv36" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 36." + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv35" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 35." + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv34" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 34." + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv33" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 33." + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 32." + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv31" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 31." + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv30" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 30." + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv29" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 29." + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv28" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 28." + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv27" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 27." + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv26" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 26." + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 25." + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv24" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 24." + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv23" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 23." + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 22." + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 21." + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 20." + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 19." + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 18." + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 17." + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 16." + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 15." + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 14." + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 13." + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 12." + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 11." + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 10." + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv09" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 9." + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv08" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 8." + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv07" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 7." + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv06" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 6." + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv05" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 5." + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv04" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 4." + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv03" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 3." + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv02" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 2." + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 1." + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Go Back." + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Continue." + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I want a CEP-exclusive appearance." + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fifteen hundred..." + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fourteen hundred..." + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thirteen hundred..." + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Twelve hundred..." + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Eleven hundred..." + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "One thousand..." + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Four hundred and..." + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Three hundred and..." + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Two hundred and..." + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "One hundred and..." + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "No hundreds and..." + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ninety..." + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Eighty..." + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Seventy..." + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Sixty..." + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fifty..." + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fourty..." + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thirty..." + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Twenty..." + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "One ten and..." + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "No tens and..." + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Nine." + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Eight." + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Seven." + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Six." + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Five." + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Four." + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Three." + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Two." + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "One." + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Zero." + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "No." + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "invalid_app" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Yes." + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/cloak.dlg.json b/_module/dlg/cloak.dlg.json new file mode 100644 index 0000000..0cd0ef7 --- /dev/null +++ b/_module/dlg/cloak.dlg.json @@ -0,0 +1,4913 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your cloak?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "acmax_reached1" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "acmax_reached" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "comax_damred1" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "comax_damred" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "fimax_reached1" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "fimax_reached" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose damage resistance type?" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "fidone_1" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "fired_0" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "fied_1" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "fied1_1" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "fired_2" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "fired_3" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "fired_4" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "fired_6" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "fired_7" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "fired_8" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "fired_9" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "fired_10" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "fired_11" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "fired_12" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "codone_1" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "cored_0" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "coed_1" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "cored1_1" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "cored_2" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "cored_3" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "cored_4" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "cored_6" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "cored_7" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "cored_8" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "cored_9" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "cored_10" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "cored_11" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "cored_12" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "acdone_1" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "acred_0" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "aced_1" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "aced1_1" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "acred_2" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "acred_3" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "acred_4" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "acred_6" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "acred_7" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "acred_8" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "acred_9" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "acred_10" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "acred_11" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "acred_12" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 244 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tumb_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tumble]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spell_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spellcraft]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "perf_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Perform]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "silent_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Move Silently]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "hide_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hide]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "invis_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Invisibility (2/day)]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "evade_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Evasion]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Resistence]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fidred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance V]" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance V]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fidred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance IV]" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance IV]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fidred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance III]" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance III]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fidred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance II]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance II]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fi_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance I]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage]" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "codred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance V]" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance V]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "codred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance IV]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance IV]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "codred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance III]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance III]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "codred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance II]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance II]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "co_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance I]" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acdred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance V]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance V]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acdred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance IV]" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance IV]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acdred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance III]" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance III]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acdred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance II]" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance II]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ac_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance I]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Resistance I] *** DONE ***" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/crossbow.dlg.json b/_module/dlg/crossbow.dlg.json new file mode 100644 index 0000000..fb8be0d --- /dev/null +++ b/_module/dlg/crossbow.dlg.json @@ -0,0 +1,379 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your Crossbow?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 19 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do nothing" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mighty_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mighty Bonus]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mass_imbue_bow" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "att_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/crystal_enabled.dlg.json b/_module/dlg/crystal_enabled.dlg.json new file mode 100644 index 0000000..43c79bf --- /dev/null +++ b/_module/dlg/crystal_enabled.dlg.json @@ -0,0 +1,211 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "This will initiate a vote to enable the power crystals. Only a unanimous vote will succeed." + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 25 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Forget about it." + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "vote" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Vote to enable the power crystals." + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/cutscenetester.dlg.json b/_module/dlg/cutscenetester.dlg.json new file mode 100644 index 0000000..a0dda39 --- /dev/null +++ b/_module/dlg/cutscenetester.dlg.json @@ -0,0 +1,685 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Yes?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select Level" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 14 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "cutscene" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cut_test6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "God" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cut_test5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Hero" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cut_test4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Grand Master" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cut_test3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Warrior Lord" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cut_test2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Warrior" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cut_test1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Apprentice" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/damage_red.dlg.json b/_module/dlg/damage_red.dlg.json new file mode 100644 index 0000000..6fa33b7 --- /dev/null +++ b/_module/dlg/damage_red.dlg.json @@ -0,0 +1,1618 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like to imbue your shield?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "done_1" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "red_0" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "red_1" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "red1_1" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "red_2" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "red_3" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "red_4" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "red_6" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "red_7" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "red_8" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "red_9" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "red_10" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "red_11" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "red_12" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select damage reduction treatment?" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You already have the maximum damage reduction treatment!" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 87 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "crit_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Immunity Critical Hits]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "max_reduction" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction V]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction V]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction V] *** DONE ***" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction IV]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction IV]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction IV] *** DONE ***" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction III]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction III]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction III] *** DONE ***" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction II]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction II]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction I|] *** DONE ***" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dred_imbue_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction I]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Reduction I] *** DONE ***" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/death.dlg.json b/_module/dlg/death.dlg.json new file mode 100644 index 0000000..bd2c797 --- /dev/null +++ b/_module/dlg/death.dlg.json @@ -0,0 +1,8075 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_038" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_037" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "That's right! Death and Taxes.....and maybe a little something on the side too. What'll it be? " + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_036" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_036a" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_036b" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_036" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Get your life insurance! The kind that only Death himself can give!" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 41 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ok...but you'll regret it..." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have a life insurance card to refund." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "not_has_40k" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "has_40k" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_039" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "That will be 40000 gold please. A small price for your piece of mind!" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 40 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_028" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have to be kidding. Insurance isn't cheap these days!" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "not_has_30k" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "has_30k" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_039" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Well, I suppose I could give you a discount. How does 30000 sound?" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 40 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_028" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have to be kidding. Insurance isn't cheap these days!" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 39 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "not_has_20k" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "has_20k" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Damn! You sure do drive a hard bargain!. How does 20000 sound?" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thank you for your business. Come back soon. " + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 40 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What'd'ya think this is? A charity fund? Come back when you have the gold!" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thank you for your business. Come back soon. " + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 40 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What'd'ya think this is? A charity fund? Come back when you have the gold!" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thank you for your business. Come back soon. " + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 40 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What'd'ya think this is? A charity fund? Come back when you have the gold!" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You already have a life insurance card. Only one per customer please!" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "If you have a life insurance card in your inventory when you die, you will not lose your life, but instead be returned to full health." + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_035a" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_035" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_035" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_035a" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Welcome to the AOC Betting System. How can we help you?" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "win_reset" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Congratulations! You have won gold. Would you like to place another bet?" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You haven't won anything." + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have enough gold." + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm." + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] If you ally with either team or abort the battle before it is finished, you will forfiet your bet. Proceed?" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] Battle will start immediately. Please choose the battle scale. " + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have gold. How much will you lay down?" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which side will you back?" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please collect your winnings first." + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_040a" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_040" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select Option" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Warning This will reset your total winnings/losses, standing and bets placed. Confirm?" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "This option will become availible when you unlock the [[Holy War] ] feature." + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 431 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Life Insurance]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Refund]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "insurance_refund" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Refund]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purchase]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "haggle1" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Haggle]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "haggle2" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Haggle]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "shop_insurance3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pay]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pay]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "shop_insurance2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pay]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pay]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "shop_insurance" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pay]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pay]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purchase]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Info]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gamble]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_winnings" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "collect_win" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Collect Winnings]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Collect Winnings]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Place Bet]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "abort_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "abort_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "abort_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "abort_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cancel the Bet]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "place_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Place the Bet]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "abort_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back to menu" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bet_confirm4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel]" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bet_confirm2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fight]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bet_confirm1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Battle]" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bet_confirm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[War]" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "abort_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wagerall" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "All my gold" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager500000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "500000" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager200000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "200000" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager100000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "100000" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager50000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "50000" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager20000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "20000" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager10000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "10000" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager5000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "5000" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager2000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "2000" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager1000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "1000" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "abort_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dark_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Army of Darkness]" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "light_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Army of Light]" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Place Bet]" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gambling Stats]" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Gambling Stats]" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "gamble_reset" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Gambling Stats]" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "gamble_stats" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[View Gambling Stats]" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gamble]" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/death2.dlg.json b/_module/dlg/death2.dlg.json new file mode 100644 index 0000000..412ca54 --- /dev/null +++ b/_module/dlg/death2.dlg.json @@ -0,0 +1,15392 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "bet_type2" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_038" + }, + "Index": { + "type": "dword", + "value": 179 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_037" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "That's right! Death and Taxes.....and maybe a little something on the side too. What'll it be? " + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_036" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_036a" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_036b" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_036" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Get your life insurance! The kind that only Death himself can give!" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 41 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ok...but you'll regret it..." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have a life insurance card to refund." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "not_has_40k" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "has_40k" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_039" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "That will be 40000 gold please. A small price for your piece of mind!" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 40 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_028" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have to be kidding. Insurance isn't cheap these days!" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "not_has_30k" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "has_30k" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_039" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Well, I suppose I could give you a discount. How does 30000 sound?" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 40 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_028" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have to be kidding. Insurance isn't cheap these days!" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 39 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "not_has_20k" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "has_20k" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Damn! You sure do drive a hard bargain!. How does 20000 sound?" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thank you for your business. Come back soon. " + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 40 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What'd'ya think this is? A charity fund? Come back when you have the gold!" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thank you for your business. Come back soon. " + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 40 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What'd'ya think this is? A charity fund? Come back when you have the gold!" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thank you for your business. Come back soon. " + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 40 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What'd'ya think this is? A charity fund? Come back when you have the gold!" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You already have a life insurance card. Only one per customer please!" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "If you have a life insurance card in your inventory when you die, you will not lose your life, but instead be returned to full health." + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 161 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_035a" + }, + "Index": { + "type": "dword", + "value": 160 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_035" + }, + "Index": { + "type": "dword", + "value": 153 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_035a" + }, + "Index": { + "type": "dword", + "value": 150 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_035" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_035" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_035a" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Welcome to the AOC Betting System. How can we help you?" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "win_reset" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Congratulations! You have won gold. Would you like to place another bet?" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You haven't won anything." + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have enough gold." + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_041" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_041a" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "csc_041a" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm." + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] If you attack, heal or buff either competitor, you will forfiet your bet. Proceed?" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] If you ally with either team or abort the battle before it is finished, you will forfiet your bet. Proceed?" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] Battle will start immediately. Please choose the battle scale. " + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] If you ally with either team or abort the battle before it is finished, you will forfiet your bet. Proceed?" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] Aside from the [War] bout, all teams are randomly selected. If your challenger is not chosen to participate in the bout, you will lose the bet. Please choose the battle scale. " + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have gold. How much will you lay down?" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "From which side will you select your champion?" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Who will you back? [Challenger] / [Odds]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 112 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 111 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Who will you back? [Champion] / [Odds]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 129 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 114 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 113 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "From which side is the competitor that you want to back?" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 126 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 125 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 124 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 123 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 122 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 121 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 120 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 118 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 117 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 116 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Who will you back? [Challenger] / [Odds]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 140 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 139 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 138 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 137 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 136 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 135 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 134 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 133 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 132 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 131 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 130 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Who will you back? [Challenger] / [Odds]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 144 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 143 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 142 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 141 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which side will you back?" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 149 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 148 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 146 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 145 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What division do you want to bet in?" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 152 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 151 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please collect your winnings first." + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_040a" + }, + "Index": { + "type": "dword", + "value": 159 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_040" + }, + "Index": { + "type": "dword", + "value": 156 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 154 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select Option" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 158 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 157 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Warning This will reset your total winnings/losses, standing and bets placed. Confirm?" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 168 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 166 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 164 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 163 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 162 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gambling Info] What division would you like to know about?" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 165 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Match championship] Bet on who you believe will win the match championship title, that is, who will rack up the most kills during the match. If you back the match champion, you can collect your winnings at the tote. Less likely champions will produce higher odds." + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 167 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel Victory] You can choose who you want to back as your champion. After you place your bet and initiate the match, an opponent will be chosen randomly from all 22 challengers. If your champion prevails, you can collect your winnings at the tote." + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 177 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 175 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 173 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 171 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 170 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 169 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Team Victory] Which battle scale?" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 172 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel ]A duel involves 1 randomly chosen challenger from each team to duel it out to the death. Sometimes you will see a good fight, other times you will see a weaker challenger absolutely decimated by a much stronger one. Your luck will depend on who is selected and how they perform. If you back the team of the victor, you can collect your winnings at the tote." + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 174 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fight] This scale involves 3 randomly chosen challengers from each team. The first side to lose all of its warriors will lose the match. The remaining team wins. If you backed the winning team, you can collect your winnings at the tote." + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 176 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Battle] This scale involves 6 randomly chosen challengers from each team. The first side to lose all of its warriors will lose the match. The remaining team wins. If you backed the winning team, you can collect your winnings at the tote." + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 178 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[War] This scale involves every challenger in the game with an additional 2 challengers on the army of darkness side. The first side to lose all of its warriors will lose the match. The remaining team wins. If you backed the winning team, you can collect your winnings at the tote." + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 180 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "This option will become availible when you unlock the [Holy War] feature." + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 1064 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Life Insurance]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Refund]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "insurance_refund" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Refund]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purchase]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "haggle1" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Haggle]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "haggle2" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Haggle]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "shop_insurance3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pay]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pay]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "shop_insurance2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pay]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pay]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "shop_insurance" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pay]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pay]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purchase]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Info]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gamble]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_winnings" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "collect_win" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Collect Winnings]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Collect Winnings]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Place Bet]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back to Main Menu" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cancel the Bet]" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Change Wager]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Place the Bet]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cha_bet_confirm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Start the Battle]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Place the Bet]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back to menu" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bet_confirm4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel]" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bet_confirm2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fight]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bet_confirm1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Battle]" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bet_confirm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[War]" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Place the Bet]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back to menu" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ch_bet_confirm4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel]" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ch_bet_confirm3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fight]" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ch_bet_confirm2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Battle]" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ch_bet_confirm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[War]" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager500000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "10000" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager200000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "5000" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager100000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "4000" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager50000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "3000" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager20000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "2000" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager10000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "1000" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager5000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "500" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager2000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "200" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager1000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "100" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "champside2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Army of Darkness]" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cdchamp_bet11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fallen Disciple] 2:1" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cdchamp_bet10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Baal Lord of Destruction] 3:1" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cdchamp_bet9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lucifer's Mistress] 4:1" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cdchamp_bet8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bard Heretic] 2:1" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cdchamp_bet7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kamaji Berserker] 8:1" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cdchamp_bet6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Valdar Dragoon] 10:1" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cdchamp_bet5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[War Demon] 15:1" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cdchamp_bet4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Doom Reaver] 20:1" + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cdchamp_bet3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Balrog Lord] 30:1" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cdchamp_bet2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dark Archer] 50:1" + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cdchamp_bet1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Death Wurm] 60:1" + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "champside1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Army of Light]" + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cchamp_bet8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Thor God of Thunder] 2:1" + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cchamp_bet7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Shogun Lord] 3:1" + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cchamp_bet6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Elk King] 5:1" + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cchamp_bet5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Shiva the Destroyer] 8:1" + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cchamp_bet4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Soul Warrior] 15:1" + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cchamp_bet3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Guardian Angel] 20:1" + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cchamp_bet2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Horodrim Archmage] 7:1" + } + } + }, + { + "__struct_id": 111, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cchamp_bet1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Archer] 45:1" + } + } + }, + { + "__struct_id": 112, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cchamp_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gold Dragon] 50:1" + } + } + }, + { + "__struct_id": 113, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 114, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 115, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Army of Darkness]" + } + } + }, + { + "__struct_id": 116, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 117, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 118, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dchamp_bet11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fallen Disciple] 3:1" + } + } + }, + { + "__struct_id": 119, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dchamp_bet10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Baal Lord of Destruction] 4:1" + } + } + }, + { + "__struct_id": 120, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dchamp_bet9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lucifer's Mistress] 6:1" + } + } + }, + { + "__struct_id": 121, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dchamp_bet8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bard Heretic] 2:1" + } + } + }, + { + "__struct_id": 122, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dchamp_bet7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kamaji Berserker] 5:1" + } + } + }, + { + "__struct_id": 123, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dchamp_bet6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Valdar Dragoon] 9:1" + } + } + }, + { + "__struct_id": 124, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dchamp_bet5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[War Demon] 10:1" + } + } + }, + { + "__struct_id": 125, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dchamp_bet4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Doom Reaver] 11:1" + } + } + }, + { + "__struct_id": 126, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dchamp_bet3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Balrog Lord] 12:1" + } + } + }, + { + "__struct_id": 127, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dchamp_bet2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dark Archer] 13:1" + } + } + }, + { + "__struct_id": 128, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dchamp_bet1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Death Wurm] 14:1" + } + } + }, + { + "__struct_id": 129, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Army of Light]" + } + } + }, + { + "__struct_id": 130, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 131, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 132, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "champ_bet8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Thor God of Thunder] 3:1" + } + } + }, + { + "__struct_id": 133, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "champ_bet7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Shogun Lord] 5:1" + } + } + }, + { + "__struct_id": 134, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "champ_bet6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Elk King] 6:1" + } + } + }, + { + "__struct_id": 135, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "champ_bet5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Shiva the Destroyer] 4:1" + } + } + }, + { + "__struct_id": 136, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "champ_bet4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Soul Warrior] 7:1" + } + } + }, + { + "__struct_id": 137, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "champ_bet3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Guardian Angel] 9:1" + } + } + }, + { + "__struct_id": 138, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "champ_bet2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Horodrim Archmage] 5:1" + } + } + }, + { + "__struct_id": 139, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "champ_bet1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Archer] 11:1" + } + } + }, + { + "__struct_id": 140, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "champ_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gold Dragon] 12:1" + } + } + }, + { + "__struct_id": 141, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 142, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 143, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dark_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Army of Darkness]" + } + } + }, + { + "__struct_id": 144, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "gold_token" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "light_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Army of Light]" + } + } + }, + { + "__struct_id": 145, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 146, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 147, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bet_type" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Match Championship]" + } + } + }, + { + "__struct_id": 148, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cbet_type" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel Victory]" + } + } + }, + { + "__struct_id": 149, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Team Victory]" + } + } + }, + { + "__struct_id": 150, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Place Bet]" + } + } + }, + { + "__struct_id": 151, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 152, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 153, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gambling Stats]" + } + } + }, + { + "__struct_id": 154, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 155, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 156, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Gambling Stats]" + } + } + }, + { + "__struct_id": 157, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 158, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "gamble_reset" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 159, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Gambling Stats]" + } + } + }, + { + "__struct_id": 160, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gambling Stats]" + } + } + }, + { + "__struct_id": 161, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Info]" + } + } + }, + { + "__struct_id": 162, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 163, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 164, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bet_type" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Match Championship]" + } + } + }, + { + "__struct_id": 165, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 166, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel Victory]" + } + } + }, + { + "__struct_id": 167, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 168, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Team Victory]" + } + } + }, + { + "__struct_id": 169, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 170, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 171, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel]" + } + } + }, + { + "__struct_id": 172, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 173, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fight]" + } + } + }, + { + "__struct_id": 174, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 175, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Battle]" + } + } + }, + { + "__struct_id": 176, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 177, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[War]" + } + } + }, + { + "__struct_id": 178, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 179, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gamble]" + } + } + }, + { + "__struct_id": 180, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/deity.dlg.json b/_module/dlg/deity.dlg.json new file mode 100644 index 0000000..8efeba9 --- /dev/null +++ b/_module/dlg/deity.dlg.json @@ -0,0 +1,16664 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "deity_abort" + }, + "EndConversation": { + "type": "resref", + "value": "deity_abort" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Welcome, stranger. What do you want to do?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "nue_neu_align" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "cha_goo_align" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "cha_evi_align" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "nue_neu_align" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "cha_evi_align" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "law_evi_align" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "cha_goo_align" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "neu_evi_align" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "nue_neu_align" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "cha_neu_align" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "cha_neu_align" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "any_neu_align" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "neu_evi_align" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "any_neu_align" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Note] Only deities that suit your alignment will appear for selection. For more information on the different deities, see the [Info] section in the previous menu. Which deity will you pledge your loyalty to?" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tyr, Germanic God of War]\n\nAlignment: Lawful Good\nThe original Germanic god of war and the patron god of justice, the precursor of Odin. At the time of the Vikings, Tyr had to make way for Odin, who became the god of war himself. Tyr was by then regarded as Odin's son (or possibly of the giant Hymir). He is the boldest of the gods, who inspires courage and heroism in battle. Tyr is represented as a man with one hand, because his right hand was bitten off by the gigantic wolf Fenrir (in old-Norse, the wrist was called 'wolf-joint'). His attribute is a spear; the symbol of justice, as well as a weapon. \n" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mystra, Greater God of All Magic]\n\nAlignment: Neutral Good (*You can use either NG or LN when picking Mystra as a patron.)\nOther Names: The Lady of Mysteries, the Mother of All Magic\nSymbol: Circle of seven stars with red mist flowing from the center\nPortfolio: Magic, spells, the Weave\nDomains: Good, Illusion, Knowledge, Magic, Rune, Spell\nFavored Weapon: Seven whirling stars (shuriken)\n\n" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mystra] (MISS-trah) is a busy and devoted deity. She provides and tends to the Weave, the conduit that allows mortal spellcasters and users of magic to safely access the raw force that is magic. Essentially, Mystra is the Weave. As the goddess of magic, she is also the deity of the possibilities that magic can bring about, making her one of the most powerful beings involved with Toril. Although she is good and has the ability to prevent the creation of new spells and magic items that her philosophy opposes, she rarely exerts this ability unless the creation could threaten the Weave or the balance of magic in general." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yondalla, God of Halflings]\n\nAlignment: Lawful Good\nOther Titles: Protector and Provider, Nurturing Matriarch, Blessed One\nYondalla is the creator and protector of the Halfling race. She espouses harmony with the Halfling race and stalwart defense against its enemies. Her followers hope to lead safe, prosperous lives by following her guidance. \nDomains: Good, Law, Protection\nFavored Weapon: shortsword\n\n" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "any_neu_align" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wee Jas, Goddess of Death and Magic]\n\nAlignment: Lawful Neutral\nOther Titles: Witch Goddess, Ruby Sorceress, Stern Lady, Death's Guardian\nWee Jas is a demanding goddess who expects obedience from her followers. Her temples are few and far between, but she counts many powerful sorcerers and wizards (especially necromancers).\nDomains: Death, Law, Magic\nFavored Weapon: dagger\n\n" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "neu_evi_align" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Vecna, God of Secrets]\n\nAlignment: Neutral Evil\nOther Titles: The Maimed Lord, the Whispered One, The Master of All That is Secret and Hidden\nVecna rules that which is not meant to be known and that people wish to keep secret. He usually appears as a lich who is missing his left hand and left eye.\nDomains: Evil, Knowledge, Magic\nFavored Weapon: dagger" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "any_neu_align" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Saint Cuthburt, God of Retribution]\n\nAlignment: Lawful Neutral\nOther Titles: St. Cuthburt of the Cudgel\nSt. Cuthburt exact revenge and just punishment on those who transgress the law. Because evil creatures more commonly and flagrantly violate laws then good creatures do, St. Cuthburt favors good over evil, though he is not good himself (His clerics cannot be evil). \nDomains: Destruction, Law, Protection, Strength\nFavored Weapon: mace\n\n" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cha_neu_align" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pelor, God of the Sun]\n\nAlignment: Neutral Good\nOther Titles: Shining One\nPelor is the creator of many good things, a supporter of those in need, and an adversary of all that is evil. He is the most commonly worshipped deity among ordinary humans, and his priests are well received wherever they go. Rangers and bards are found among his worshippers.\nDomains: Good, Healing, Strength, Sun\nFavored Weapon: mace\n" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cha_neu_align" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Olidammara, God of Rogues]\n\nAlignment: Chaotic Neutral\nOther Titles: Laughing Rogue\nOlidammara delights in wine, women, and song. He is a vagabond, a prankster, and a master of disguise. His temples are few, but many people are willing to raise a glass in his honor. Rogues and bards are frequently among his worshippers.\nDomains: Chaos, Luck, Trickery\nFavored Weapon: rapier\n" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "nue_neu_align" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Obad-Hai God of Nature]\n\nAlignment: Neutral\nOther Titles: Shalm\nObad-Hi rules nature and the wilderness, and he is a friend to all who live in harmony with the natural world. Barbarians, Rangers, and druids sometimes worship him.\nDomains: Air, Animal, Earth, Fire, Plant, and Water\nFavored Weapon: Quarterstaff\nNemesis: Ehlonna" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "neu_evi_align" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Nerull, God of Death]\n\nAlignment: Neutral Evil\nOther Titles: The Reaper, Foe of All Good, Hater of Life, Bringer of Darkness, King of All Gloom, Reaper of Flesh\nNerull is the patron of those who seek the greatest evil for their own enjoyment or gain. His worshippers, who include evil necromancers and rogues, depict him as an almost skeletal figure in a robe.\nDomains: Death, Evil, Trickery\nFavored Weapon: Scythe" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Moradin, God of Dwarves]\n\nAlignment: Lawful Good\nOther Titles: Soul Forger, Dwarffather, The All-Father, and the Creator\nMoradin forged the first dwarves out of metal and gems and breathed life into them. He governs the arts and sciences of the dwarves: smithing, metal-working, engineering, and war.\nDomains: Earth, Good, Law, and Protection\nFavored Weapon: Warhammer\n\n" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cha_goo_align" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kord, God of Strength]\n\nAlignment: Chaotic Good\nOther Titles: The Brawler\nKord is the patron of athletes, especially wrestlers. His worshippers include good fighers, rogues, and barbarians.\nDomains: Chaos, Good, Luck, and Strength\nFavored Weapon: Greatsword\n\n" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "law_evi_align" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hextor, God of Tyranny]\n\nAlignment: Lawful Evil\nOther Titles: Champion of Evil, Herald of Hell, and Scourge of Battle\nHextor is the six-armed god of war, conflict, and destruction. Hextor's worshippers include evil fighters and monks He sends his followers to commit evil, and their special purpose is to overthrow the followers of Heironeous wherever they are found\nDomains: Destruction, Evil, Law, War\nFavored Weapon: Flail\nNemesis: Heironeous" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heironeous, God of Valor]\n\nAlignment: Lawful Good\nOther Titles: The Invincible\nHeironeous promotes justice, valor, chivalry, and honor. He is worshipped by paladins, good fighters, and good monks\nDomains: Good, Law, War\nFavored Weapon: Longsword\nNemesis: Hextor" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cha_evi_align" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gruumsh, God of Orcs]\n\nAlignment: Chaotic Evil\nOther Titles: One Eye, He-Who-Never-Sleeps\nHe calls on his followers to be strong, to cull the weak from their numbers, and to take all the territory that Gruumsh thinks is rightfully theirs (which is almost everything).\nDomains: Chaos, Evil, Strength, War\nFavored Weapon: Spear\nNemesis: Corellon Larethian\n" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Garl Glittergold, God of Gnomes]\n\nAlignment: Neutral Good\nOther Titles: The Joker, the Watchful Protector, the Priceless Gem, Sparkling Wit\nGarl Glittergold discovered the gnomes and led them into the world. Since then he has been their protector. He governs humor, wit, gemcutting, and jewelrymaking\nDomains: Good, Protection, Trickery\nFavored Weapon: Battleaxe \nNemesis: Kurtulmak (god of Kobolds)\n" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "nue_neu_align" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fharlanghn, God of Roads]\n\nAlignment: Neutral\nOther Titles: Dweller on the Horizon\nFharlanghn's wayside shrines are common on well-used roads, for he is the god of travel, roads, distance, and horizon. Bards, other wandering adventurers, and merchants favor Fharlanghn. \nDomains: Luck, Protection, and Travel\nFavored Weapon: Quarterstaff" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cha_evi_align" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Erythnul, God of Slaughter]\n\nAlignment: Chaotic Evil\nOther Titles: The Many\nErythnul delights in panic and slaughter. In civilized lands, his followers (including evil fighters, barbarians, and rogues) form small, criminal cults. In savage lands, evil barbarians, gnolls, bugbears, ogres, and trolls commonly worship him.\nDomains: Chaos, Evil, Trickery, and War\nFavored Weapon: Morningstar with a blunt stone head\n" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ehlonna, Goddess of the Woodlands]\n\nAlignment: Neutral Good\nOther Titles: Ehlonna of the Forests\nEhlonna watches over all good people who live in the forest, love the woodlands, or make their livelihood there. She is pictured sometimes as an elf and sometimes as a human. She is especially close to elves, gnomes, half-elves, Halflings, and brownies. She is also worshipped by rangers and some druids.\nDomains: Animal, Good, Plant, Sun\nFavored Weapon: Longsword" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cha_goo_align" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Corellon Larethian, God of Elves]\n\nAlignment: Chaotic Good\nOther Titles: Creator of Elves, the Protector, Protector and Preserver of Life, Ruler of All Elves\nCorellon Larethian is the creator and protector of the Elven race. He governs those things held in highest esteem among elves, such as magic, music, arts, crafts, poetry, and warfare. Elves, half-elves, and bards worship him.\nDomains: Chaos, Good, Protection, War\nFavored Weapon: Longsword\nNemesis: Gruumsh " + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "any_neu_align" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Baccob God of Magic]\nAlignment: Neutral\nOther titles: The Uncaring, Lord of All Magics, Archmage of the Deities\nBaccob is a distant deity who promotes no special agenda in the world of mortals. As a god of magic and knowledge, he is worshipped by wizards, sorcerers, and sages.\nDomains: Knowledge, Magic, and Trickery\nFavored Weapon: Quarterstaff\n" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_044" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_044a" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_044b" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_044d" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How much will you donate?" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": " appreciates your donation." + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have enough gold to donate that amount." + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have no deity to donate to." + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "nue_neu_align" + }, + "Index": { + "type": "dword", + "value": 126 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "cha_goo_align" + }, + "Index": { + "type": "dword", + "value": 125 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 124 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "cha_evi_align" + }, + "Index": { + "type": "dword", + "value": 123 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "nue_neu_align" + }, + "Index": { + "type": "dword", + "value": 122 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 121 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "cha_evi_align" + }, + "Index": { + "type": "dword", + "value": 120 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "law_evi_align" + }, + "Index": { + "type": "dword", + "value": 118 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "cha_goo_align" + }, + "Index": { + "type": "dword", + "value": 117 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 116 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "neu_evi_align" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "nue_neu_align" + }, + "Index": { + "type": "dword", + "value": 114 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "cha_neu_align" + }, + "Index": { + "type": "dword", + "value": 113 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "cha_neu_align" + }, + "Index": { + "type": "dword", + "value": 112 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "any_neu_align" + }, + "Index": { + "type": "dword", + "value": 111 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "neu_evi_align" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "any_neu_align" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which deity will you pledge your loyalty to?" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have already donated the maximum amount." + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 214 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 210 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 206 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 202 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 198 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 194 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 190 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 186 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 182 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 178 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 174 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 170 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 166 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 162 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 158 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 154 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 150 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 146 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 142 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 135 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 131 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 130 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 129 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which deity do you wish to learn about?" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 134 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 133 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 132 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tyr, Germanic God of War]\n\nAlignment: Lawful Good\nThe original Germanic god of war and the patron god of justice, the precursor of Odin. At the time of the Vikings, Tyr had to make way for Odin, who became the god of war himself. Tyr was by then regarded as Odin's son (or possibly of the giant Hymir). He is the boldest of the gods, who inspires courage and heroism in battle. Tyr is represented as a man with one hand, because his right hand was bitten off by the gigantic wolf Fenrir (in old-Norse, the wrist was called 'wolf-joint'). His attribute is a spear; the symbol of justice, as well as a weapon. \n" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 139 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 138 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 137 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 136 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mystra, Greater God of All Magic]\n\nAlignment: Neutral Good (*You can use either NG or LN when picking Mystra as a patron.)\nOther Names: The Lady of Mysteries, the Mother of All Magic\nSymbol: Circle of seven stars with red mist flowing from the center\nPortfolio: Magic, spells, the Weave\nDomains: Good, Illusion, Knowledge, Magic, Rune, Spell\nFavored Weapon: Seven whirling stars (shuriken)\n\n" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 141 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 137 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 140 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mystra] (MISS-trah) is a busy and devoted deity. She provides and tends to the Weave, the conduit that allows mortal spellcasters and users of magic to safely access the raw force that is magic. Essentially, Mystra is the Weave. As the goddess of magic, she is also the deity of the possibilities that magic can bring about, making her one of the most powerful beings involved with Toril. Although she is good and has the ability to prevent the creation of new spells and magic items that her philosophy opposes, she rarely exerts this ability unless the creation could threaten the Weave or the balance of magic in general." + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 145 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 144 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 143 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yondalla, God of Halflings]\n\nAlignment: Lawful Good\nOther Titles: Protector and Provider, Nurturing Matriarch, Blessed One\nYondalla is the creator and protector of the Halfling race. She espouses harmony with the Halfling race and stalwart defense against its enemies. Her followers hope to lead safe, prosperous lives by following her guidance. \nDomains: Good, Law, Protection\nFavored Weapon: shortsword\n\n" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "any_neu_align" + }, + "Index": { + "type": "dword", + "value": 149 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 148 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wee Jas, Goddess of Death and Magic]\n\nAlignment: Lawful Neutral\nOther Titles: Witch Goddess, Ruby Sorceress, Stern Lady, Death's Guardian\nWee Jas is a demanding goddess who expects obedience from her followers. Her temples are few and far between, but she counts many powerful sorcerers and wizards (especially necromancers).\nDomains: Death, Law, Magic\nFavored Weapon: dagger\n\n" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "neu_evi_align" + }, + "Index": { + "type": "dword", + "value": 153 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 152 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 151 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Vecna, God of Secrets]\n\nAlignment: Neutral Evil\nOther Titles: The Maimed Lord, the Whispered One, The Master of All That is Secret and Hidden\nVecna rules that which is not meant to be known and that people wish to keep secret. He usually appears as a lich who is missing his left hand and left eye.\nDomains: Evil, Knowledge, Magic\nFavored Weapon: dagger" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "any_neu_align" + }, + "Index": { + "type": "dword", + "value": 157 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 156 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Saint Cuthburt, God of Retribution]\n\nAlignment: Lawful Neutral\nOther Titles: St. Cuthburt of the Cudgel\nSt. Cuthburt exact revenge and just punishment on those who transgress the law. Because evil creatures more commonly and flagrantly violate laws then good creatures do, St. Cuthburt favors good over evil, though he is not good himself (His clerics cannot be evil). \nDomains: Destruction, Law, Protection, Strength\nFavored Weapon: mace\n\n" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cha_neu_align" + }, + "Index": { + "type": "dword", + "value": 161 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 160 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 159 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pelor, God of the Sun]\n\nAlignment: Neutral Good\nOther Titles: Shining One\nPelor is the creator of many good things, a supporter of those in need, and an adversary of all that is evil. He is the most commonly worshipped deity among ordinary humans, and his priests are well received wherever they go. Rangers and bards are found among his worshippers.\nDomains: Good, Healing, Strength, Sun\nFavored Weapon: mace\n" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cha_neu_align" + }, + "Index": { + "type": "dword", + "value": 165 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 164 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 163 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Olidammara, God of Rogues]\n\nAlignment: Chaotic Neutral\nOther Titles: Laughing Rogue\nOlidammara delights in wine, women, and song. He is a vagabond, a prankster, and a master of disguise. His temples are few, but many people are willing to raise a glass in his honor. Rogues and bards are frequently among his worshippers.\nDomains: Chaos, Luck, Trickery\nFavored Weapon: rapier\n" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "nue_neu_align" + }, + "Index": { + "type": "dword", + "value": 169 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 168 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 167 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Obad-Hai God of Nature]\n\nAlignment: Neutral\nOther Titles: Shalm\nObad-Hi rules nature and the wilderness, and he is a friend to all who live in harmony with the natural world. Barbarians, Rangers, and druids sometimes worship him.\nDomains: Air, Animal, Earth, Fire, Plant, and Water\nFavored Weapon: Quarterstaff\nNemesis: Ehlonna" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "neu_evi_align" + }, + "Index": { + "type": "dword", + "value": 173 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 172 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 171 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Nerull, God of Death]\n\nAlignment: Neutral Evil\nOther Titles: The Reaper, Foe of All Good, Hater of Life, Bringer of Darkness, King of All Gloom, Reaper of Flesh\nNerull is the patron of those who seek the greatest evil for their own enjoyment or gain. His worshippers, who include evil necromancers and rogues, depict him as an almost skeletal figure in a robe.\nDomains: Death, Evil, Trickery\nFavored Weapon: Scythe" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 177 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 176 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 175 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Moradin, God of Dwarves]\n\nAlignment: Lawful Good\nOther Titles: Soul Forger, Dwarffather, The All-Father, and the Creator\nMoradin forged the first dwarves out of metal and gems and breathed life into them. He governs the arts and sciences of the dwarves: smithing, metal-working, engineering, and war.\nDomains: Earth, Good, Law, and Protection\nFavored Weapon: Warhammer\n\n" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cha_goo_align" + }, + "Index": { + "type": "dword", + "value": 181 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 180 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 179 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kord, God of Strength]\n\nAlignment: Chaotic Good\nOther Titles: The Brawler\nKord is the patron of athletes, especially wrestlers. His worshippers include good fighers, rogues, and barbarians.\nDomains: Chaos, Good, Luck, and Strength\nFavored Weapon: Greatsword\n\n" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "law_evi_align" + }, + "Index": { + "type": "dword", + "value": 185 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 184 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 183 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hextor, God of Tyranny]\n\nAlignment: Lawful Evil\nOther Titles: Champion of Evil, Herald of Hell, and Scourge of Battle\nHextor is the six-armed god of war, conflict, and destruction. Hextor's worshippers include evil fighters and monks He sends his followers to commit evil, and their special purpose is to overthrow the followers of Heironeous wherever they are found\nDomains: Destruction, Evil, Law, War\nFavored Weapon: Flail\nNemesis: Heironeous" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "law_goo_align" + }, + "Index": { + "type": "dword", + "value": 189 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 188 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 187 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heironeous, God of Valor]\n\nAlignment: Lawful Good\nOther Titles: The Invincible\nHeironeous promotes justice, valor, chivalry, and honor. He is worshipped by paladins, good fighters, and good monks\nDomains: Good, Law, War\nFavored Weapon: Longsword\nNemesis: Hextor" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cha_evi_align" + }, + "Index": { + "type": "dword", + "value": 193 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 192 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 191 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gruumsh, God of Orcs]\n\nAlignment: Chaotic Evil\nOther Titles: One Eye, He-Who-Never-Sleeps\nHe calls on his followers to be strong, to cull the weak from their numbers, and to take all the territory that Gruumsh thinks is rightfully theirs (which is almost everything).\nDomains: Chaos, Evil, Strength, War\nFavored Weapon: Spear\nNemesis: Corellon Larethian\n" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 197 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 196 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 195 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Garl Glittergold, God of Gnomes]\n\nAlignment: Neutral Good\nOther Titles: The Joker, the Watchful Protector, the Priceless Gem, Sparkling Wit\nGarl Glittergold discovered the gnomes and led them into the world. Since then he has been their protector. He governs humor, wit, gemcutting, and jewelrymaking\nDomains: Good, Protection, Trickery\nFavored Weapon: Battleaxe \nNemesis: Kurtulmak (god of Kobolds)\n" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "nue_neu_align" + }, + "Index": { + "type": "dword", + "value": 201 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 200 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 199 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fharlanghn, God of Roads]\n\nAlignment: Neutral\nOther Titles: Dweller on the Horizon\nFharlanghn's wayside shrines are common on well-used roads, for he is the god of travel, roads, distance, and horizon. Bards, other wandering adventurers, and merchants favor Fharlanghn. \nDomains: Luck, Protection, and Travel\nFavored Weapon: Quarterstaff" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cha_evi_align" + }, + "Index": { + "type": "dword", + "value": 205 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 204 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 203 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Erythnul, God of Slaughter]\n\nAlignment: Chaotic Evil\nOther Titles: The Many\nErythnul delights in panic and slaughter. In civilized lands, his followers (including evil fighters, barbarians, and rogues) form small, criminal cults. In savage lands, evil barbarians, gnolls, bugbears, ogres, and trolls commonly worship him.\nDomains: Chaos, Evil, Trickery, and War\nFavored Weapon: Morningstar with a blunt stone head\n" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "neu_goo_align" + }, + "Index": { + "type": "dword", + "value": 209 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 208 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 207 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ehlonna, Goddess of the Woodlands]\n\nAlignment: Neutral Good\nOther Titles: Ehlonna of the Forests\nEhlonna watches over all good people who live in the forest, love the woodlands, or make their livelihood there. She is pictured sometimes as an elf and sometimes as a human. She is especially close to elves, gnomes, half-elves, Halflings, and brownies. She is also worshipped by rangers and some druids.\nDomains: Animal, Good, Plant, Sun\nFavored Weapon: Longsword" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cha_goo_align" + }, + "Index": { + "type": "dword", + "value": 213 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 212 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 211 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Corellon Larethian, God of Elves]\n\nAlignment: Chaotic Good\nOther Titles: Creator of Elves, the Protector, Protector and Preserver of Life, Ruler of All Elves\nCorellon Larethian is the creator and protector of the Elven race. He governs those things held in highest esteem among elves, such as magic, music, arts, crafts, poetry, and warfare. Elves, half-elves, and bards worship him.\nDomains: Chaos, Good, Protection, War\nFavored Weapon: Longsword\nNemesis: Gruumsh " + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "any_neu_align" + }, + "Index": { + "type": "dword", + "value": 217 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 216 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 215 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Baccob God of Magic]\nAlignment: Neutral\nOther titles: The Uncaring, Lord of All Magics, Archmage of the Deities\nBaccob is a distant deity who promotes no special agenda in the world of mortals. As a god of magic and knowledge, he is worshipped by wizards, sorcerers, and sages.\nDomains: Knowledge, Magic, and Trickery\nFavored Weapon: Quarterstaff\n" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 3243 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select a Deity]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tyr]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mystra]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(more info)" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yondalla]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wee Jas]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Vecna]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Saint Cuthburt]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pelor]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Olidammara]" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Obad-Hai]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Nerull]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Moradin]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kord]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hextor]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heironeous]" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gruumsh]" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Garl Glittergold]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fharlanghn]" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Erythnul]" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ehlonna]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Corellon Larethian]" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Baccob]" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_045" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_042" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Donate]" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "donation_recieve" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "deity_token" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "deity_donate4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[1 000,000 gold]" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "deity_donate3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "donation_recieve" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "deity_token" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "deity_donate2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[500,000 gold]" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "donation_recieve" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "deity_token" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "deity_donate1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[200,000 gold]" + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "donation_recieve" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "deity_token" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "deity_donate1a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[50,000 gold]" + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select a Deity]" + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tyr]" + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mystra]" + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yondalla]" + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wee Jas]" + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Vecna]" + } + } + }, + { + "__struct_id": 111, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Saint Cuthburt]" + } + } + }, + { + "__struct_id": 112, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pelor]" + } + } + }, + { + "__struct_id": 113, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Olidammara]" + } + } + }, + { + "__struct_id": 114, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Obad-Hai]" + } + } + }, + { + "__struct_id": 115, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Nerull]" + } + } + }, + { + "__struct_id": 116, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Moradin]" + } + } + }, + { + "__struct_id": 117, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kord]" + } + } + }, + { + "__struct_id": 118, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hextor]" + } + } + }, + { + "__struct_id": 119, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heironeous]" + } + } + }, + { + "__struct_id": 120, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gruumsh]" + } + } + }, + { + "__struct_id": 121, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Garl Glittergold]" + } + } + }, + { + "__struct_id": 122, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fharlanghn]" + } + } + }, + { + "__struct_id": 123, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Erythnul]" + } + } + }, + { + "__struct_id": 124, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ehlonna]" + } + } + }, + { + "__struct_id": 125, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Corellon Larethian]" + } + } + }, + { + "__struct_id": 126, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Baccob]" + } + } + }, + { + "__struct_id": 127, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 128, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Info]" + } + } + }, + { + "__struct_id": 129, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 130, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 131, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tyr]" + } + } + }, + { + "__struct_id": 132, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 133, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 134, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 135, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mystra]" + } + } + }, + { + "__struct_id": 136, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 137, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 138, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 139, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(more info)" + } + } + }, + { + "__struct_id": 140, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 141, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 142, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yondalla]" + } + } + }, + { + "__struct_id": 143, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 144, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 145, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 146, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wee Jas]" + } + } + }, + { + "__struct_id": 147, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 148, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 149, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 150, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Vecna]" + } + } + }, + { + "__struct_id": 151, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 152, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 153, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 154, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Saint Cuthburt]" + } + } + }, + { + "__struct_id": 155, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 156, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 157, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 158, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pelor]" + } + } + }, + { + "__struct_id": 159, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 160, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 161, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 162, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Olidammara]" + } + } + }, + { + "__struct_id": 163, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 164, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 165, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 166, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Obad-Hai]" + } + } + }, + { + "__struct_id": 167, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 168, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 169, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 170, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Nerull]" + } + } + }, + { + "__struct_id": 171, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 172, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 173, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 174, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Moradin]" + } + } + }, + { + "__struct_id": 175, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 176, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 177, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 178, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kord]" + } + } + }, + { + "__struct_id": 179, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 180, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 181, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 182, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hextor]" + } + } + }, + { + "__struct_id": 183, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 184, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 185, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 186, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heironeous]" + } + } + }, + { + "__struct_id": 187, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 188, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 189, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 190, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gruumsh]" + } + } + }, + { + "__struct_id": 191, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 192, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 193, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 194, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Garl Glittergold]" + } + } + }, + { + "__struct_id": 195, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 196, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 197, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 198, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fharlanghn]" + } + } + }, + { + "__struct_id": 199, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 200, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 201, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 202, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Erythnul]" + } + } + }, + { + "__struct_id": 203, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 204, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 205, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 206, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ehlonna]" + } + } + }, + { + "__struct_id": 207, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 208, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 209, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 210, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Corellon Larethian]" + } + } + }, + { + "__struct_id": 211, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 212, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 213, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + }, + { + "__struct_id": 214, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Baccob]" + } + } + }, + { + "__struct_id": 215, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 216, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 217, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dt_set0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select as your Deity]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/fence.dlg.json b/_module/dlg/fence.dlg.json new file mode 100644 index 0000000..cf99a1d --- /dev/null +++ b/_module/dlg/fence.dlg.json @@ -0,0 +1,523 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "" + }, + "EndConversation": { + "type": "resref", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[A fence is a pawnbroker-- a sketchy dealer who buys anything people need to sell.]\n\nDo you have items you wish to sell?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "identify" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Done." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Store loaded successfully.]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 33 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exit]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please identify my items." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_fence" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Yes." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "openstore" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/gamble.dlg.json b/_module/dlg/gamble.dlg.json new file mode 100644 index 0000000..7a67704 --- /dev/null +++ b/_module/dlg/gamble.dlg.json @@ -0,0 +1,1927 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "hi" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You don't have enough gold." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How much will you lay down?" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which side will you back?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 48 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Gamble" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "abort_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "abort_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cancel the Bet]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "place_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Place the Bet]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager500000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "500000" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager200000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "200000" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager100000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "100000" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager50000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "50000" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager20000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "20000" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager10000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "10000" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager5000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "5000" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager2000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "2000" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "wager_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wager1000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "1000" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "abort_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dark_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Army of Darkness]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "light_bet" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Army of Light]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/gloves.dlg.json b/_module/dlg/gloves.dlg.json new file mode 100644 index 0000000..419a380 --- /dev/null +++ b/_module/dlg/gloves.dlg.json @@ -0,0 +1,3455 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "dvmax_damred12b" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "dvmax_damred12ab" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your gloves?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which damage type?" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose a feat" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose profcicency type" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "dvdone_12a" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "dvred_02a" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "dved1_12b" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "dved_12a" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "dvred_22a" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "dved1_12c" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "dvred_32a" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "dvred_62a" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose ability type" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 124 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do nothing" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "taunt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Taunt]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spell_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spellcraft]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "perf_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Perform]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "parry_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Parry]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "heal_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heal]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "rest_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Greater Restoration (3/day)]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Damage Bonus]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sonic_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage]" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pos_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "neg_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acid_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "elec_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cold_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fire_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage]" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Feat]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Weapon Proficiency]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wpe_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exotic]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wpm_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Martial]" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wfin_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Weapon Finesse]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "2weapfig_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Two-weapon Fighting]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "amby_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ambidexterity]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dv_imbue252a2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus III]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus III] *** DONE ***" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus III]" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dv_imbue252a1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus II]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus I|] *** DONE ***" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus II]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dv_imbue252a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus I]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Attack Bonus I] *** DONE ***" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ability Bonus]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wis_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wisdom]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "con_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Constitution]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "str_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Strength]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/goldchest.dlg.json b/_module/dlg/goldchest.dlg.json new file mode 100644 index 0000000..011694b --- /dev/null +++ b/_module/dlg/goldchest.dlg.json @@ -0,0 +1,687 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "it_coins" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Living costs for adventurers are way up this year. Get all the gold you need from this chest.]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 33 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exit]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "4mil" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[4,000,000 gold.]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "1mil" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[1,000,000 gold.]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "200000g" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[200,000 gold.]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "50000g" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[50,000 gold.]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "10000g" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[10,000 gold.]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "2000g" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[2000 gold.]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "500g" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[500 gold.]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/helm.dlg.json b/_module/dlg/helm.dlg.json new file mode 100644 index 0000000..984b04c --- /dev/null +++ b/_module/dlg/helm.dlg.json @@ -0,0 +1,6809 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your helm?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose immunity type" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "elmax_reached2" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "elmax_reached" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "somax_reached2" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "somax_reached" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "mamax_reached1" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "mamax_reached" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose damage resistance type?" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "madone_1" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "mared_0" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "mared_1" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "mared1_1" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "mared_2" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "mared_3" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "mared_4" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "mared_6" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "mared_7" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "mared_8" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "mared_9" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "mared_10" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "mared_11" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "mared_12" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sodone_1" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sored_0" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "soed_1" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sored1_1" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sored_2" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sored_3" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sored_4" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sored_6" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sored_7" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sored_8" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sored_9" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sored_10" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sored_11" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sored_12" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "eldone_1" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "elred_0" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "ered_1" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "elred1_1" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "elred_2" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "elred_3" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "elred_4" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "elred_6" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "elred_7" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "elred_8" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "elred_9" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "elred_10" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "elred_11" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "elred_12" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose a feat" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose a spell focus" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose ability type" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 292 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "seeing_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[True Seeing]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spot]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spell_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spellcraft]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "search_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Search]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "heal_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heal]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "disc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Discipline]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "conc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Concentration]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Immunity Bonus]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mind_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mind Spells]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fear_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fear]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ld_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Level Drain]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "death_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Death Magic]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Resistence]" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Magic Damage *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magic Damage]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "madred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance V]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance V]" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "madred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance IV]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance IV]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "madred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance III]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance III]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "madred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance II]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance II]" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ma_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance I]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sodred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance V]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance V]" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sodred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance IV]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance IV]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sodred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance III]" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance III]" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sodred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance II]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance II]" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "so_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance I]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "eldred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance V]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance V]" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "eldred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance IV]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance IV]" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "eldred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance III]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance III]" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "eldred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance II]" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance II]" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "el_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance I]" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Feat]" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Penetration]" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Focus]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfnec_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Necromancy]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfill_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Illusion]" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfevo_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Evocation]" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfenc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Enchantment]" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfdiv_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divination]" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfcon_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Conjuration]" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfabj_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Abjuration]" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "aph_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Armour Proficiency: Heavy]" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ability Bonus]" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cha_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Charisma]" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "int_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Intelligence]" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wis_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wisdom]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/magics.dlg.json b/_module/dlg/magics.dlg.json new file mode 100644 index 0000000..9145d6d --- /dev/null +++ b/_module/dlg/magics.dlg.json @@ -0,0 +1,5457 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[This is a broad selection of goods ranging from the extremely common to the unique.]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Note: All Epic traps EXCEPT Electrical, Fire, Frost, and Sonic are faulty and may default to being Minor Spike Traps. Bioware needs to fix this.]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[In the meantime, all the other traps and their components are available here.]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your class.]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[What level spells?]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[What level spells?]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[What level spells?]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[What level spells?]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[What level spells?]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[What level spells?]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Store loaded successfully.]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 192 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exit]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_kit" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Trap and tool kits." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_gems" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Gemstones." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_mage9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Magical devices and artifacts." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_tut" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Tutorial Items." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_pots" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Potions." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_jewelry" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Rings and amulets." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Spell scrolls." + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Paladin." + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_pal4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fourth-level Spells." + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_pal3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Third-level Spells." + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_pal2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Second-level Spells." + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_pal1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "First-level Spells." + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ranger." + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ra4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fourth-level Spells." + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ra3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Third-level Spells." + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ra2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Second-level Spells." + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ra1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "First-level Spells." + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard." + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_bard6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Sixth-level Spells." + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_bard5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fifth-level Spells." + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_bard4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fourth-level Spells." + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_bard3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Third-level Spells." + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_bard2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Second-level Spells." + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_bard1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "First-level Spells." + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_bard0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Cantrips." + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Druid." + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_druid9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ninth-level Spells." + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_druid8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Eighth-level Spells." + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_druid7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Seventh-level Spells." + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_druid6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Sixth-level Spells." + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_druid5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fifth-level Spells." + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_druid4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fourth-level Spells." + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_druid3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Third-level Spells." + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_druid2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Second-level Spells." + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_druid1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "First-level Spells." + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_druid0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Orisons." + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Cleric." + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_c9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ninth-level Spells." + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_c8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Eighth-level Spells." + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_c7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Seventh-level Spells." + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_c6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Sixth-level Spells." + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_c5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fifth-level Spells." + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_c4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fourth-level Spells." + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_c3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Third-level Spells." + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_c2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Second-level Spells." + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_c1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "First-level Spells." + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_c0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Orisons." + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Sorcerer or wizard." + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ws9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ninth-level Spells." + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ws8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Eighth-level Spells." + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ws7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Seventh-level Spells." + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ws6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Sixth-level Spells." + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ws5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fifth-level Spells." + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ws4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fourth-level Spells." + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ws3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Third-level Spells." + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ws2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Second-level Spells." + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ws1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "First-level Spells." + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ws0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Cantrips." + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_staves" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Mage weapons." + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "openstore" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/master.dlg.json b/_module/dlg/master.dlg.json new file mode 100644 index 0000000..5ab97d5 --- /dev/null +++ b/_module/dlg/master.dlg.json @@ -0,0 +1,6804 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "mc_facing" + }, + "EndConversation": { + "type": "resref", + "value": "mc_facing" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 35 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "vs_nnwgrdm2_yes" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What is your wish?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to purge?" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This is an advanced users option. It will remove all of the data tokens from your character. The next time you enter, you will be stripped of all gold and equipment and issued with 6 new data tokens. This is a useful oprtion for starting again from scratch. " + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Confirm] You are about to remove the data tokens from your inventory. Are you sure?" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Purge equipment slots too?" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and inventory only]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold and all possessions]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge gold]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which Items?" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory and equipment slots]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge equipment slots only]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm [Purge Inventory only]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired alignment.]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This option is now locked because you have already defeated a challenger. This is an anti-exploit system." + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 28, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 29, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 30, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 31, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 32, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 33, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 34, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 35, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 36, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 37, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 38, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 39, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 40, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired level.]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Confirm" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 303 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Nevermind\n" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Items]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Purge Data Tokens]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Proceed]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_data" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items and Gold]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Gold Only]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "gold_purge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Items Only]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Both]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Equipment Slots]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items_slot" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Inventory]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "purge_items" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "align_check" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Alignment change]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ce" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Evil." + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Neutral." + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Chaotic Good." + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ne" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neutral Evil." + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "True Neutral." + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neutral Good." + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "le" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Evil." + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ln" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Neutral." + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lawful Good." + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "delevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Take 1 level]" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "givelevel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Add 1 level]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set level]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 40." + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv39" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 39." + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv38" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 38." + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv37" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 37." + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv36" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 36." + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv35" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 35." + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv34" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 34." + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv33" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 33." + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 32." + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv31" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 31." + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv30" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 30." + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv29" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 29." + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv28" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 28." + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv27" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 27." + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv26" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 26." + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 25." + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv24" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 24." + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv23" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 23." + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 22." + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 21." + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 20." + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 19." + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 18." + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 17." + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 16." + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 15." + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 14." + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 13." + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 12." + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 11." + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 10." + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv09" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 9." + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv08" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 8." + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv07" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 7." + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv06" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 6." + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv05" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 5." + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv04" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 4." + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv03" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 3." + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv02" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 2." + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 1." + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 1st level]" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Finish." + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_004" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Instant 40th Level]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mod_mode" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/meph_final.dlg.json b/_module/dlg/meph_final.dlg.json new file mode 100644 index 0000000..f826d8a --- /dev/null +++ b/_module/dlg/meph_final.dlg.json @@ -0,0 +1,769 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Greetings, champion!" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I am Mephisto, the MC for evil players. If you thought the dark challengers were tough, you should try going up against those naffheads in the army of light! Typical....good always seems stronger in these stories....*mumble...complain*" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Only players with an evil alignment can join my battle against the Army of Light! So you'll have to start another character if you wish to fight for the Dark Army!" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_029" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Yes, well I'm not really the sentimental type! I leave all of that ceremonial naff for Starfall. I do always like the Phoenix Dragon though. *beam*......Oh, congratulations. I'm gonna enjoy my vacation while you do the MC'ing around here. Guess you weren't as useless as you looked *wink*" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Yes?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 135 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Who are you?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How can I do that?" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_049" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_029" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I see" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_049" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_029" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "hal_stop" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Background Music [Off]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "hal_play" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Background Music [On]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_049" + }, + "Index": { + "type": "dword", + "value": 4 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_047" + }, + "Index": { + "type": "dword", + "value": 3 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/npc_show.dlg.json b/_module/dlg/npc_show.dlg.json new file mode 100644 index 0000000..cb4a3df --- /dev/null +++ b/_module/dlg/npc_show.dlg.json @@ -0,0 +1,497 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_048b" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_048" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Hi there , it's great to see you again. What can I do for you?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 38 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I thought you'd never ask! Ready?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 35 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "music_start" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Background Music [On]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "stop_music" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Background Music [Off]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Let's watch another show together!" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "show2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/plotitems.dlg.json b/_module/dlg/plotitems.dlg.json new file mode 100644 index 0000000..df4e86f --- /dev/null +++ b/_module/dlg/plotitems.dlg.json @@ -0,0 +1,405 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "" + }, + "EndConversation": { + "type": "resref", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[The plot items comprise a large store that may take a moment to load.]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Store loaded successfully.]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 21 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exit]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_books" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Books." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_plot" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Plot Items." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "openstore" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/portal.dlg.json b/_module/dlg/portal.dlg.json new file mode 100644 index 0000000..cc11735 --- /dev/null +++ b/_module/dlg/portal.dlg.json @@ -0,0 +1,4065 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[This portal instantly moves the module to an Official Campaign. Only a party leader can use it.]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select a destination.]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send09" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send08" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send07" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send06" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send05" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send04" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send03" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send02" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "send01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Would you like to set a subrace first?" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "sendbane" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare yourself." + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "is_halforc" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "is_human" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "is_human" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "is_elf" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "is_dwarf" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "is_human" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "is_human" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "is_elf" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "is_gnome" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "is_dwarf" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "is_human" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "is_human" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "is_halfelf" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select a subrace. (You will be transoprted upon selection of your subrace)" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 151 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "partyleader" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exit]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Cania. [HotU Chapter Three]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lith My'athar. [HotU Chapter Two]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Waterdeep. [HotU Chapter One]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Undrentide. [SoU Chapter Two]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Anauroch Desert. [SoU Interlude]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Hilltop. [SoU Chapter One]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Castle Neverwinter. [NWN Chapter Four]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Beorunna's Well. [NWN Chapter Three]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Luskan. [NWN Chapter Two Finale]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Port Llast. [NWN Chapter Two]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Helm's Hold. [NWN Chapter One Finale]" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neverwinter. [NWN Chapter One]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The Academy. [Prelude]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Dragon's Bane [Chapter 2]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "No" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Yes" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_woodelf" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wood Elf]" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_vamp" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Vampire]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_silver" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Succubus]" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_silver" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Silver Dwarf]" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_pixie" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Pixie]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_nightelf" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Night Elf]" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_horodrim" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Morphlord]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_horodrim" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Horodrim]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_duergar" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duergar]" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_drow" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Drow]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_dragoon" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dragoon]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_drac" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dracula]" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "subset_demon" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Demon]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/rapier_mod.dlg.json b/_module/dlg/rapier_mod.dlg.json new file mode 100644 index 0000000..370ec5f --- /dev/null +++ b/_module/dlg/rapier_mod.dlg.json @@ -0,0 +1,1001 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like the Sun God to imbue your rapier?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which damage type?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 44 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "enh_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Enhancement Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Bonus]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mass_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pier_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "slash_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "blud_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeoning Damage]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sonic_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pos_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "neg_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acid_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "elec_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cold_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage]" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fire_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/ring.dlg.json b/_module/dlg/ring.dlg.json new file mode 100644 index 0000000..59b9b8a --- /dev/null +++ b/_module/dlg/ring.dlg.json @@ -0,0 +1,1857 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your ring?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose spell class" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose ability type" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 54 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do nothing" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "seeing_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[True Seeing]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "umd_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Use Magic Device]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "search_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Search]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "conc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Concentration]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fear_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fear Immunity]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Spell Slot]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wiz_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wizard]" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sorc_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sorcerer]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pally_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Paladin]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "druid_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Druid]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cler_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cleric]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bard_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bard]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ability Bonus]" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cha_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Charisma]" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "int_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Intelligence]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wis_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wisdom]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dex_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dexterity]" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "str_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Strength]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/score_save.dlg.json b/_module/dlg/score_save.dlg.json new file mode 100644 index 0000000..3f86281 --- /dev/null +++ b/_module/dlg/score_save.dlg.json @@ -0,0 +1,211 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "" + }, + "EndConversation": { + "type": "resref", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "There are still items in the storage chests. Do you want to save anyway?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 16 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "conv_store" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/shield.dlg.json b/_module/dlg/shield.dlg.json new file mode 100644 index 0000000..cbb0a3d --- /dev/null +++ b/_module/dlg/shield.dlg.json @@ -0,0 +1,7762 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "shammmax_reached" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "ammmax_reached2" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_af1" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_af1a" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your shield?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose immunity type" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "shammdone_1" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "shammred_0" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "shammed_1" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "shammred1_1" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "shammred_2" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "shammred_3" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "shammred_4" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "shammred_6" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "ammmax_reached" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "ammmax_reached2" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your amulet?" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose spell class [Level is random]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose a feat" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose profcicency type" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose a spell focus" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose ability type" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bdone_1" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "bred_0" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "bred_1" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "blred1_1" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "blred_2" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "blred_3" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "blred_4" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "blred_6" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "blred_7" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "blred_8" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "blred_9" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "blred_10" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "blred_11" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "blred_12" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 114 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 113 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 112 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 111 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose ability type" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 276 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tumb_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tumble]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "taunt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Taunt]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "parry_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Parry]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "disc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Discipline]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Immunity Bonus]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "par_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Paralysis]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "kd_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Knockdown]" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "asf_imbue1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Arcane Spell Failure]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Arcane Spell Failure *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do nothing" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "umd_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Use Magic Device]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tumb_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Tumble]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "taunt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Taunt]" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spot]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spell_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spellcraft]" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "search_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Search]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "perf_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Perform]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "parry_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Parry]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "silent_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Move Silently]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "hide_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hide]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "heal_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Heal]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "disc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Discipline]" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "conc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Concentration]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Spell Slot]" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wiz_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wizard]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sorc_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sorcerer]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pally_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Paladin]" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "druid_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Druid]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cler_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cleric]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bard_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bard]" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Feat]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Weapon Proficiency]" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wpe_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exotic]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wpm_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Martial]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wfin_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Weapon Finesse]" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "2weapfig_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Two-weapon Fighting]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Penetration]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spell Focus]" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfnec_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Necromancy]" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfill_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Illusion]" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfevo_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Evocation]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfenc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Enchantment]" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfdiv_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divination]" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfcon_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Conjuration]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sfabj_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Abjuration]" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "patt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Power Attack]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "knockdown_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Knockdown]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dodge_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dodge]" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ccast_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Combat Casting]" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cleave_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cleave]" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "aph_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Armour Proficiency: Heavy]" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "amby_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ambidexterity]" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ability Bonus]" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cha_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Charisma]" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "int_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Intelligence]" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wis_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wisdom]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "con_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Constitution]" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dex_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dexterity]" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "str_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Strength]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sammdred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III]" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III]" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus III] *** DONE ***" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ssmmdred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus II]" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus II]" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I|] *** DONE ***" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "shamm_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I]" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus I] *** DONE ***" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V]" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V]" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance V] *** DONE ***" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV]" + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV]" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance IV] *** DONE ***" + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III]" + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III]" + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance III] *** DONE ***" + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance II]" + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance II]" + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I|] *** DONE ***" + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bl_imbue25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I]" + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Resistance I] *** DONE ***" + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[AC Bonus *** FULLY UPGRADED ***]" + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ability Bonus]" + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 111, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 112, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cha_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Charisma]" + } + } + }, + { + "__struct_id": 113, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "con_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Constitution]" + } + } + }, + { + "__struct_id": 114, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "str_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Strength]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/sign_warehouse.dlg.json b/_module/dlg/sign_warehouse.dlg.json new file mode 100644 index 0000000..217ce81 --- /dev/null +++ b/_module/dlg/sign_warehouse.dlg.json @@ -0,0 +1,97 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The Item warehouse. Every Item imaginable from the Campaigns." + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 9 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/slaad.dlg.json b/_module/dlg/slaad.dlg.json new file mode 100644 index 0000000..fcd306e --- /dev/null +++ b/_module/dlg/slaad.dlg.json @@ -0,0 +1,8283 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "clear_app" + }, + "Sound": { + "type": "resref", + "value": "c_slaadpow_slct" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[This friendly old Slaad offers several services.]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Refer to the papers on top of the drawer to select your desired creature appearance.]\n\n[Start with the hundreds digit here.]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "app1000" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[[IMPORTANT:] Do not attempt to enter a non-CEP module using a CEP-exclusive appearance.]\n\n[Refer to the three wall scrolls for your appearance number. Start with the hundreds digit.]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Now give the tens digit.]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Now give the ones digit.]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "invalid" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[You've selected . Confirm?]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "shapechange" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Invalid number... you'll have to reconsult the charts on the drawer nearby to find a good one.]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired alignment.]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 28, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 29, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 30, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 31, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 32, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 33, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 34, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 35, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 36, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 37, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 38, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 39, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 40, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select your desired level.]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_hi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[IMPORTANT. Decreasing your experience level can potentially harm hitpoint calculations, rendering your character \"illegal\" and restricting it from joining many games. It doesn't generally happen, but be sure to back up your character before continuing.]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "setxp_lo" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bam!]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 326 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exit]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I want an appearance change." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I want a CEP-exclusive appearance." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fifteen hundred..." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fourteen hundred..." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thirteen hundred..." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Twelve hundred..." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Eleven hundred..." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "One thousand..." + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Four hundred and..." + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Three hundred and..." + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Two hundred and..." + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "One hundred and..." + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "No hundreds and..." + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ninety..." + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Eighty..." + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Seventy..." + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Sixty..." + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fifty..." + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Fourty..." + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thirty..." + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Twenty..." + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "One ten and..." + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "No tens and..." + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Nine." + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Eight." + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Seven." + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Six." + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Five." + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Four." + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Three." + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Two." + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "One." + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "app0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Zero." + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "No." + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "invalid_app" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Yes." + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I want an alignment change." + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ce" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Chaotic Evil." + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Chaotic Neutral." + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Chaotic Good." + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ne" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Neutral Evil." + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tn" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me True Neutral." + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Neutral Good." + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "le" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Lawful Evil." + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ln" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Lawful Neutral." + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lg" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make me Lawful Good." + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Instant experience levels." + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv40" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 40." + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv39" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 39." + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv38" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 38." + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv37" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 37." + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv36" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 36." + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv35" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 35." + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv34" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 34." + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv33" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 33." + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 32." + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv31" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 31." + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv30" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 30." + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv29" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 29." + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv28" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 28." + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv27" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 27." + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv26" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 26." + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv25" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 25." + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv24" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 24." + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv23" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 23." + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 22." + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv21" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 21." + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv20" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 20." + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv19" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 19." + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv18" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 18." + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv17" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 17." + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv16" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 16." + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv15" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 15." + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv14" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 14." + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv13" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 13." + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 12." + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv11" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 11." + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv10" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 10." + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv09" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 9." + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv08" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 8." + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv07" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 7." + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv06" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 6." + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv05" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 5." + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv04" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 4." + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv03" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 3." + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv02" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 2." + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "compare_xp" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "lv01" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level 1." + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Go Back." + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Continue." + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/smith.dlg.json b/_module/dlg/smith.dlg.json new file mode 100644 index 0000000..f7b40f5 --- /dev/null +++ b/_module/dlg/smith.dlg.json @@ -0,0 +1,5367 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What else would you ask of me?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "c_archhond_slct" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Hmm? What is it you wish?", + "id": 87377 + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "craft_skill_up" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Affirmative. This effect will last for ten minutes." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What type of dye?" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do you want the full, premium selection or the campaign selection at a discount?" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "This is admissible." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ready a weapon in your hand, and I shall see what can be done with it.", + "id": 87378 + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "Ranged Weapon Line" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_ismele" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_israng" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_wtoken" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I see you have brandished a .", + "id": 87379 + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What enchantment do you want put on it?", + "id": 87380 + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your already shoots a form of magically created ammunition. We cannot interfere with the dweomer.", + "id": 87381 + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your is already mighty. We cannot interfere with the dweomer.", + "id": 87382 + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your is already mighty. We cannot interfere with the dweomer.", + "id": 87383 + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "As far as general enhancement goes, this has already reached the very extent of its power.", + "id": 87384 + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What enchantment do you want put on it?", + "id": 87385 + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "vixthrite" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Very well." + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your already has powers of this nature." + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You need to re-equip your weapon." + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "This is already regenerative.", + "id": 87387 + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "This is already spell-resistant.", + "id": 87388 + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your already grants True Seeing. Silly .", + "id": 87389 + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "That is already keen. Silly .", + "id": 87390 + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "That already hastens you. Silly .", + "id": 87391 + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your already inflicts elemental damage. I cannot enchant it further.", + "id": 87392 + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your already inflicts elemental damage. I cannot enchant it further.", + "id": 87393 + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your already inflicts elemental damage. I cannot enchant it further.", + "id": 87394 + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "This operation will require more gold.", + "id": 87395 + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Behold a master at work.", + "id": 87396 + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Your already inflicts elemental damage. I cannot enchant it further.", + "id": 87397 + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "This operation will require more gold.", + "id": 87398 + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Behold a master at work.", + "id": 87399 + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "As far as general enhancement goes, this has already reached the very extent of its power.", + "id": 87400 + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "A throwing weapon cannot be powered beyond its current enchantments.", + "id": 101583 + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "That weapon is quite über already; we cannot risk messing with such powerful dweomer.", + "id": 101584 + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 496 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Goodbye." + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I want a boost to my crafting skills." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I wish to purchase armor dyes." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Nevermind." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_dye" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I want to see only the original XP2 dyes from Waterdeep." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_mdye" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Metal Dyes." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ldye" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Leather Dyes." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_cdye" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Cloth Dyes." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I wish to purchase crafting materials." + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_craft" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The discount selection." + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_crafts" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The premium selection." + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "openstore" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_maxprops" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_throwing" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "x2_con_ws_haverh" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I have a weapon here I want upgraded." + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "Ranged weapon line" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_setup" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Yes, I want to upgrade my .", + "id": 87417 + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_unl3ok" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_stunl3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87418 + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_migtok" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_stmigt" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87419 + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_mig5ok" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_stmig5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87420 + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_attkok" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_stattk" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87421 + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "Melee Weapon Line" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_setup" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Yes, I want to upgrade my .", + "id": 87422 + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I've changed my mind.", + "id": 87423 + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "chk_bp0" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "chk_bp1" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Make it a Vix'thrite weapon (Unholy Aura, DC 24 Strength Drain)" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_regeok" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_strege" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87424 + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_spelok" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_stspel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87425 + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_trueok" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_sttrue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87426 + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_keenok" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_stkeen" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87427 + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_hastok" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_sthast" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87428 + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_elecok" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_stelec" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87429 + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_fireok" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_stfire" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87430 + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_iceok" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_stice" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87431 + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_acidok" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_stacid" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87432 + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "smith_makeit" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_con_ws_enhaok" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x2_con_ws_gpnuff" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_act_ws_stenha" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 87433 + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "smith_makeit" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "firstsmith" + }, + "Index": { + "type": "dword", + "value": 1 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/spawner.dlg.json b/_module/dlg/spawner.dlg.json new file mode 100644 index 0000000..00fb99a --- /dev/null +++ b/_module/dlg/spawner.dlg.json @@ -0,0 +1,23575 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "clear_group" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Apprentice] Arena Challenge before you can duel this monster." + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Warrior Lord] Arena Challenge before you can duel this monster." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Warrior] Arena Challenge before you can duel this monster." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_010" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_010b" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_010ba" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0111" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_011b" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "d2c" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_011d" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_011c" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "d2cd" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_20" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_20b" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "d2cde" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_21" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_21b" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "d2cdef" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_21ca" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_21c" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_005" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The blue challenges will become unlocked as you complete the green ones. Please select again." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_014" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_002s" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_043s" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_003s" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_004x" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_005s" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_006s" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_012s" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_13ac" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13a" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13ac" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_13ab" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_007as" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_007" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "sc_21dx" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "sc_21d" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "sc_21defg" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "sc_21def" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "xpc2" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The blue opponents will become unlocked as you complete the green ones. Please select again." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Grand Master] Arena Challenge to unlock this feature." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Warrior Lord] Arena Challenge to unlock this feature." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat the first 7 monsters to unlock this feature." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must Defeat Baal before Lord Lucifer will fight you." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 150 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 130 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_21dx" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_21dx1" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "*** Welcome to the Arena of Heroes ***\n\n[Hint] Defeating monsters in Deathmatch Mode will help you to learn about your opponents. They often drop tomes holding valuable information about the strengths and weaknesses of the monsters you will fight. It would be wise to train extensively before attempting the Arena Challenge Mode.\n\n\n" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_024a1" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_024aa" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select Option." + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_025a" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_025" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sw2ab" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sw2a" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sw2av" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sw2" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select mode." + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "This option will become available when you unlock the [Holy War] feature. " + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to reset?" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills, deaths, hits and damage score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] Once you reset this score it is gone forever. Proceed?" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills and deaths score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cryst_off" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "cryst_on" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "fount_on" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "fount_off" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "pool_on" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "pool_off" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Selecting toggles [On / Off]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 121 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare for a spectacular battle between heaven and hell. You may simply spectate, or join the fray. Will you ally with the dark or the light side? Your actions will reveal to whom your allegiance belongs. Which supernatural army will emerge victorious? Which warrior will win the much coveted Arena Championship award? This will all be revealed in.....The Holy War. Are you ready?" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_029a" + }, + "Index": { + "type": "dword", + "value": 120 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_028a" + }, + "Index": { + "type": "dword", + "value": 117 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "scorechek" + }, + "Index": { + "type": "dword", + "value": 116 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "scorechek1" + }, + "Index": { + "type": "dword", + "value": 113 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_029d" + }, + "Index": { + "type": "dword", + "value": 112 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_029dd" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select a task." + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_028b4" + }, + "Index": { + "type": "dword", + "value": 111 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_028v" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_028b" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_028" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_028c3" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_028c" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please Specify." + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset the total casualties suffered by each side. Proceed?" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset all of the monster damage dealt/taken scores. Proceed?" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset all of the monster kill scores. Proceed?" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 114 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Note] This will only reset holy-war-specific player kill/death totals, not the overall totals. Proceed?" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 118 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset the wins/losses for the dark and light armies. Proceed?\n" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 126 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 125 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 124 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 123 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 122 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please choose the battle scale." + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 129 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat [Lord Lucifer] to unlock this feature." + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_010b" + }, + "Index": { + "type": "dword", + "value": 149 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_010" + }, + "Index": { + "type": "dword", + "value": 148 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_010ba" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_011b" + }, + "Index": { + "type": "dword", + "value": 146 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_0111" + }, + "Index": { + "type": "dword", + "value": 145 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "d2c" + }, + "Index": { + "type": "dword", + "value": 144 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_011c" + }, + "Index": { + "type": "dword", + "value": 143 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_011d" + }, + "Index": { + "type": "dword", + "value": 142 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "d2cd" + }, + "Index": { + "type": "dword", + "value": 141 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_20b" + }, + "Index": { + "type": "dword", + "value": 140 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_20" + }, + "Index": { + "type": "dword", + "value": 139 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "d2cde" + }, + "Index": { + "type": "dword", + "value": 138 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_21b" + }, + "Index": { + "type": "dword", + "value": 137 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_21" + }, + "Index": { + "type": "dword", + "value": 136 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "d2cdef" + }, + "Index": { + "type": "dword", + "value": 135 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_21c" + }, + "Index": { + "type": "dword", + "value": 134 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_21ca" + }, + "Index": { + "type": "dword", + "value": 133 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 132 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 131 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_005" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select the difficulty level." + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_014" + }, + "Index": { + "type": "dword", + "value": 206 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_002s" + }, + "Index": { + "type": "dword", + "value": 205 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002" + }, + "Index": { + "type": "dword", + "value": 204 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_043s" + }, + "Index": { + "type": "dword", + "value": 203 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043" + }, + "Index": { + "type": "dword", + "value": 202 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_003s" + }, + "Index": { + "type": "dword", + "value": 201 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003" + }, + "Index": { + "type": "dword", + "value": 200 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_004x" + }, + "Index": { + "type": "dword", + "value": 199 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004" + }, + "Index": { + "type": "dword", + "value": 198 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_005s" + }, + "Index": { + "type": "dword", + "value": 197 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005" + }, + "Index": { + "type": "dword", + "value": 196 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_006s" + }, + "Index": { + "type": "dword", + "value": 195 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006" + }, + "Index": { + "type": "dword", + "value": 194 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_012s" + }, + "Index": { + "type": "dword", + "value": 193 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012" + }, + "Index": { + "type": "dword", + "value": 192 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_13ac" + }, + "Index": { + "type": "dword", + "value": 190 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13a" + }, + "Index": { + "type": "dword", + "value": 189 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13aca" + }, + "Index": { + "type": "dword", + "value": 187 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_13ab" + }, + "Index": { + "type": "dword", + "value": 186 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_007as" + }, + "Index": { + "type": "dword", + "value": 184 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_007" + }, + "Index": { + "type": "dword", + "value": 183 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "sc_21dx" + }, + "Index": { + "type": "dword", + "value": 181 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "sc_21d" + }, + "Index": { + "type": "dword", + "value": 180 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "sc_21defg" + }, + "Index": { + "type": "dword", + "value": 178 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "sc_21def" + }, + "Index": { + "type": "dword", + "value": 177 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "xpc2" + }, + "Index": { + "type": "dword", + "value": 153 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 152 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 151 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat each monster to unlock the next." + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_0141" + }, + "Index": { + "type": "dword", + "value": 176 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_0142" + }, + "Index": { + "type": "dword", + "value": 175 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002s1" + }, + "Index": { + "type": "dword", + "value": 174 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0021" + }, + "Index": { + "type": "dword", + "value": 173 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043s1" + }, + "Index": { + "type": "dword", + "value": 172 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_0431" + }, + "Index": { + "type": "dword", + "value": 171 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003s1" + }, + "Index": { + "type": "dword", + "value": 170 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_0031" + }, + "Index": { + "type": "dword", + "value": 169 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004x1" + }, + "Index": { + "type": "dword", + "value": 168 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_0041" + }, + "Index": { + "type": "dword", + "value": 167 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005s1" + }, + "Index": { + "type": "dword", + "value": 166 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_0051" + }, + "Index": { + "type": "dword", + "value": 165 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006s1" + }, + "Index": { + "type": "dword", + "value": 164 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_0061" + }, + "Index": { + "type": "dword", + "value": 163 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012s1" + }, + "Index": { + "type": "dword", + "value": 162 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_0121" + }, + "Index": { + "type": "dword", + "value": 161 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13ac1" + }, + "Index": { + "type": "dword", + "value": 160 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13a1" + }, + "Index": { + "type": "dword", + "value": 159 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_012s1a" + }, + "Index": { + "type": "dword", + "value": 158 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_0121x" + }, + "Index": { + "type": "dword", + "value": 157 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_017" + }, + "Index": { + "type": "dword", + "value": 156 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 154 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Toggle selected monsters [on/off]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 179 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Hero] Arena Challenge to unlock this feature." + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 182 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat Lord Lucifer to unlock this feature." + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 185 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat the first 7 monsters to unlock this feature." + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 188 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat Baal before Lord Lucifer will fight you." + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 191 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat Lucifer's Mistress before Baal will fight you." + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 244 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 208 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 207 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_030" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Note] You have activated a special mode for testing builds from the Australis Days of Darkness server.\n\nChoose your challenger!" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 235 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 223 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_024a1" + }, + "Index": { + "type": "dword", + "value": 220 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_024aa" + }, + "Index": { + "type": "dword", + "value": 211 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 210 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 209 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select Option." + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_025a" + }, + "Index": { + "type": "dword", + "value": 219 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_025" + }, + "Index": { + "type": "dword", + "value": 218 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sw2ab" + }, + "Index": { + "type": "dword", + "value": 217 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sw2a" + }, + "Index": { + "type": "dword", + "value": 216 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sw2av" + }, + "Index": { + "type": "dword", + "value": 215 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sw2" + }, + "Index": { + "type": "dword", + "value": 214 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 213 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 212 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select mode." + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 222 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 221 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "This option will become available when you unlock the [Holy War] feature. " + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 232 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 229 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 226 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 225 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 224 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to reset?" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 228 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 227 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills, deaths, hits and damage score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 231 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 230 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] Once you reset this score it is gone forever. Proceed?" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 234 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 233 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills and deaths score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cryst_off" + }, + "Index": { + "type": "dword", + "value": 243 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "cryst_on" + }, + "Index": { + "type": "dword", + "value": 242 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "fount_on" + }, + "Index": { + "type": "dword", + "value": 241 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "fount_off" + }, + "Index": { + "type": "dword", + "value": 240 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "pool_on" + }, + "Index": { + "type": "dword", + "value": 239 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "pool_off" + }, + "Index": { + "type": "dword", + "value": 238 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 237 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 236 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Selecting toggles [On / Off]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 299 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 290 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 281 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 280 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 279 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 278 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 277 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 276 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 275 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 274 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 273 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 272 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 271 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 247 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 246 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 245 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select your opponent." + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_0141" + }, + "Index": { + "type": "dword", + "value": 270 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_0142" + }, + "Index": { + "type": "dword", + "value": 269 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002s1" + }, + "Index": { + "type": "dword", + "value": 268 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0021" + }, + "Index": { + "type": "dword", + "value": 267 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043s1" + }, + "Index": { + "type": "dword", + "value": 266 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_0431" + }, + "Index": { + "type": "dword", + "value": 265 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003s1" + }, + "Index": { + "type": "dword", + "value": 264 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_0031" + }, + "Index": { + "type": "dword", + "value": 263 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004x1" + }, + "Index": { + "type": "dword", + "value": 262 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_0041" + }, + "Index": { + "type": "dword", + "value": 261 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005s1" + }, + "Index": { + "type": "dword", + "value": 260 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_0051" + }, + "Index": { + "type": "dword", + "value": 259 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006s1" + }, + "Index": { + "type": "dword", + "value": 258 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_0061" + }, + "Index": { + "type": "dword", + "value": 257 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012s1" + }, + "Index": { + "type": "dword", + "value": 256 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_0121" + }, + "Index": { + "type": "dword", + "value": 255 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13ac1" + }, + "Index": { + "type": "dword", + "value": 254 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13a1" + }, + "Index": { + "type": "dword", + "value": 253 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_012s1a" + }, + "Index": { + "type": "dword", + "value": 252 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_0121x" + }, + "Index": { + "type": "dword", + "value": 251 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_017" + }, + "Index": { + "type": "dword", + "value": 250 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 249 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 248 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Toggle selected monsters [on/off]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 289 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 288 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 287 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 286 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 285 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 284 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 283 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 282 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How many?" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 298 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 297 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 296 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 295 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 294 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 293 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 292 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 291 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How many?" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 307 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 306 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 305 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 304 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 303 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 302 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 301 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 300 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How many?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 1239 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God] = COMPLETED =" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_god" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God] " + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero] = COMPLETED =" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero] " + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Grand Master]= COMPLETED =" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Grand Master]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[GrandMaster] " + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord] =COMPLETED=" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord] " + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior] = COMPLETED =" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior] " + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Apprentice] = COMPLETED =" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Apprentice]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Custom Group]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allb" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses and Minions]" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses and Minions]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allc" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Minions]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Minions]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "final_boss" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_lord" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_mistress" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_marilith" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Berserker" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pale" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic " + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_fiend" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pitfiend" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon " + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dopple" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_blarog" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dragon" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm " + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Options]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set Scoreboard Mode]" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War Team Stats [** Active **]" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sc2b" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War Team Stats [** Inactive **]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War PC Stats [** Active **]" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sc2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War PC Stats [** Inactive **]" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Arena PC Stats [** Active **]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_026" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Arena PC Stats [** Inactive **]" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set Scoreboard Mode]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Player Score]" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All]" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_all_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hits/Damage]" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_hitdam" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kills/Deaths]" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Activate/Deactivate Arena Facilities]" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_pool2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Rejeuvination Pools]" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_pool2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Rejeuvination Pools]" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_fount2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Restoration Fountains]" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_fount2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Restoration Fountains]" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_cryst" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Power Crystals]" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_cryst" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Power Crystals]" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "set_all_chall_0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Holy War]" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back\n" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Options]" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset NPC Scores]" + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Total Team Casualties]" + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_totcas" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Total Team Casualties]" + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Stats]" + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_mscores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Stats] " + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kill Score]" + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_mscores2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 111, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kill Score] " + } + } + }, + { + "__struct_id": 112, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset NPC Scores]" + } + } + }, + { + "__struct_id": 113, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset PC Kill/Death Totals]" + } + } + }, + { + "__struct_id": 114, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 115, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_pchwscores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 116, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset PC Kill/Death Totals]" + } + } + }, + { + "__struct_id": 117, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Holy War Scores]" + } + } + }, + { + "__struct_id": 118, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 119, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_hwarsc2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 120, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Holy War Scores]" + } + } + }, + { + "__struct_id": 121, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Begin the Holy War]" + } + } + }, + { + "__struct_id": 122, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 123, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 124, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "holy_war_duel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel]" + } + } + }, + { + "__struct_id": 125, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "holy_war_team" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fight]" + } + } + }, + { + "__struct_id": 126, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "holy_war_batt" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Battle]" + } + } + }, + { + "__struct_id": 127, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "holy_war" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[War]" + } + } + }, + { + "__struct_id": 128, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Holy War]" + } + } + }, + { + "__struct_id": 129, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 130, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "set_all_chall_0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[The Arena of Champions Challenge]" + } + } + }, + { + "__struct_id": 131, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 132, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 133, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_god" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God]" + } + } + }, + { + "__struct_id": 134, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God] = COMPLETED =" + } + } + }, + { + "__struct_id": 135, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God] " + } + } + }, + { + "__struct_id": 136, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero]" + } + } + }, + { + "__struct_id": 137, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero] = COMPLETED =" + } + } + }, + { + "__struct_id": 138, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero] " + } + } + }, + { + "__struct_id": 139, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Grand Master]" + } + } + }, + { + "__struct_id": 140, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Grand Master] = COMPLETED =" + } + } + }, + { + "__struct_id": 141, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[GrandMaster] " + } + } + }, + { + "__struct_id": 142, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord]" + } + } + }, + { + "__struct_id": 143, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord] = COMPLETED =" + } + } + }, + { + "__struct_id": 144, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord] " + } + } + }, + { + "__struct_id": 145, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior]" + } + } + }, + { + "__struct_id": 146, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior] = COMPLETED =" + } + } + }, + { + "__struct_id": 147, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior] " + } + } + }, + { + "__struct_id": 148, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Apprentice]" + } + } + }, + { + "__struct_id": 149, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Apprentice] = COMPLETED =" + } + } + }, + { + "__struct_id": 150, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "set_all_chall_0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Deathmatch]" + } + } + }, + { + "__struct_id": 151, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 152, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 153, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Custom Battle]" + } + } + }, + { + "__struct_id": 154, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 155, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 156, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Start Battle]" + } + } + }, + { + "__struct_id": 157, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022x" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 158, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 159, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_024" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 160, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_023" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 161, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 162, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 163, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_020" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 164, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_019" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 165, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_018" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic " + } + } + }, + { + "__struct_id": 166, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_017" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic" + } + } + }, + { + "__struct_id": 167, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_016" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 168, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_015" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 169, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_014" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon " + } + } + }, + { + "__struct_id": 170, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_013" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon" + } + } + }, + { + "__struct_id": 171, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_012" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 172, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_011" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 173, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_010" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 174, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_009" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 175, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "asa" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm " + } + } + }, + { + "__struct_id": 176, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_008" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm" + } + } + }, + { + "__struct_id": 177, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allb" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ultimate Battle]" + } + } + }, + { + "__struct_id": 178, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ultimate Battle]" + } + } + }, + { + "__struct_id": 179, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 180, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allc" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mega Battle]" + } + } + }, + { + "__struct_id": 181, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mega Battle]" + } + } + }, + { + "__struct_id": 182, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 183, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Super Battle]" + } + } + }, + { + "__struct_id": 184, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Super Battle]" + } + } + }, + { + "__struct_id": 185, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 186, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "final_boss" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 187, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 188, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 189, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_lord" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 190, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 191, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 192, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_mistress" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 193, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 194, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_marilith" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 195, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Berserker" + } + } + }, + { + "__struct_id": 196, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pale" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic " + } + } + }, + { + "__struct_id": 197, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic" + } + } + }, + { + "__struct_id": 198, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_fiend" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 199, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 200, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pitfiend" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon " + } + } + }, + { + "__struct_id": 201, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon" + } + } + }, + { + "__struct_id": 202, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dopple" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 203, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 204, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_blarog" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 205, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 206, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dragon" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm " + } + } + }, + { + "__struct_id": 207, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 208, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Options]" + } + } + }, + { + "__struct_id": 209, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 210, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_050" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 211, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set Scoreboard Mode]" + } + } + }, + { + "__struct_id": 212, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 213, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 214, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War Team Stats [** Active **]" + } + } + }, + { + "__struct_id": 215, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sc2b" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War Team Stats [** Inactive **]" + } + } + }, + { + "__struct_id": 216, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War PC Stats [** Active **]" + } + } + }, + { + "__struct_id": 217, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sc2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War PC Stats [** Inactive **]" + } + } + }, + { + "__struct_id": 218, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Arena PC Stats [** Active **]" + } + } + }, + { + "__struct_id": 219, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_026" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Arena PC Stats [** Inactive **]" + } + } + }, + { + "__struct_id": 220, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set Scoreboard Mode]" + } + } + }, + { + "__struct_id": 221, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 222, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 223, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Player Score]" + } + } + }, + { + "__struct_id": 224, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 225, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 226, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All]" + } + } + }, + { + "__struct_id": 227, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 228, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_all_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 229, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hits/Damage]" + } + } + }, + { + "__struct_id": 230, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 231, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_hitdam" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 232, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kills/Deaths]" + } + } + }, + { + "__struct_id": 233, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 234, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 235, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Activate/Deactivate Arena Facilities]" + } + } + }, + { + "__struct_id": 236, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 237, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 238, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_pool2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Rejeuvination Pools]" + } + } + }, + { + "__struct_id": 239, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_pool2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Rejeuvination Pools]" + } + } + }, + { + "__struct_id": 240, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_fount2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Restoration Fountains]" + } + } + }, + { + "__struct_id": 241, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_fount2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Restoration Fountains]" + } + } + }, + { + "__struct_id": 242, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_cryst" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Power Crystals]" + } + } + }, + { + "__struct_id": 243, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_cryst" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Power Crystals]" + } + } + }, + { + "__struct_id": 244, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "set_all_chall_0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Deathmatch]" + } + } + }, + { + "__struct_id": 245, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 246, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_050" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 247, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Custom Battle]" + } + } + }, + { + "__struct_id": 248, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 249, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 250, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Start Battle]" + } + } + }, + { + "__struct_id": 251, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022x" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 252, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 253, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_024" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 254, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_023" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 255, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 256, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 257, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_020" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 258, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_019" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 259, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_018" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic " + } + } + }, + { + "__struct_id": 260, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_017" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic" + } + } + }, + { + "__struct_id": 261, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_016" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 262, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_015" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 263, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_014" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon " + } + } + }, + { + "__struct_id": 264, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_013" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon" + } + } + }, + { + "__struct_id": 265, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_012" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 266, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_011" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 267, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_010" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 268, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_009" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 269, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "asa" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm " + } + } + }, + { + "__struct_id": 270, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_008" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm" + } + } + }, + { + "__struct_id": 271, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_bane_n" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bane" + } + } + }, + { + "__struct_id": 272, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "n_starseeker" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Starseeker" + } + } + }, + { + "__struct_id": 273, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_lord_n" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Axle Steelgrind" + } + } + }, + { + "__struct_id": 274, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "n_blade" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(KH) Blademaster" + } + } + }, + { + "__struct_id": 275, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "n_johnny" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Johnny Rogue" + } + } + }, + { + "__struct_id": 276, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_mistress_n" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Darkstarr" + } + } + }, + { + "__struct_id": 277, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_marilith_n" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Demilich" + } + } + }, + { + "__struct_id": 278, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pale_n" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Hell Wurm " + } + } + }, + { + "__struct_id": 279, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_fiend_d" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ancient Red dragon" + } + } + }, + { + "__struct_id": 280, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "n_paremus" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Paremus Devil" + } + } + }, + { + "__struct_id": 281, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Damned Wizzard" + } + } + }, + { + "__struct_id": 282, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 283, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 284, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wz6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "6" + } + } + }, + { + "__struct_id": 285, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wz5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "5" + } + } + }, + { + "__struct_id": 286, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wz4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "4" + } + } + }, + { + "__struct_id": 287, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wz3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "3" + } + } + }, + { + "__struct_id": 288, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wz2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "2" + } + } + }, + { + "__struct_id": 289, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wz1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "1" + } + } + }, + { + "__struct_id": 290, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Damned Cleric" + } + } + }, + { + "__struct_id": 291, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 292, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 293, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wc6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "6" + } + } + }, + { + "__struct_id": 294, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wc5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "5" + } + } + }, + { + "__struct_id": 295, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wc4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "4" + } + } + }, + { + "__struct_id": 296, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wc3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "3" + } + } + }, + { + "__struct_id": 297, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wc2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "2" + } + } + }, + { + "__struct_id": 298, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wc1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "1" + } + } + }, + { + "__struct_id": 299, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Damned Warrior" + } + } + }, + { + "__struct_id": 300, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 301, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 302, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_w6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "6" + } + } + }, + { + "__struct_id": 303, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_w5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "5" + } + } + }, + { + "__struct_id": 304, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_w4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "4" + } + } + }, + { + "__struct_id": 305, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_w3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "3" + } + } + }, + { + "__struct_id": 306, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_w2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "2" + } + } + }, + { + "__struct_id": 307, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_w1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "1" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_050" + }, + "Index": { + "type": "dword", + "value": 36 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/spawner2.dlg.json b/_module/dlg/spawner2.dlg.json new file mode 100644 index 0000000..974d952 --- /dev/null +++ b/_module/dlg/spawner2.dlg.json @@ -0,0 +1,6073 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "xpc2" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat each monster to unlock the next." + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "master_switch" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Welcome to the Arena of Heroes. Choose your challenge. " + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_010" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_010b" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_010ba" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0111" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_011b" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "d2c" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_011d" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_011c" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "d2cd" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_20" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_20b" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "d2cde" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_21" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_21b" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "d2cdef" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_21ca" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_21c" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_005" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select the difficulty level." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_010" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_010b" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_010ba" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0111" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_011b" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "d2c" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_011d" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_011c" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "d2cd" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_20" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_20b" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "d2cde" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_21" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_21b" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "d2cdef" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_21ca" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_21c" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_005" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The blue challenges will become unlocked as you complete the green ones. Please select again." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_0141" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_0142" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002s1" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0021" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043s1" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_0431" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003s1" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_0031" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004x1" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_0041" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005s1" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_0051" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006s1" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_0061" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012s1" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_0121" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13ac1" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13a1" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_012s1a" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_0121x" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_017" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Toggle selected monsters [on/off]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_005" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select the difficulty level." + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 232 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Deathmatch]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[The Arena of Champions Challenge]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_god" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God] = COMPLETED =" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_god" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God] " + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero] = COMPLETED =" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero] " + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Grand Master]= COMPLETED =" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Grand Master]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[GrandMaster] " + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord] =COMPLETED=" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord] " + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior] = COMPLETED =" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior] " + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_god" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God] = COMPLETED =" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_god" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God]" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God] " + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero] = COMPLETED =" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero] " + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Grand Master]= COMPLETED =" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Grand Master]" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[GrandMaster] " + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord] =COMPLETED=" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord]" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord] " + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior] = COMPLETED =" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior]" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior] " + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Apprentice] = COMPLETED =" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Apprentice]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Apprentice] = COMPLETED =" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Apprentice]" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Custom Battle]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Start Battle]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022x" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_024" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_023" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_020" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_019" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_018" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic " + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_017" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_016" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_015" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_014" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon " + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_013" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_012" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_011" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_010" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_009" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "asa" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm " + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_008" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allb" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses and Minions]" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allc" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Minions]" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "final_boss" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_lord" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_mistress" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_marilith" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pale" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic " + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_fiend" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pitfiend" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon " + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dopple" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_blarog" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dragon" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm " + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "CHALLENGE" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_god" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero]" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Grand Master]" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord]" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior]" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Apprentice]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/spawner3.dlg.json b/_module/dlg/spawner3.dlg.json new file mode 100644 index 0000000..42cca3f --- /dev/null +++ b/_module/dlg/spawner3.dlg.json @@ -0,0 +1,31733 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "clear_group" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_010" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_010b" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_010ba" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0111" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_011b" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "d2c" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_011d" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_011c" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "d2cd" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_20" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_20b" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "d2cde" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_21" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_21b" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "d2cdef" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_21ca" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_21c" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_005" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The blue challenges will become unlocked as you complete the green ones. Please select again." + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Adept] Arena Challenge before you can duel this monster." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Doom Lord] Arena Challenge before you can duel this monster." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Slayer] Arena Challenge before you can duel this monster." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_014" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_002s" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_043s" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_003s" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_004x" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_005s" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_006s" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_012s" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_13ac" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13a" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13ac" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_13ab" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_007as" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_007" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "sc_21dx" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "sc_21d" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "sc_21defg" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "sc_21def" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "xpc2" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The blue opponents will become unlocked as you complete the green ones. Please select again." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_0141" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_0142" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002s1" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0021" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043s1" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_0431" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003s1" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_0031" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004x1" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_0041" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005s1" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_0051" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006s1" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_0061" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012s1" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_0121" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13ac1" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13a1" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_012s1a" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_0121x" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_017" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Toggle selected monsters [on/off]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Grand Master] Arena Challenge to unlock this feature." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Warrior Lord] Arena Challenge to unlock this feature." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat the first 7 monsters to unlock this feature." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 172 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "master_switch" + }, + "Index": { + "type": "dword", + "value": 152 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_21dx" + }, + "Index": { + "type": "dword", + "value": 150 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_21dx1" + }, + "Index": { + "type": "dword", + "value": 113 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "*** Welcome to the Arena of Heroes ***\n\n[Hint] Defeating monsters in Deathmatch Mode will help you to learn about your opponents. They often drop tomes holding valuable information about the strengths and weaknesses of the monsters you will fight. It would be wise to train extensively before attempting the Arena Challenge Mode.\n\n\n" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_024a1" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_024aa" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select Option." + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_025a" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_025" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sw2ab" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sw2a" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sw2av" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sw2" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select mode." + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "This option will become available when you unlock the [Holy War] feature. " + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to reset?" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills, deaths, hits and damage score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] Once you reset this score it is gone forever. Proceed?" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills and deaths score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cryst_off" + }, + "Index": { + "type": "dword", + "value": 112 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "cryst_on" + }, + "Index": { + "type": "dword", + "value": 111 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "fount_on" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "fount_off" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "pool_on" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "pool_off" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Selecting toggles [On / Off]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 143 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 116 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 114 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Prepare for a spectacular battle between heaven and hell. You may simply spectate, or join the fray. Will you ally with the dark or the light side? Your actions will reveal to whom your allegiance belongs. Which supernatural army will emerge victorious? Which warrior will win the much coveted Arena Championship award? This will all be revealed in.....The Holy War. Are you ready?" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_029a" + }, + "Index": { + "type": "dword", + "value": 142 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_028a" + }, + "Index": { + "type": "dword", + "value": 139 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "scorechek" + }, + "Index": { + "type": "dword", + "value": 138 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "scorechek1" + }, + "Index": { + "type": "dword", + "value": 135 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_029d" + }, + "Index": { + "type": "dword", + "value": 134 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_029dd" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 118 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 117 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select a task." + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_028b4" + }, + "Index": { + "type": "dword", + "value": 133 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_028v" + }, + "Index": { + "type": "dword", + "value": 130 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_028b" + }, + "Index": { + "type": "dword", + "value": 129 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_028" + }, + "Index": { + "type": "dword", + "value": 126 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_028c3" + }, + "Index": { + "type": "dword", + "value": 125 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_028c" + }, + "Index": { + "type": "dword", + "value": 122 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 121 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 120 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please Specify." + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 124 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 123 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset the total casualties suffered by each side. Proceed?" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset all of the monster damage dealt/taken scores. Proceed?" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 132 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 131 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset all of the monster kill scores. Proceed?" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 137 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 136 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Note] This will only reset holy-war-specific player kill/death totals, not the overall totals. Proceed?" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 141 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 140 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset the wins/losses for the dark and light armies. Proceed?\n" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 149 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 148 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 146 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 145 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 144 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Please choose the battle scale." + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 151 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat [Arch Angel Tyriel] to unlock this feature." + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_010" + }, + "Index": { + "type": "dword", + "value": 171 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_010b" + }, + "Index": { + "type": "dword", + "value": 170 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_010ba" + }, + "Index": { + "type": "dword", + "value": 169 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0111" + }, + "Index": { + "type": "dword", + "value": 168 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_011b" + }, + "Index": { + "type": "dword", + "value": 167 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "d2c" + }, + "Index": { + "type": "dword", + "value": 166 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_011d" + }, + "Index": { + "type": "dword", + "value": 165 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_011c" + }, + "Index": { + "type": "dword", + "value": 164 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "d2cd" + }, + "Index": { + "type": "dword", + "value": 163 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_20" + }, + "Index": { + "type": "dword", + "value": 162 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_20b" + }, + "Index": { + "type": "dword", + "value": 161 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "d2cde" + }, + "Index": { + "type": "dword", + "value": 160 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_21" + }, + "Index": { + "type": "dword", + "value": 159 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_21b" + }, + "Index": { + "type": "dword", + "value": 158 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "d2cdef" + }, + "Index": { + "type": "dword", + "value": 157 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_21ca" + }, + "Index": { + "type": "dword", + "value": 156 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_21c" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 154 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 153 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_005" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select the difficulty level." + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_014" + }, + "Index": { + "type": "dword", + "value": 228 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_002s" + }, + "Index": { + "type": "dword", + "value": 227 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002" + }, + "Index": { + "type": "dword", + "value": 226 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_043s" + }, + "Index": { + "type": "dword", + "value": 225 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043" + }, + "Index": { + "type": "dword", + "value": 224 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_003s" + }, + "Index": { + "type": "dword", + "value": 223 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003" + }, + "Index": { + "type": "dword", + "value": 222 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_004x" + }, + "Index": { + "type": "dword", + "value": 221 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004" + }, + "Index": { + "type": "dword", + "value": 220 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_005s" + }, + "Index": { + "type": "dword", + "value": 219 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005" + }, + "Index": { + "type": "dword", + "value": 218 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_006s" + }, + "Index": { + "type": "dword", + "value": 217 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006" + }, + "Index": { + "type": "dword", + "value": 216 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_012s" + }, + "Index": { + "type": "dword", + "value": 215 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012" + }, + "Index": { + "type": "dword", + "value": 214 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_13ac" + }, + "Index": { + "type": "dword", + "value": 212 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13a" + }, + "Index": { + "type": "dword", + "value": 211 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13aca" + }, + "Index": { + "type": "dword", + "value": 209 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_13ab" + }, + "Index": { + "type": "dword", + "value": 208 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_007as" + }, + "Index": { + "type": "dword", + "value": 206 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_007" + }, + "Index": { + "type": "dword", + "value": 205 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "sc_21dx" + }, + "Index": { + "type": "dword", + "value": 203 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "sc_21d" + }, + "Index": { + "type": "dword", + "value": 202 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "sc_21defg" + }, + "Index": { + "type": "dword", + "value": 200 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "sc_21def" + }, + "Index": { + "type": "dword", + "value": 199 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "xpc2" + }, + "Index": { + "type": "dword", + "value": 175 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 174 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 173 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat each monster to unlock the next." + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_0141" + }, + "Index": { + "type": "dword", + "value": 198 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_0142" + }, + "Index": { + "type": "dword", + "value": 197 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002s1" + }, + "Index": { + "type": "dword", + "value": 196 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0021" + }, + "Index": { + "type": "dword", + "value": 195 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043s1" + }, + "Index": { + "type": "dword", + "value": 194 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_0431" + }, + "Index": { + "type": "dword", + "value": 193 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003s1" + }, + "Index": { + "type": "dword", + "value": 192 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_0031" + }, + "Index": { + "type": "dword", + "value": 191 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004x1" + }, + "Index": { + "type": "dword", + "value": 190 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_0041" + }, + "Index": { + "type": "dword", + "value": 189 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005s1" + }, + "Index": { + "type": "dword", + "value": 188 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_0051" + }, + "Index": { + "type": "dword", + "value": 187 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006s1" + }, + "Index": { + "type": "dword", + "value": 186 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_0061" + }, + "Index": { + "type": "dword", + "value": 185 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012s1" + }, + "Index": { + "type": "dword", + "value": 184 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_0121" + }, + "Index": { + "type": "dword", + "value": 183 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13ac1" + }, + "Index": { + "type": "dword", + "value": 182 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13a1" + }, + "Index": { + "type": "dword", + "value": 181 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_012s1a" + }, + "Index": { + "type": "dword", + "value": 180 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_0121x" + }, + "Index": { + "type": "dword", + "value": 179 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_017" + }, + "Index": { + "type": "dword", + "value": 178 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 177 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 176 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Toggle selected monsters [on/off]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 201 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Soul Reaver] Arena Challenge to unlock this feature." + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 204 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Doom Lord] Arena Challenge to unlock this feature." + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 207 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat the first 7 monsters to unlock this feature." + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 210 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat Thor before Arch Angel Tyriel will fight you." + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 213 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat Heaven's Gate Keeper before Thor will fight you." + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 266 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 230 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 229 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_030" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Note] You have activated a special mode for testing builds from the Australis Days of Darkness server.\n\nChoose your challenger!" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 257 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 245 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_024a1" + }, + "Index": { + "type": "dword", + "value": 242 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_024aa" + }, + "Index": { + "type": "dword", + "value": 233 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 232 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 231 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select Option." + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_025a" + }, + "Index": { + "type": "dword", + "value": 241 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_025" + }, + "Index": { + "type": "dword", + "value": 240 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sw2ab" + }, + "Index": { + "type": "dword", + "value": 239 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sw2a" + }, + "Index": { + "type": "dword", + "value": 238 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sw2av" + }, + "Index": { + "type": "dword", + "value": 237 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sw2" + }, + "Index": { + "type": "dword", + "value": 236 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 235 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 234 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select mode." + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 244 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 243 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "This option will become available when you unlock the [Holy War] feature. " + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 254 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 251 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 248 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 247 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 246 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "What do you want to reset?" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 250 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 249 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills, deaths, hits and damage score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 253 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 252 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] Once you reset this score it is gone forever. Proceed?" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 256 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 255 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warning] This will reset your kills and deaths score. Your rank will also be reset to the lowest rating. Do you wish to proceed?" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "cryst_off" + }, + "Index": { + "type": "dword", + "value": 265 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "cryst_on" + }, + "Index": { + "type": "dword", + "value": 264 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "fount_on" + }, + "Index": { + "type": "dword", + "value": 263 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "fount_off" + }, + "Index": { + "type": "dword", + "value": 262 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "pool_on" + }, + "Index": { + "type": "dword", + "value": 261 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "pool_off" + }, + "Index": { + "type": "dword", + "value": 260 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 259 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 258 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Selecting toggles [On / Off]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 412 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 403 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 394 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 393 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 392 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 391 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 390 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 389 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 388 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 387 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 386 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 385 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 384 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 269 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 268 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 267 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select your opponent." + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_0141" + }, + "Index": { + "type": "dword", + "value": 360 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_0142" + }, + "Index": { + "type": "dword", + "value": 359 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002s1" + }, + "Index": { + "type": "dword", + "value": 358 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0021" + }, + "Index": { + "type": "dword", + "value": 357 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043s1" + }, + "Index": { + "type": "dword", + "value": 356 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_0431" + }, + "Index": { + "type": "dword", + "value": 355 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003s1" + }, + "Index": { + "type": "dword", + "value": 354 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_0031" + }, + "Index": { + "type": "dword", + "value": 353 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004x1" + }, + "Index": { + "type": "dword", + "value": 352 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_0041" + }, + "Index": { + "type": "dword", + "value": 351 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005s1" + }, + "Index": { + "type": "dword", + "value": 350 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_0051" + }, + "Index": { + "type": "dword", + "value": 349 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006s1" + }, + "Index": { + "type": "dword", + "value": 348 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_0061" + }, + "Index": { + "type": "dword", + "value": 347 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012s1" + }, + "Index": { + "type": "dword", + "value": 346 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_0121" + }, + "Index": { + "type": "dword", + "value": 345 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13ac1" + }, + "Index": { + "type": "dword", + "value": 344 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13a1" + }, + "Index": { + "type": "dword", + "value": 343 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_012s1a" + }, + "Index": { + "type": "dword", + "value": 342 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_0121x" + }, + "Index": { + "type": "dword", + "value": 341 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_017" + }, + "Index": { + "type": "dword", + "value": 340 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 271 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 270 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Toggle selected monsters [on/off]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_014" + }, + "Index": { + "type": "dword", + "value": 339 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_002s" + }, + "Index": { + "type": "dword", + "value": 304 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002" + }, + "Index": { + "type": "dword", + "value": 303 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_043s" + }, + "Index": { + "type": "dword", + "value": 302 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043" + }, + "Index": { + "type": "dword", + "value": 301 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_003s" + }, + "Index": { + "type": "dword", + "value": 300 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003" + }, + "Index": { + "type": "dword", + "value": 299 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_004x" + }, + "Index": { + "type": "dword", + "value": 298 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004" + }, + "Index": { + "type": "dword", + "value": 297 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_005s" + }, + "Index": { + "type": "dword", + "value": 296 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005" + }, + "Index": { + "type": "dword", + "value": 295 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_006s" + }, + "Index": { + "type": "dword", + "value": 294 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006" + }, + "Index": { + "type": "dword", + "value": 293 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_012s" + }, + "Index": { + "type": "dword", + "value": 291 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012" + }, + "Index": { + "type": "dword", + "value": 290 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_13ac" + }, + "Index": { + "type": "dword", + "value": 288 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13a" + }, + "Index": { + "type": "dword", + "value": 287 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13aca" + }, + "Index": { + "type": "dword", + "value": 285 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_13ab" + }, + "Index": { + "type": "dword", + "value": 284 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_007as" + }, + "Index": { + "type": "dword", + "value": 282 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_007" + }, + "Index": { + "type": "dword", + "value": 281 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "sc_21dx" + }, + "Index": { + "type": "dword", + "value": 279 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "sc_21d" + }, + "Index": { + "type": "dword", + "value": 278 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "sc_21defg" + }, + "Index": { + "type": "dword", + "value": 276 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "sc_21def" + }, + "Index": { + "type": "dword", + "value": 275 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "xpc2" + }, + "Index": { + "type": "dword", + "value": 274 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 273 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 272 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat each monster to unlock the next." + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 277 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Hero] Arena Challenge to unlock this feature." + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 280 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat Lord Lucifer to unlock this feature." + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 283 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat the first 7 monsters to unlock this feature." + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 286 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat Baal before Lord Lucifer will fight you." + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 289 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat Lucifer's Mistress before Baal will fight you." + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 292 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Apprentice] Arena Challenge before you can duel this monster." + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_014" + }, + "Index": { + "type": "dword", + "value": 338 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_002s" + }, + "Index": { + "type": "dword", + "value": 337 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002" + }, + "Index": { + "type": "dword", + "value": 336 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_043s" + }, + "Index": { + "type": "dword", + "value": 335 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043" + }, + "Index": { + "type": "dword", + "value": 334 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_003s" + }, + "Index": { + "type": "dword", + "value": 333 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003" + }, + "Index": { + "type": "dword", + "value": 332 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_004x" + }, + "Index": { + "type": "dword", + "value": 331 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004" + }, + "Index": { + "type": "dword", + "value": 330 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_005s" + }, + "Index": { + "type": "dword", + "value": 329 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005" + }, + "Index": { + "type": "dword", + "value": 328 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_006s" + }, + "Index": { + "type": "dword", + "value": 327 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006" + }, + "Index": { + "type": "dword", + "value": 326 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_012s" + }, + "Index": { + "type": "dword", + "value": 324 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012" + }, + "Index": { + "type": "dword", + "value": 323 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_13ac" + }, + "Index": { + "type": "dword", + "value": 321 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13a" + }, + "Index": { + "type": "dword", + "value": 320 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13ac" + }, + "Index": { + "type": "dword", + "value": 318 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_13ab" + }, + "Index": { + "type": "dword", + "value": 317 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_007as" + }, + "Index": { + "type": "dword", + "value": 315 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_007" + }, + "Index": { + "type": "dword", + "value": 314 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "sc_21dx" + }, + "Index": { + "type": "dword", + "value": 312 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "sc_21d" + }, + "Index": { + "type": "dword", + "value": 311 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "sc_21defg" + }, + "Index": { + "type": "dword", + "value": 309 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "sc_21def" + }, + "Index": { + "type": "dword", + "value": 308 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "xpc2" + }, + "Index": { + "type": "dword", + "value": 307 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 26, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 306 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 27, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 305 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The blue opponents will become unlocked as you complete the green ones. Please select again." + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 310 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Grand Master] Arena Challenge to unlock this feature." + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 313 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Warrior Lord] Arena Challenge to unlock this feature." + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 316 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat the first 7 monsters to unlock this feature." + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 319 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must Defeat Baal before Lord Lucifer will fight you." + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 322 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Warrior Lord] Arena Challenge before you can duel this monster." + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 325 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must complete the [Warrior] Arena Challenge before you can duel this monster." + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_0141" + }, + "Index": { + "type": "dword", + "value": 383 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_0142" + }, + "Index": { + "type": "dword", + "value": 382 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002s1" + }, + "Index": { + "type": "dword", + "value": 381 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0021" + }, + "Index": { + "type": "dword", + "value": 380 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043s1" + }, + "Index": { + "type": "dword", + "value": 379 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_0431" + }, + "Index": { + "type": "dword", + "value": 378 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003s1" + }, + "Index": { + "type": "dword", + "value": 377 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_0031" + }, + "Index": { + "type": "dword", + "value": 376 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004x1" + }, + "Index": { + "type": "dword", + "value": 375 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_0041" + }, + "Index": { + "type": "dword", + "value": 374 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005s1" + }, + "Index": { + "type": "dword", + "value": 373 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_0051" + }, + "Index": { + "type": "dword", + "value": 372 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006s1" + }, + "Index": { + "type": "dword", + "value": 371 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_0061" + }, + "Index": { + "type": "dword", + "value": 370 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012s1" + }, + "Index": { + "type": "dword", + "value": 369 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_0121" + }, + "Index": { + "type": "dword", + "value": 368 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13ac1" + }, + "Index": { + "type": "dword", + "value": 367 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13a1" + }, + "Index": { + "type": "dword", + "value": 366 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_012s1a" + }, + "Index": { + "type": "dword", + "value": 365 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_0121x" + }, + "Index": { + "type": "dword", + "value": 364 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_017" + }, + "Index": { + "type": "dword", + "value": 363 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 362 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 361 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Toggle selected monsters [on/off]" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 402 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 401 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 400 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 399 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 398 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 397 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 396 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 395 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How many?" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 411 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 410 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 409 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 408 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 407 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 406 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 405 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 404 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How many?" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 420 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 419 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 418 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 417 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 416 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 415 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 414 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 413 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How many?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 1666 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Demon Prince] = COMPLETED =" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_god" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Demon Prince]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Demon Prince] " + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Soul Reaver] = COMPLETED =" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Soul Reaver]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Soul Reaver] " + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dark Master]= COMPLETED =" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dark Master]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dark Master] " + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Doom Lord] =COMPLETED=" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Doom Lord]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Doom Lord] " + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slayer] = COMPLETED =" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slayer]" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slayer] " + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Adept] = COMPLETED =" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Adept]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Custom Battle]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Start Battle]" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022x" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Tyriel" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Tyriel" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_024" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thor: God of Thunder" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_023" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thor: God of Thunder" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Heaven's Gate Keeper" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Heaven's Gate Keeper" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_020" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shiva the Destroyer" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_019" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shiva the Destroyer" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_018" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lord" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_017" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lord" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_016" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Soul Warrior" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_015" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Soul Warrior" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_014" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_013" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_012" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Demon Hunter" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_011" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Demon Hunter" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_010" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Divine Archer" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_009" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Divine Archer" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "asa" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragon" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_008" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragon" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allba" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses and Defenders]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses and Defenders]" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allca" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses]" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses]" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_all2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Defenders]" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Defenders]" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "final_boss2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Tyriel" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Tyriel" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_lord2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thor: God of Thunder" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thor: God of Thunder" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_mistress2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Elk King" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Elk King" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_marilith2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shiva the Destroyer" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shiva the Destroyer" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pale2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lord" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lord" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_fiend2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Soul Warrior" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Soul Warrior" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pitfiend2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dopple2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Archmage" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Archmage" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_blarog2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Divine Archer" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Divine Archer" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dragon2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragon" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Options]" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set Scoreboard Mode]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War Team Stats [** Active **]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sc2b" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War Team Stats [** Inactive **]" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War PC Stats [** Active **]" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sc2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War PC Stats [** Inactive **]" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Arena PC Stats [** Active **]" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_026" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Arena PC Stats [** Inactive **]" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set Scoreboard Mode]" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Player Score]" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All]" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_all_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hits/Damage]" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_hitdam" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kills/Deaths]" + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Activate/Deactivate Arena Facilities]" + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_pool2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Rejeuvination Pools]" + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_pool2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Rejeuvination Pools]" + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_fount2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Restoration Fountains]" + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_fount2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Restoration Fountains]" + } + } + }, + { + "__struct_id": 111, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_cryst" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Power Crystals]" + } + } + }, + { + "__struct_id": 112, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_cryst" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Power Crystals]" + } + } + }, + { + "__struct_id": 113, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "set_all_chall_0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Holy War]" + } + } + }, + { + "__struct_id": 114, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 115, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back\n" + } + } + }, + { + "__struct_id": 116, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Options]" + } + } + }, + { + "__struct_id": 117, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 118, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 119, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset NPC Scores]" + } + } + }, + { + "__struct_id": 120, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 121, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 122, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Total Team Casualties]" + } + } + }, + { + "__struct_id": 123, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 124, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_totcas" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 125, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Total Team Casualties]" + } + } + }, + { + "__struct_id": 126, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Stats]" + } + } + }, + { + "__struct_id": 127, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 128, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_mscores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 129, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Damage Stats] " + } + } + }, + { + "__struct_id": 130, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kill Score]" + } + } + }, + { + "__struct_id": 131, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 132, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_mscores2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 133, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kill Score] " + } + } + }, + { + "__struct_id": 134, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset NPC Scores]" + } + } + }, + { + "__struct_id": 135, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset PC Kill/Death Totals]" + } + } + }, + { + "__struct_id": 136, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 137, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_pchwscores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 138, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset PC Kill/Death Totals]" + } + } + }, + { + "__struct_id": 139, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Holy War Scores]" + } + } + }, + { + "__struct_id": 140, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 141, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_hwarsc2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 142, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Holy War Scores]" + } + } + }, + { + "__struct_id": 143, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Begin the Holy War]" + } + } + }, + { + "__struct_id": 144, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 145, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 146, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "holy_war_duel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Duel]" + } + } + }, + { + "__struct_id": 147, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "holy_war_team" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fight]" + } + } + }, + { + "__struct_id": 148, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "holy_war_batt" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Battle]" + } + } + }, + { + "__struct_id": 149, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "holy_war" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[War]" + } + } + }, + { + "__struct_id": 150, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Holy War]" + } + } + }, + { + "__struct_id": 151, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 152, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "set_all_chall_0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[The Arena of Champions Challenge]" + } + } + }, + { + "__struct_id": 153, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 154, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 155, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Demon Prince] = COMPLETED =" + } + } + }, + { + "__struct_id": 156, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_god" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Demon Prince]" + } + } + }, + { + "__struct_id": 157, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Demon Prince] " + } + } + }, + { + "__struct_id": 158, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Soul Reaver] = COMPLETED =" + } + } + }, + { + "__struct_id": 159, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Soul Reaver]" + } + } + }, + { + "__struct_id": 160, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Soul Reaver] " + } + } + }, + { + "__struct_id": 161, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dark Master]= COMPLETED =" + } + } + }, + { + "__struct_id": 162, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dark Master]" + } + } + }, + { + "__struct_id": 163, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Dark Master] " + } + } + }, + { + "__struct_id": 164, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Doom Lord] =COMPLETED=" + } + } + }, + { + "__struct_id": 165, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Doom Lord]" + } + } + }, + { + "__struct_id": 166, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Doom Lord] " + } + } + }, + { + "__struct_id": 167, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slayer] = COMPLETED =" + } + } + }, + { + "__struct_id": 168, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slayer]" + } + } + }, + { + "__struct_id": 169, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slayer] " + } + } + }, + { + "__struct_id": 170, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Adept] = COMPLETED =" + } + } + }, + { + "__struct_id": 171, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Adept]" + } + } + }, + { + "__struct_id": 172, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "set_all_chall_0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Deathmatch]" + } + } + }, + { + "__struct_id": 173, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 174, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 175, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Custom Battle]" + } + } + }, + { + "__struct_id": 176, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 177, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 178, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Start Battle]" + } + } + }, + { + "__struct_id": 179, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022x" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Tyriel" + } + } + }, + { + "__struct_id": 180, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Tyriel" + } + } + }, + { + "__struct_id": 181, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_024" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thor: God of Thunder" + } + } + }, + { + "__struct_id": 182, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_023" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thor: God of Thunder" + } + } + }, + { + "__struct_id": 183, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Heaven's Gate Keeper" + } + } + }, + { + "__struct_id": 184, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Heaven's Gate Keeper" + } + } + }, + { + "__struct_id": 185, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_020" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shiva the Destroyer" + } + } + }, + { + "__struct_id": 186, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_019" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shiva the Destroyer" + } + } + }, + { + "__struct_id": 187, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_018" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lord" + } + } + }, + { + "__struct_id": 188, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_017" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lord" + } + } + }, + { + "__struct_id": 189, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_016" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Soul Warrior" + } + } + }, + { + "__struct_id": 190, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_015" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Soul Warrior" + } + } + }, + { + "__struct_id": 191, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_014" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel" + } + } + }, + { + "__struct_id": 192, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_013" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel" + } + } + }, + { + "__struct_id": 193, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_012" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Demon Hunter" + } + } + }, + { + "__struct_id": 194, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_011" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Demon Hunter" + } + } + }, + { + "__struct_id": 195, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_010" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Divine Archer" + } + } + }, + { + "__struct_id": 196, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_009" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Divine Archer" + } + } + }, + { + "__struct_id": 197, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "asa" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragon" + } + } + }, + { + "__struct_id": 198, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_008" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragon" + } + } + }, + { + "__struct_id": 199, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allba" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ultimate Battle]" + } + } + }, + { + "__struct_id": 200, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ultimate Battle]" + } + } + }, + { + "__struct_id": 201, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 202, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allca" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mega Battle]" + } + } + }, + { + "__struct_id": 203, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mega Battle]" + } + } + }, + { + "__struct_id": 204, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 205, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_all2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Super Battle]" + } + } + }, + { + "__struct_id": 206, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Super Battle]" + } + } + }, + { + "__struct_id": 207, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 208, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "final_boss2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Tyriel" + } + } + }, + { + "__struct_id": 209, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Tyriel" + } + } + }, + { + "__struct_id": 210, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 211, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_lord2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thor: God of Thunder" + } + } + }, + { + "__struct_id": 212, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thor: God of Thunder" + } + } + }, + { + "__struct_id": 213, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 214, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_mistress2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Elk King" + } + } + }, + { + "__struct_id": 215, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Elk King" + } + } + }, + { + "__struct_id": 216, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_marilith2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shiva the Destroyer" + } + } + }, + { + "__struct_id": 217, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shiva the Destroyer" + } + } + }, + { + "__struct_id": 218, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pale2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lord" + } + } + }, + { + "__struct_id": 219, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lord" + } + } + }, + { + "__struct_id": 220, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_fiend2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Soul Warrior" + } + } + }, + { + "__struct_id": 221, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Soul Warrior" + } + } + }, + { + "__struct_id": 222, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pitfiend2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel" + } + } + }, + { + "__struct_id": 223, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel" + } + } + }, + { + "__struct_id": 224, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dopple2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Archmage" + } + } + }, + { + "__struct_id": 225, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Archmage" + } + } + }, + { + "__struct_id": 226, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_blarog2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Divine Archer" + } + } + }, + { + "__struct_id": 227, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Divine Archer" + } + } + }, + { + "__struct_id": 228, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dragon2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragon" + } + } + }, + { + "__struct_id": 229, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 230, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Options]" + } + } + }, + { + "__struct_id": 231, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 232, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_050" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 233, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set Scoreboard Mode]" + } + } + }, + { + "__struct_id": 234, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 235, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 236, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War Team Stats [** Active **]" + } + } + }, + { + "__struct_id": 237, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sc2b" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War Team Stats [** Inactive **]" + } + } + }, + { + "__struct_id": 238, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War PC Stats [** Active **]" + } + } + }, + { + "__struct_id": 239, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sc2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Holy War PC Stats [** Inactive **]" + } + } + }, + { + "__struct_id": 240, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Arena PC Stats [** Active **]" + } + } + }, + { + "__struct_id": 241, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_026" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Score Mode: Arena PC Stats [** Inactive **]" + } + } + }, + { + "__struct_id": 242, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Set Scoreboard Mode]" + } + } + }, + { + "__struct_id": 243, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 244, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 245, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Reset Player Score]" + } + } + }, + { + "__struct_id": 246, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 247, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 248, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All]" + } + } + }, + { + "__struct_id": 249, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 250, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_all_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 251, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hits/Damage]" + } + } + }, + { + "__struct_id": 252, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 253, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_hitdam" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 254, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Kills/Deaths]" + } + } + }, + { + "__struct_id": 255, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 256, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "reset_scores" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + }, + { + "__struct_id": 257, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Activate/Deactivate Arena Facilities]" + } + } + }, + { + "__struct_id": 258, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 259, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 260, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_pool2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Rejeuvination Pools]" + } + } + }, + { + "__struct_id": 261, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_pool2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Rejeuvination Pools]" + } + } + }, + { + "__struct_id": 262, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_fount2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Restoration Fountains]" + } + } + }, + { + "__struct_id": 263, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_fount2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Restoration Fountains]" + } + } + }, + { + "__struct_id": 264, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_cryst" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Power Crystals]" + } + } + }, + { + "__struct_id": 265, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cont_cryst" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Power Crystals]" + } + } + }, + { + "__struct_id": 266, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "set_all_chall_0" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Deathmatch]" + } + } + }, + { + "__struct_id": 267, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 268, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_050" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 269, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Custom Battle]" + } + } + }, + { + "__struct_id": 270, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 271, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 272, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 273, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 274, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Custom Battle]" + } + } + }, + { + "__struct_id": 275, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allb" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ultimate Battle]" + } + } + }, + { + "__struct_id": 276, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Ultimate Battle]" + } + } + }, + { + "__struct_id": 277, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 278, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allc" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mega Battle]" + } + } + }, + { + "__struct_id": 279, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mega Battle]" + } + } + }, + { + "__struct_id": 280, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 281, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Super Battle]" + } + } + }, + { + "__struct_id": 282, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Super Battle]" + } + } + }, + { + "__struct_id": 283, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 284, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "final_boss" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 285, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 286, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 287, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_lord" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 288, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 289, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 290, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_mistress" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 291, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 292, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 293, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_marilith" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 294, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Berserker" + } + } + }, + { + "__struct_id": 295, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pale" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic " + } + } + }, + { + "__struct_id": 296, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic" + } + } + }, + { + "__struct_id": 297, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_fiend" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 298, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 299, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pitfiend" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon " + } + } + }, + { + "__struct_id": 300, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon" + } + } + }, + { + "__struct_id": 301, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dopple" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 302, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 303, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_blarog" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 304, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 305, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 306, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 307, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Custom Group]" + } + } + }, + { + "__struct_id": 308, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allb" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses and Minions]" + } + } + }, + { + "__struct_id": 309, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses and Minions]" + } + } + }, + { + "__struct_id": 310, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 311, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allc" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses]" + } + } + }, + { + "__struct_id": 312, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses]" + } + } + }, + { + "__struct_id": 313, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 314, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_all" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Minions]" + } + } + }, + { + "__struct_id": 315, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Minions]" + } + } + }, + { + "__struct_id": 316, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 317, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "final_boss" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 318, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 319, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 320, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_lord" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 321, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 322, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 323, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_mistress" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 324, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 325, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(continue)" + } + } + }, + { + "__struct_id": 326, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_marilith" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Berserker" + } + } + }, + { + "__struct_id": 327, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 328, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pale" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic " + } + } + }, + { + "__struct_id": 329, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic" + } + } + }, + { + "__struct_id": 330, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_fiend" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 331, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 332, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pitfiend" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon " + } + } + }, + { + "__struct_id": 333, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon" + } + } + }, + { + "__struct_id": 334, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dopple" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 335, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 336, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_blarog" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 337, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 338, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dragon" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm " + } + } + }, + { + "__struct_id": 339, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dragon" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm " + } + } + }, + { + "__struct_id": 340, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Start Battle]" + } + } + }, + { + "__struct_id": 341, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022x" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 342, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 343, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_024" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 344, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_023" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 345, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 346, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 347, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_020" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 348, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_019" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 349, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_018" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic " + } + } + }, + { + "__struct_id": 350, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_017" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic" + } + } + }, + { + "__struct_id": 351, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_016" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 352, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_015" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 353, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_014" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon " + } + } + }, + { + "__struct_id": 354, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_013" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon" + } + } + }, + { + "__struct_id": 355, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_012" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 356, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_011" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 357, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_010" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 358, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_009" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 359, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "asa" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm " + } + } + }, + { + "__struct_id": 360, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_008" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm" + } + } + }, + { + "__struct_id": 361, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 362, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 363, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Start Battle]" + } + } + }, + { + "__struct_id": 364, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022x" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 365, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + } + }, + { + "__struct_id": 366, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_024" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 367, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_023" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction" + } + } + }, + { + "__struct_id": 368, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 369, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress " + } + } + }, + { + "__struct_id": 370, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_020" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 371, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_019" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Beserker" + } + } + }, + { + "__struct_id": 372, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_018" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic " + } + } + }, + { + "__struct_id": 373, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_017" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic" + } + } + }, + { + "__struct_id": 374, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_016" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 375, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_015" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon" + } + } + }, + { + "__struct_id": 376, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_014" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon " + } + } + }, + { + "__struct_id": 377, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_013" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "War Demon" + } + } + }, + { + "__struct_id": 378, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_012" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 379, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_011" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Doom Render" + } + } + }, + { + "__struct_id": 380, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_010" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 381, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_009" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord" + } + } + }, + { + "__struct_id": 382, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "asa" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm " + } + } + }, + { + "__struct_id": 383, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_008" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm" + } + } + }, + { + "__struct_id": 384, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_bane_n" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Bane" + } + } + }, + { + "__struct_id": 385, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "n_starseeker" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Starseeker" + } + } + }, + { + "__struct_id": 386, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_lord_n" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Axle Steelgrind" + } + } + }, + { + "__struct_id": 387, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "n_blade" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "(KH) Blademaster" + } + } + }, + { + "__struct_id": 388, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "n_johnny" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Johnny Rogue" + } + } + }, + { + "__struct_id": 389, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_mistress_n" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Darkstarr" + } + } + }, + { + "__struct_id": 390, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_marilith_n" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Demilich" + } + } + }, + { + "__struct_id": 391, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pale_n" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Hell Wurm " + } + } + }, + { + "__struct_id": 392, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_fiend_d" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ancient Red dragon" + } + } + }, + { + "__struct_id": 393, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "n_paremus" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Paremus Devil" + } + } + }, + { + "__struct_id": 394, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Damned Wizzard" + } + } + }, + { + "__struct_id": 395, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 396, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 397, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wz6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "6" + } + } + }, + { + "__struct_id": 398, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wz5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "5" + } + } + }, + { + "__struct_id": 399, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wz4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "4" + } + } + }, + { + "__struct_id": 400, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wz3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "3" + } + } + }, + { + "__struct_id": 401, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wz2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "2" + } + } + }, + { + "__struct_id": 402, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wz1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "1" + } + } + }, + { + "__struct_id": 403, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Damned Cleric" + } + } + }, + { + "__struct_id": 404, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 405, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 406, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wc6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "6" + } + } + }, + { + "__struct_id": 407, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wc5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "5" + } + } + }, + { + "__struct_id": 408, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wc4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "4" + } + } + }, + { + "__struct_id": 409, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wc3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "3" + } + } + }, + { + "__struct_id": 410, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wc2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "2" + } + } + }, + { + "__struct_id": 411, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_wc1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "1" + } + } + }, + { + "__struct_id": 412, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Damned Warrior" + } + } + }, + { + "__struct_id": 413, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 414, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 415, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_w6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "6" + } + } + }, + { + "__struct_id": 416, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_w5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "5" + } + } + }, + { + "__struct_id": 417, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_w4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "4" + } + } + }, + { + "__struct_id": 418, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_w3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "3" + } + } + }, + { + "__struct_id": 419, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_w2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "2" + } + } + }, + { + "__struct_id": 420, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "damned_w1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "1" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_050" + }, + "Index": { + "type": "dword", + "value": 36 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/spawner4.dlg.json b/_module/dlg/spawner4.dlg.json new file mode 100644 index 0000000..28410c3 --- /dev/null +++ b/_module/dlg/spawner4.dlg.json @@ -0,0 +1,3545 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "clear_group" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "master_switch" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Welcome to the Arena of Heroes. Choose your challenge. " + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You must defeat each monster to unlock the next." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sc_0141" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_0142" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "sc_002s1" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_0021" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sc_043s1" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sc_0431" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sc_003s1" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sc_0031" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "sc_004x1" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "sc_0041" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "sc_005s1" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "sc_0051" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "sc_006s1" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "sc_0061" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "sc_012s1" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "sc_0121" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "sc_13ac1" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "sc_13a1" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "sc_012s1a" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "sc_0121x" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "sc_017" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Toggle selected monsters [on/off]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "at_005" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select the difficulty level." + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 137 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Deathmatch]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Custom Battle]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "clear_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_group" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Start Battle]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022x" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Tyriel" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Tyriel" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_024" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thor: God of Thunder" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_023" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thor: God of Thunder" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_022" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Heaven's Gate Keeper" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_021" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Heaven's Gate Keeper" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_020" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shiva the Destroyer" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_019" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shiva the Destroyer" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_018" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lord" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_017" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lord" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_016" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Soul Warrior" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_015" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Soul Warrior" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_014" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_013" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_012" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Demon Hunter" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_011" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Demon Hunter" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_010" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Divine Archer" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_009" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Divine Archer" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "asa" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragon" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "at_008" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragon" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allba" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses and Defenders]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_allca" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Bosses]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spawn_all2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[All Defenders]" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "final_boss2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Tyriel" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_lord2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thor: God of Thunder" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_mistress2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Heaven's Gate Keeper" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_marilith2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shiva the Destroyer" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pale2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lord" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_fiend2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Soul Warrior" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_pitfiend2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dopple2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Demon Hunter" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_blarog2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Divine Archer" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "m_dragon2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragon" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[The Arena of Champions Challenge]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_god" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[God]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Hero]" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_hard" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Grand Master]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_med" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior Lord]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Warrior]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "s_challenge_easy" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Apprentice]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/specialty.dlg.json b/_module/dlg/specialty.dlg.json new file mode 100644 index 0000000..add74c5 --- /dev/null +++ b/_module/dlg/specialty.dlg.json @@ -0,0 +1,633 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "" + }, + "EndConversation": { + "type": "resref", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Specialty gear is only found in an Official Campaign." + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Store loaded successfully.]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 25 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exit]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_enserric" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Intelligent blades." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_capp" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Apparel." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_carmor" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Clothing and armor." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_crange" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ranged weapons and ammo." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_cgm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Melee weapons." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "openstore" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/standard.dlg.json b/_module/dlg/standard.dlg.json new file mode 100644 index 0000000..a61c432 --- /dev/null +++ b/_module/dlg/standard.dlg.json @@ -0,0 +1,785 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "" + }, + "EndConversation": { + "type": "resref", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[The standard equipment includes non-magical doo-dads, items with enhancement bonuses, and many artifacts as well.]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Store loaded successfully]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 38 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exit]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_cep" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "CEP items." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_apparel" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Apparel." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_stdhelm" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Helmets and shields." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_stdarmor" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Clothing and armor." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_ranged" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ranged weapons and ammo." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_exomelee" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Exotic melee weapons." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_genmelee" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Generic melee weapons." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "openstore" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/sundial.dlg.json b/_module/dlg/sundial.dlg.json new file mode 100644 index 0000000..ec5eef1 --- /dev/null +++ b/_module/dlg/sundial.dlg.json @@ -0,0 +1,3523 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "" + }, + "EndConversation": { + "type": "resref", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sc_019" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your weapon?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "fire_lbd1" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "fire_lbd1f" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "fire_lbd1c" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "fire_lbd1cc" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "fire_lbd1e" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "fire_lbd1ee" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "fire_lbd1a" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "fire_lbd1aa" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "fire_lbd1n" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "fire_lbd1nn" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "fire_lbd1po" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "fire_lbd1popo" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "fire_lbd1so" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "fire_lbd1soso" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "fire_lbd1d" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "fire_lbd1da" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "fire_lbd1b" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "fire_lbd1bb" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "fire_lbd1s" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "fire_lbd1ss" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "fire_lbd1p" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "fire_lbd1pp" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "fire_lbd1mc" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "fire_lbd1mcmc" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Which damage type?" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose skill" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose spell class [Level is random]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose a feat" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 168 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "regen_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Regeneration Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Damage Bonus]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Massive Criticals] *** UPGRADED ***" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mass_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Massive Criticals]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Piercing Damage *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pier_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Piercing Damage]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Slashing Damage] *** UPGRADED ***" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "slash_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Slashing Damage]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Bludgeoning Damage] *** UPGRADED ***" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "blud_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Bludgeoning Damage]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Divine Damage *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "divine_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Divine Damage]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Sonic Damage] *** UPGRADED ***" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sonic_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Sonic Damage]" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Positive Damage] *** UPGRADED ***" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pos_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Positive Damage]" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Negative Damage] *** UPGRADED ***" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "neg_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Negative Damage]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Acid Damage] *** UPGRADED ***" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acid_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Acid Damage]" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Electrical Damage] *** UPGRADED ***" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "elec_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Electrical Damage]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Cold Damage] *** UPGRADED ***" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cold_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Cold Damage]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Fire Damage] *** UPGRADED ***" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fire_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Lesser Fire Damage]" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Skill Bonus]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "spot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Spot]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "parry_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Parry]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "disc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Discipline]" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "conc_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Concentration]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Spell Slot]" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "wiz_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Wizard]" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sorc_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sorcerer]" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pally_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Paladin]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "druid_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Druid]" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cler_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cleric]" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bard_slot_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bard]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bonus Feat]" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "patt_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Power Attack]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "knockdown_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Knockdown]" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "cleave_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cleave]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/superstore.dlg.json b/_module/dlg/superstore.dlg.json new file mode 100644 index 0000000..7637c36 --- /dev/null +++ b/_module/dlg/superstore.dlg.json @@ -0,0 +1,4856 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select a category of stores from below.]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select a general store from below.]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select a nature store from below.]" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select a black market supplier from below.]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select a magic shop from below.]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select a temple from below.]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Select a weaponsmith/armory from below.]" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Store loaded successfully]" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 210 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Exit]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "General Suppliers." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_genie" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Volkarion's Planar store." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_shadow" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Undrentide Shadow Merchant." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_asabi" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Asabi store." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_mush" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Musharak's store." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_kat" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Katriana's store." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_spec3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Beorunna's Well Trading Post." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_gen2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The Cracked Anvil, Port Llast." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_gen1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neverwintan Merchant." + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Nature Stores." + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_nat6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Drow gear." + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_nat5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Hilltop Herbalist gear." + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_nat4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Besieged Neverwintan gear." + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_nat3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Uthgardt Druid gear." + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_nat2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Port Llast Ranger's gear." + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_nat1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neverwintan Druid's gear." + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Black Market Stores." + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_thief8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Cania rogue store." + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_thief7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Drow inventory." + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_thief6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Waterdhavian blackmarket." + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_thief5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Torias' second blackmarket store." + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_thief4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Torias' first blackmarket store." + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_thief3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Ophala's inventory." + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_thief2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The Shady Characters' and the Luskan inventories." + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_thief1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The Seedy Tavern's auction." + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Magic Shops." + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_mage8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Lith My'athar mage store." + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_mage7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Sobrey's Magic Shoppe." + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_mage6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Daschnaya's store." + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_mage5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Thay Mart." + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_mage4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Besieged Cloaktower store." + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_mage3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Many-Starred Cloak's Enclave store." + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_spec2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Colmarr's Luskan store." + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_mage2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Eltoora's Laboratory store." + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_spec1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Cloaktower Guild Members' store." + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_mage1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Cloaktower Guild store." + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Temple Armories." + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_temple6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Eilistraee armory." + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_temple5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Yawning Portal armory." + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_temple" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Hilltop Temple armory." + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_temple4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Besieged Neverwinter armory." + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_temple3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Beorunna's Well armory." + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_temple2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Port Llast armory." + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_temple1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Neverwinter armory." + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Weapons and Armorers." + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Back]" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_weap9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Gru'ul's inventory." + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_weap8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Rizolvir's shop in Cania." + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_weap7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Rizolvir's shop." + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_weap6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Argali's Weapons and Armor." + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_weap5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Hilltop's smithy." + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_weap4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "High-grade Shining Knight Arms." + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_weap3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Mercenary Enclave's inventory." + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_weap2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "The Cracked Anvil." + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_spec1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Helm's Hold armory." + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "create_weap1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Shining Knight Arms." + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "openstore" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/token_pixie.dlg.json b/_module/dlg/token_pixie.dlg.json new file mode 100644 index 0000000..086ae28 --- /dev/null +++ b/_module/dlg/token_pixie.dlg.json @@ -0,0 +1,211 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How can I help you, ?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 15 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Forget about it" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "start_a_merch" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "I wish to purchase Arena Tokens" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/vote.dlg.json b/_module/dlg/vote.dlg.json new file mode 100644 index 0000000..716436c --- /dev/null +++ b/_module/dlg/vote.dlg.json @@ -0,0 +1,211 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EndConversation": { + "type": "resref", + "value": "nw_walk_wp" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Do you want the Power Crystals enabled?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 9 + }, + "PreventZoomIn": { + "type": "byte", + "value": 0 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[No]" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "pvote" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Yes]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/weap_enh.dlg.json b/_module/dlg/weap_enh.dlg.json new file mode 100644 index 0000000..98e6967 --- /dev/null +++ b/_module/dlg/weap_enh.dlg.json @@ -0,0 +1,11767 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "" + }, + "EndConversation": { + "type": "resref", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "mc_not2" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "mc_not" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like to imbue your weapon?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "mcngdone_12" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "mcngred_02" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "mcnged_12" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "mcngred1_12" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "ngred_22mc" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "mcngred_32" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "mcngred_42" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "ngred_62mc" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "dvmax_damred12" + }, + "Index": { + "type": "dword", + "value": 149 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "dvmax_damred12a" + }, + "Index": { + "type": "dword", + "value": 148 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "ngmax_damred12" + }, + "Index": { + "type": "dword", + "value": 137 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "ngmax_damred2" + }, + "Index": { + "type": "dword", + "value": 136 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "pomax_reached12" + }, + "Index": { + "type": "dword", + "value": 125 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "pomax_reached2" + }, + "Index": { + "type": "dword", + "value": 124 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "blmax_reached12" + }, + "Index": { + "type": "dword", + "value": 113 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "blmax_reached2" + }, + "Index": { + "type": "dword", + "value": 112 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "pr_max_reache212" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "pr_max_reache22" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "slmax_limit12" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "slmax_limit2" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "acmax_reached12" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "acmax_reached2" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "comax_damred12" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "comax_damred2" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "fimax_reached12" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "fimax_reached2" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "elmax_reached22" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "elmax_reached32" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "somax_reached22" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "somax_reached32" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "mamax_reached12" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "mamax_reached2" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose damage type?" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "madone_12" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "mared_02" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "mared_1222" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "mared1_12" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "mared_22" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "mared_32" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "mared_42" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "mared_62" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sodone_12" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sored_02" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "soed_12" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sored1_12" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sored_22" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sored_32" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sored_42" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sored_62" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "eldone_12" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "elred_02" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "ered_12" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "elred1_12" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "elred_22" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "elred_32" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "elred_42" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "elred_62" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "fidone_12" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "fired_02" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "fied_12" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "fied1_12" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "fired_22" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "fired_32" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "fired_42" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "fired_62" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "codone_12" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "cored_02" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "coed_12" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "cored1_12" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "cored_22" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "cored_32" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "cored_42" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "cored_62" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "acdone_12" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "acred_02" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "aced_12" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "aced1_12" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "acred_22" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "acred_32" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "acred_42" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "acred_62" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sldone_12" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "slred_02" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "slred_122" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "slred1_12" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "slred_22" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "slred_32" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "slred_42" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "slred_62" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment?" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "prdone_12" + }, + "Index": { + "type": "dword", + "value": 111 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "prred_02" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "prred_212" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "prred1_12" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "prred_22" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "prred_32" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "prred_42" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "prred_62" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment?" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bdone_12" + }, + "Index": { + "type": "dword", + "value": 123 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "bred_02" + }, + "Index": { + "type": "dword", + "value": 122 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "bred_12" + }, + "Index": { + "type": "dword", + "value": 121 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "blred1_12" + }, + "Index": { + "type": "dword", + "value": 120 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "blred_22" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "blred_32" + }, + "Index": { + "type": "dword", + "value": 118 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "blred_42" + }, + "Index": { + "type": "dword", + "value": 117 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "blred_62" + }, + "Index": { + "type": "dword", + "value": 116 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 114 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "podone_12" + }, + "Index": { + "type": "dword", + "value": 135 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "pored_02" + }, + "Index": { + "type": "dword", + "value": 134 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "poed_12" + }, + "Index": { + "type": "dword", + "value": 133 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "pored1_12" + }, + "Index": { + "type": "dword", + "value": 132 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "pored_22" + }, + "Index": { + "type": "dword", + "value": 131 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "pored_32" + }, + "Index": { + "type": "dword", + "value": 130 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "pored_42" + }, + "Index": { + "type": "dword", + "value": 129 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "pored_62" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 126 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "ngdone_12" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "ngred_02" + }, + "Index": { + "type": "dword", + "value": 146 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "nged_12" + }, + "Index": { + "type": "dword", + "value": 145 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "ngred1_12" + }, + "Index": { + "type": "dword", + "value": 144 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "ngred_22" + }, + "Index": { + "type": "dword", + "value": 143 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "ngred_32" + }, + "Index": { + "type": "dword", + "value": 142 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "ngred_42" + }, + "Index": { + "type": "dword", + "value": 141 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "ngred_62" + }, + "Index": { + "type": "dword", + "value": 140 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 139 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 138 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "dvdone_12" + }, + "Index": { + "type": "dword", + "value": 159 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "dvred_02" + }, + "Index": { + "type": "dword", + "value": 158 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "dved1_12" + }, + "Index": { + "type": "dword", + "value": 157 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "dved_12" + }, + "Index": { + "type": "dword", + "value": 156 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "dvred_22" + }, + "Index": { + "type": "dword", + "value": 155 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "dved1_12a" + }, + "Index": { + "type": "dword", + "value": 154 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "dvred_32" + }, + "Index": { + "type": "dword", + "value": 153 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "dvred_62" + }, + "Index": { + "type": "dword", + "value": 152 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 151 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 150 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 604 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Massive Criticals]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mcgdred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals III]" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals III]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals III] *** DONE ***" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mngdred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals II]" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals II]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals I|] *** DONE ***" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mcng_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals I]" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Massive Criticals I] *** DONE ***" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Massive Criticals] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Damage Bonus]" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magic Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magic Damage]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "madred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage III]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage III]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "madred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage II]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage II]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ma_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage I]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sodred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage III]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage III]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sodred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage II]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage II]" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "so_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage I]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "eldred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage III]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage III]" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "eldred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage II]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage II]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "el_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage I]" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fidred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage III]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage III]" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fidred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage II]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage II]" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fi_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage I]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "codred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage III]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage III]" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "codred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage II]" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage II]" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "co_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage I]" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage]" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acdred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage III]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage III]" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acdred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage II]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage II]" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ac_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage I]" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage]" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sldred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage III]" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage III]" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sldred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage II]" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage II]" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sldred_imbue_12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage I]" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage]" + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "prdred_imbue_132" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage III]" + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage III]" + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "prdred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage II]" + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage II]" + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "prdred_imbue_12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage I]" + } + } + }, + { + "__struct_id": 111, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 112, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeoning Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 113, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeoning Damage]" + } + } + }, + { + "__struct_id": 114, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 115, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 116, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage III]" + } + } + }, + { + "__struct_id": 117, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage III]" + } + } + }, + { + "__struct_id": 118, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 119, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage II]" + } + } + }, + { + "__struct_id": 120, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage II]" + } + } + }, + { + "__struct_id": 121, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 122, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bl_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage I]" + } + } + }, + { + "__struct_id": 123, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 124, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 125, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage]" + } + } + }, + { + "__struct_id": 126, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 127, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 128, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "podred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage III]" + } + } + }, + { + "__struct_id": 129, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage III]" + } + } + }, + { + "__struct_id": 130, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 131, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "podred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage II]" + } + } + }, + { + "__struct_id": 132, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage II]" + } + } + }, + { + "__struct_id": 133, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 134, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "po_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage I]" + } + } + }, + { + "__struct_id": 135, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 136, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 137, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage]" + } + } + }, + { + "__struct_id": 138, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 139, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 140, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ngdred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage III]" + } + } + }, + { + "__struct_id": 141, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage III]" + } + } + }, + { + "__struct_id": 142, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 143, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ngdred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage II]" + } + } + }, + { + "__struct_id": 144, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage II]" + } + } + }, + { + "__struct_id": 145, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 146, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage I]" + } + } + }, + { + "__struct_id": 147, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 148, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 149, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage]" + } + } + }, + { + "__struct_id": 150, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 151, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 152, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dvdred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage III]" + } + } + }, + { + "__struct_id": 153, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 154, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage III]" + } + } + }, + { + "__struct_id": 155, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dvdred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage II]" + } + } + }, + { + "__struct_id": 156, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 157, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage II]" + } + } + }, + { + "__struct_id": 158, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dv_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage I]" + } + } + }, + { + "__struct_id": 159, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage I] *** DONE ***" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/weap_enh2.dlg.json b/_module/dlg/weap_enh2.dlg.json new file mode 100644 index 0000000..acd0943 --- /dev/null +++ b/_module/dlg/weap_enh2.dlg.json @@ -0,0 +1,10893 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "" + }, + "EndConversation": { + "type": "resref", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like to imbue your ammunition?" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "dvmax_reached12" + }, + "Index": { + "type": "dword", + "value": 137 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "dvmax_reached2" + }, + "Index": { + "type": "dword", + "value": 136 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "ngmax_damred12" + }, + "Index": { + "type": "dword", + "value": 125 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "ngmax_damred2" + }, + "Index": { + "type": "dword", + "value": 124 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "pomax_reached12" + }, + "Index": { + "type": "dword", + "value": 113 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "pomax_reached2" + }, + "Index": { + "type": "dword", + "value": 112 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "blmax_reached12" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "blmax_reached2" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "pr_max_reache212" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "pr_max_reache22" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "slmax_limit12" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "slmax_limit2" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 12, + "Active": { + "type": "resref", + "value": "acmax_reached12" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 13, + "Active": { + "type": "resref", + "value": "acmax_reached2" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 14, + "Active": { + "type": "resref", + "value": "comax_damred12" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 15, + "Active": { + "type": "resref", + "value": "comax_damred2" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 16, + "Active": { + "type": "resref", + "value": "fimax_reached12" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 17, + "Active": { + "type": "resref", + "value": "fimax_reached2" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 18, + "Active": { + "type": "resref", + "value": "elmax_reached22" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 19, + "Active": { + "type": "resref", + "value": "elmax_reached32" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 20, + "Active": { + "type": "resref", + "value": "somax_reached22" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 21, + "Active": { + "type": "resref", + "value": "somax_reached32" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 22, + "Active": { + "type": "resref", + "value": "mamax_reached12" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 23, + "Active": { + "type": "resref", + "value": "mamax_reached2" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 24, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 25, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Choose damage type?" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "madone_12" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "mared_02" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "mared_1222" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "mared1_12" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "mared_22" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "mared_32" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "mared_42" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "mared_62" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sodone_12" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "sored_02" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "soed_12" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sored1_12" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "sored_22" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "sored_32" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "sored_42" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "sored_62" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "eldone_12" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "elred_02" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "ered_12" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "elred1_12" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "elred_22" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "elred_32" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "elred_42" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "elred_62" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "fidone_12" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "fired_02" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "fied_12" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "fied1_12" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "fired_22" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "fired_32" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "fired_42" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "fired_62" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "codone_12" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "cored_02" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "coed_12" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "cored1_12" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "cored_22" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "cored_32" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "cored_42" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "cored_62" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "acdone_12" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "acred_02" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "aced_12" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "aced1_12" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "acred_22" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "acred_32" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "acred_42" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "acred_62" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "sldone_12" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "slred_02" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "slred_122" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "slred1_12" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "slred_22" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "slred_32" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "slred_42" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "slred_62" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment?" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "prdone_12" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "prred_02" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "prred_212" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "prred1_12" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "prred_22" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "prred_32" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "prred_42" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "prred_62" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment?" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "bdone_12" + }, + "Index": { + "type": "dword", + "value": 111 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "bred_02" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "bred_12" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "blred1_12" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "blred_22" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "blred_32" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "blred_42" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "blred_62" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "podone_12" + }, + "Index": { + "type": "dword", + "value": 123 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "pored_02" + }, + "Index": { + "type": "dword", + "value": 122 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "poed_12" + }, + "Index": { + "type": "dword", + "value": 121 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "pored1_12" + }, + "Index": { + "type": "dword", + "value": 120 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "pored_22" + }, + "Index": { + "type": "dword", + "value": 119 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "pored_32" + }, + "Index": { + "type": "dword", + "value": 118 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "pored_42" + }, + "Index": { + "type": "dword", + "value": 117 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "pored_62" + }, + "Index": { + "type": "dword", + "value": 116 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 115 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 114 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "ngdone_12" + }, + "Index": { + "type": "dword", + "value": 135 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "ngred_02" + }, + "Index": { + "type": "dword", + "value": 134 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "nged_12" + }, + "Index": { + "type": "dword", + "value": 133 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "ngred1_12" + }, + "Index": { + "type": "dword", + "value": 132 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "ngred_22" + }, + "Index": { + "type": "dword", + "value": 131 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "ngred_32" + }, + "Index": { + "type": "dword", + "value": 130 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "ngred_42" + }, + "Index": { + "type": "dword", + "value": 129 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "ngred_62" + }, + "Index": { + "type": "dword", + "value": 128 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 127 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 126 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "dvdone_12" + }, + "Index": { + "type": "dword", + "value": 147 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "dvred_02" + }, + "Index": { + "type": "dword", + "value": 146 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "dved_12" + }, + "Index": { + "type": "dword", + "value": 145 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "dved1_12" + }, + "Index": { + "type": "dword", + "value": 144 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "dvred_22" + }, + "Index": { + "type": "dword", + "value": 143 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "dvred_32" + }, + "Index": { + "type": "dword", + "value": 142 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "dvred_42" + }, + "Index": { + "type": "dword", + "value": 141 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "dvred_62" + }, + "Index": { + "type": "dword", + "value": 140 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 139 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 138 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select treatment." + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 557 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Improved Damage Bonus]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magic Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magic Damage]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "madred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage III]" + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage III]" + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "madred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage II]" + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage II]" + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ma_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage I]" + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Magical Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage]" + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sodred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage III]" + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage III]" + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sodred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage II]" + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage II]" + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "so_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage I]" + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Sonic Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage]" + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "eldred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage III]" + } + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage III]" + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "eldred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage II]" + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage II]" + } + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "el_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage I]" + } + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Electrical Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage]" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fidred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage III]" + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage III]" + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fidred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage II]" + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage II]" + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "fi_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage I]" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Fire Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage]" + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "codred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage III]" + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage III]" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "codred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage II]" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage II]" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "co_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage I]" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Cold Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage]" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acdred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage III]" + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage III]" + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "acdred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage II]" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage II]" + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ac_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage I]" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Acid Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage]" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sldred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage III]" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage III]" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sldred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage II]" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage II]" + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "sldred_imbue_12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage I]" + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Slashing Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage]" + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "prdred_imbue_132" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage III]" + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage III]" + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "prdred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage II]" + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage II]" + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "prdred_imbue_12" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage I]" + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Piercing Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeoning Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeoning Damage]" + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage III]" + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage III]" + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bldred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage II]" + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage II]" + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "bl_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage I]" + } + } + }, + { + "__struct_id": 111, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Bludgeon Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 112, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 113, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage]" + } + } + }, + { + "__struct_id": 114, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 115, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 116, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "podred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage III]" + } + } + }, + { + "__struct_id": 117, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage III]" + } + } + }, + { + "__struct_id": 118, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 119, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "podred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage II]" + } + } + }, + { + "__struct_id": 120, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage II]" + } + } + }, + { + "__struct_id": 121, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 122, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "po_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage I]" + } + } + }, + { + "__struct_id": 123, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Positive Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 124, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 125, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage]" + } + } + }, + { + "__struct_id": 126, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 127, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 128, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ngdred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage III]" + } + } + }, + { + "__struct_id": 129, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage III]" + } + } + }, + { + "__struct_id": 130, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 131, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ngdred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage II]" + } + } + }, + { + "__struct_id": 132, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage II]" + } + } + }, + { + "__struct_id": 133, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 134, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "ng_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage I]" + } + } + }, + { + "__struct_id": 135, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Negative Damage I] *** DONE ***" + } + } + }, + { + "__struct_id": 136, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 137, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage]" + } + } + }, + { + "__struct_id": 138, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 139, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 140, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dvdred_imbue_32" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage III]" + } + } + }, + { + "__struct_id": 141, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage III]" + } + } + }, + { + "__struct_id": 142, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage III] *** DONE ***" + } + } + }, + { + "__struct_id": 143, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dvdred_imbue_22" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage II]" + } + } + }, + { + "__struct_id": 144, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage II]" + } + } + }, + { + "__struct_id": 145, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage I|] *** DONE ***" + } + } + }, + { + "__struct_id": 146, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "dv_imbue252" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage I]" + } + } + }, + { + "__struct_id": 147, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Divine Damage I] *** DONE ***" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/weap_enh3.dlg.json b/_module/dlg/weap_enh3.dlg.json new file mode 100644 index 0000000..3553d5a --- /dev/null +++ b/_module/dlg/weap_enh3.dlg.json @@ -0,0 +1,551 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "" + }, + "EndConversation": { + "type": "resref", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "enhance_chek2" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "enhance_chek" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "keen_check" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "sc_019b1" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "holy_check" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "holy_check2" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your weapon?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 34 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "aven_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Holy Avenger]" + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Holy Avenger] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "keenweap_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Keen Weapon]" + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Keen Weapon] *** FULLY UPGRADED ***" + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "enh_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Enhancement Bonus]" + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Enhancement Bonus] *** FULLY UPGRADED ***" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/weap_enh_bow.dlg.json b/_module/dlg/weap_enh_bow.dlg.json new file mode 100644 index 0000000..df663d3 --- /dev/null +++ b/_module/dlg/weap_enh_bow.dlg.json @@ -0,0 +1,211 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "" + }, + "EndConversation": { + "type": "resref", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "How would you like Amaterasu to imbue your weapon?" + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 12 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "mighty_imbue" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "[Mighty Bonus]" + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/dlg/x0_skill_ctrap.dlg.json b/_module/dlg/x0_skill_ctrap.dlg.json new file mode 100644 index 0000000..1e1e671 --- /dev/null +++ b/_module/dlg/x0_skill_ctrap.dlg.json @@ -0,0 +1,9881 @@ +{ + "__data_type": "DLG ", + "DelayEntry": { + "type": "dword", + "value": 0 + }, + "DelayReply": { + "type": "dword", + "value": 0 + }, + "EndConverAbort": { + "type": "resref", + "value": "zep_cr_stop_abrt" + }, + "EndConversation": { + "type": "resref", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "zep_cr_canca" + }, + "Index": { + "type": "dword", + "value": 70 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "zep_cr_canch" + }, + "Index": { + "type": "dword", + "value": 56 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 55 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "zep_cr_canca_n" + }, + "Index": { + "type": "dword", + "value": 54 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "zep_cr_cancw" + }, + "Index": { + "type": "dword", + "value": 45 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "zep_cr_cancs" + }, + "Index": { + "type": "dword", + "value": 40 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "zep_cr_cancw_n" + }, + "Index": { + "type": "dword", + "value": 39 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "zep_cr_canct" + }, + "Index": { + "type": "dword", + "value": 0 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86902 + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "This skill is called when you use it. " + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x0_skctrap_con_1" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "x0_skctrap_con_5" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "x0_skctrap_con_6" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "x0_skctrap_con_7" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "x0_skctrap_con_8" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "x0_skctrap_con_9" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "x0_skctrap_con_a" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "x0_skctrap_con_b" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "x0_skctrap_con_c" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 10, + "Active": { + "type": "resref", + "value": "x0_skctrap_con_d" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 11, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76461 + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "x0_skctrap_con_2" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "x0_skctrap_con_3" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "tr_skctrap_con_5" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "tr_skctrap_con_e" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76462 + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 37 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 35 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 33 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 31 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76463 + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76464 + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76465 + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76466 + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76467 + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76468 + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 0 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 30 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76469 + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 32 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76470 + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 34 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76471 + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 36 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76472 + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 38 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76473 + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 44 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 43 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "zep_always_false" + }, + "Index": { + "type": "dword", + "value": 42 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "zep_always_false" + }, + "Index": { + "type": "dword", + "value": 41 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "zep_cr_changed" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Currently adjusting \nCurrent Cost: GP\nDC: ", + "id": 86915 + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 48 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 47 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 46 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "zep_cr_changed" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select weapon part to modify. Complex changes are more difficult and expensive.\nCurrent Cost: GP\nDC: ", + "id": 86904 + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 53 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 52 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 51 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 50 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 49 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Currently adjusting \nCurrent Cost: GP\nDC: ", + "id": 86915 + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 69 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 68 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "zep_always_false" + }, + "Index": { + "type": "dword", + "value": 57 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "zep_cr_changed" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Currently adjusting \nCurrent Cost: GP\nDC: ", + "id": 86915 + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 64 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 63 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 62 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 61 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 60 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 59 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 58 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select material to change colors on. You need to possess the proper dye to apply it." + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 67 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 66 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 65 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Current color: " + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 106 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 105 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 95 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 94 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 93 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 85 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "zep_always_false" + }, + "Index": { + "type": "dword", + "value": 84 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "zep_always_false" + }, + "Index": { + "type": "dword", + "value": 73 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "zep_cr_changed" + }, + "Index": { + "type": "dword", + "value": 72 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 9, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 71 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select armor part to modify. Complex changes are more difficult and expensive.\nCurrent Cost: GP\nDC: ", + "id": 86910 + } + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [] + }, + "Script": { + "type": "resref", + "value": "zep_cr_stop_make" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have successfully crafted the designed item." + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [] + }, + "Script": { + "type": "resref", + "value": "zep_cr_stop_abrt" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have failed in your crafting attempt. All used components are lost." + } + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [] + }, + "Script": { + "type": "resref", + "value": "zep_cr_stop_abrt" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You do not possess a to color your item." + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [] + }, + "Script": { + "type": "resref", + "value": "zep_cr_stop_abrt" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You do not possess gold to perform your crafting attempt." + } + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 80 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 79 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 78 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 77 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 76 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 75 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 74 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Select material to change colors on. You need to possess the proper dye to apply it." + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 83 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 82 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 81 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Current color: " + } + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 92 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 91 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 90 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 89 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 88 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 87 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 86 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86913 + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 104 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 103 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 102 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 101 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 100 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 5, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 99 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 98 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 7, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 97 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 8, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 96 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86914 + } + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 111 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 110 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "zep_not_robe" + }, + "Index": { + "type": "dword", + "value": 109 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "zep_is_robe" + }, + "Index": { + "type": "dword", + "value": 108 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 4, + "Active": { + "type": "resref", + "value": "zep_is_robe" + }, + "Index": { + "type": "dword", + "value": 107 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Currently adjusting \nCurrent Cost: GP\nDC: ", + "id": 86915 + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "RepliesList": { + "type": "list", + "value": [] + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Speaker": { + "type": "cexostring", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86916 + } + } + } + ] + }, + "NumWords": { + "type": "dword", + "value": 667 + }, + "PreventZoomIn": { + "type": "byte", + "value": 1 + }, + "ReplyList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x0_skctrap_start" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "x2_im_savecamera" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86917 + } + } + }, + { + "__struct_id": 1, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76474 + } + } + }, + { + "__struct_id": 2, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_e" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76475 + } + } + }, + { + "__struct_id": 3, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_d" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76476 + } + } + }, + { + "__struct_id": 4, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_c" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76477 + } + } + }, + { + "__struct_id": 5, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_b" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76478 + } + } + }, + { + "__struct_id": 6, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_a" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76479 + } + } + }, + { + "__struct_id": 7, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_9" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76480 + } + } + }, + { + "__struct_id": 8, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_8" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76481 + } + } + }, + { + "__struct_id": 9, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_7" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76482 + } + } + }, + { + "__struct_id": 10, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_6" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76483 + } + } + }, + { + "__struct_id": 11, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 2 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76484 + } + } + }, + { + "__struct_id": 12, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76485 + } + } + }, + { + "__struct_id": 13, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_f" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make an epic trap (DC = ).", + "id": 76486 + } + } + }, + { + "__struct_id": 14, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_5" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76486 + } + } + }, + { + "__struct_id": 15, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_4" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76487 + } + } + }, + { + "__struct_id": 16, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_3" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76488 + } + } + }, + { + "__struct_id": 17, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "tr_skctrap_act_2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76489 + } + } + }, + { + "__struct_id": 18, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 3 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76490 + } + } + }, + { + "__struct_id": 19, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 4 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76491 + } + } + }, + { + "__struct_id": 20, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "This skill is called when you use it. " + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 21, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 5 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76492 + } + } + }, + { + "__struct_id": 22, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "This skill is called when you use it. " + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 23, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 6 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76493 + } + } + }, + { + "__struct_id": 24, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "This skill is called when you use it. " + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 25, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 7 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76494 + } + } + }, + { + "__struct_id": 26, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "This skill is called when you use it. " + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 27, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 8 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76495 + } + } + }, + { + "__struct_id": 28, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "This skill is called when you use it. " + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 29, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 9 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76496 + } + } + }, + { + "__struct_id": 30, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "This skill is called when you use it. " + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 31, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 10 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76497 + } + } + }, + { + "__struct_id": 32, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "This skill is called when you use it. " + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 33, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 11 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76498 + } + } + }, + { + "__struct_id": 34, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "This skill is called when you use it. " + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 35, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 12 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76499 + } + } + }, + { + "__struct_id": 36, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "This skill is called when you use it. " + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 37, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 13 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 76500 + } + } + }, + { + "__struct_id": 38, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 1 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "This skill is called when you use it. " + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": {} + } + }, + { + "__struct_id": 39, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Craft Weapon: Not Possible - ", + "id": 101033 + } + } + }, + { + "__struct_id": 40, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_start_cs" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Craft Weapon: Change shield appearance.", + "id": 86918 + } + } + }, + { + "__struct_id": 41, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_prevcolor" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Show previous color" + } + } + }, + { + "__struct_id": 42, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_nextcolor" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Show next color" + } + } + }, + { + "__struct_id": 43, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_prevpart" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86968 + } + } + }, + { + "__struct_id": 44, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 14 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_nextpart" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86969 + } + } + }, + { + "__struct_id": 45, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_start_cw" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86918 + } + } + }, + { + "__struct_id": 46, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dowbottom" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86925 + } + } + }, + { + "__struct_id": 47, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dowmiddle" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86926 + } + } + }, + { + "__struct_id": 48, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dowtop" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86927 + } + } + }, + { + "__struct_id": 49, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 15 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86967 + } + } + }, + { + "__struct_id": 50, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_prevcolor" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Show previous color" + } + } + }, + { + "__struct_id": 51, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_nextcolor" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Show next color" + } + } + }, + { + "__struct_id": 52, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_prevpart" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86968 + } + } + }, + { + "__struct_id": 53, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 16 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_nextpart" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86969 + } + } + }, + { + "__struct_id": 54, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Craft Armor: Not Possible - ", + "id": 101034 + } + } + }, + { + "__struct_id": 55, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dorobe" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Craft Armor: Change robe appearance." + } + } + }, + { + "__struct_id": 56, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_start_ch" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Craft Armor: Change helmet appearance", + "id": 86938 + } + } + }, + { + "__struct_id": 57, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Colouring" + } + } + }, + { + "__struct_id": 58, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 59, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_docmetal2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change secondary metal color" + } + } + }, + { + "__struct_id": 60, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_docmetal1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change primairy metal color" + } + } + }, + { + "__struct_id": 61, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_docleath2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change secondairy leather color" + } + } + }, + { + "__struct_id": 62, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_docleath1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change primairy leather color" + } + } + }, + { + "__struct_id": 63, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_doccloth2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change secondary cloth color" + } + } + }, + { + "__struct_id": 64, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_doccloth1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change primairy cloth color" + } + } + }, + { + "__struct_id": 65, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 18 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 66, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_prevcolor" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Show previous color" + } + } + }, + { + "__struct_id": 67, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 19 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_nextcolor" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Show next color" + } + } + }, + { + "__struct_id": 68, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_prevpart" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86968 + } + } + }, + { + "__struct_id": 69, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 17 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_nextpart" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86969 + } + } + }, + { + "__struct_id": 70, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_start_ca" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86938 + } + } + }, + { + "__struct_id": 71, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_stop_abrt" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 72, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "zep_cr_fail_gold" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "zep_cr_fail_dye" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "zep_cr_fail" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "zep_cr_success" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_attempt" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86941 + } + } + }, + { + "__struct_id": 73, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Colouring" + } + } + }, + { + "__struct_id": 74, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 75, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_docmetal2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change secondary metal color" + } + } + }, + { + "__struct_id": 76, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_docmetal1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change primairy metal color" + } + } + }, + { + "__struct_id": 77, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_docleath2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change secondairy leather color" + } + } + }, + { + "__struct_id": 78, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_docleath1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change primairy leather color" + } + } + }, + { + "__struct_id": 79, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_doccloth2" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change secondary cloth color" + } + } + }, + { + "__struct_id": 80, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_doccloth1" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change primairy cloth color" + } + } + }, + { + "__struct_id": 81, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 25 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Back" + } + } + }, + { + "__struct_id": 82, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_prevcolor" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Show previous color" + } + } + }, + { + "__struct_id": 83, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 26 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_nextcolor" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Show next color" + } + } + }, + { + "__struct_id": 84, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dorobe" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Change Robe", + "id": 86931 + } + } + }, + { + "__struct_id": 85, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 27 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86945 + } + } + }, + { + "__struct_id": 86, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86946 + } + } + }, + { + "__struct_id": 87, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dofoot_r" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86947 + } + } + }, + { + "__struct_id": 88, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dofoot_l" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86948 + } + } + }, + { + "__struct_id": 89, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_doshin_r" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86949 + } + } + }, + { + "__struct_id": 90, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_doshin_l" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86950 + } + } + }, + { + "__struct_id": 91, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dothigh_r" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86951 + } + } + }, + { + "__struct_id": 92, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dothigh_l" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86952 + } + } + }, + { + "__struct_id": 93, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dopelvis" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86953 + } + } + }, + { + "__struct_id": 94, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dobelt" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86954 + } + } + }, + { + "__struct_id": 95, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 28 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86956 + } + } + }, + { + "__struct_id": 96, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86957 + } + } + }, + { + "__struct_id": 97, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dohand_r" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86958 + } + } + }, + { + "__struct_id": 98, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dohand_l" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86959 + } + } + }, + { + "__struct_id": 99, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_doloarm_r" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86960 + } + } + }, + { + "__struct_id": 100, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_doloarm_l" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86961 + } + } + }, + { + "__struct_id": 101, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dobicep_r" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86962 + } + } + }, + { + "__struct_id": 102, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dobicep_l" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86963 + } + } + }, + { + "__struct_id": 103, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_doshold_r" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86964 + } + } + }, + { + "__struct_id": 104, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_doshold_l" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86965 + } + } + }, + { + "__struct_id": 105, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_dotorso" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86955 + } + } + }, + { + "__struct_id": 106, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 0 + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_doneck" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86966 + } + } + }, + { + "__struct_id": 107, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_stop_abrt" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Abort" + } + } + }, + { + "__struct_id": 108, + "Animation": { + "type": "dword", + "value": 0 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "zep_cr_fail_gold" + }, + "Index": { + "type": "dword", + "value": 24 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "zep_cr_fail_dye" + }, + "Index": { + "type": "dword", + "value": 23 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 2, + "Active": { + "type": "resref", + "value": "zep_cr_fail" + }, + "Index": { + "type": "dword", + "value": 22 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 3, + "Active": { + "type": "resref", + "value": "zep_cr_success" + }, + "Index": { + "type": "dword", + "value": 21 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_attempt" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Make Changes" + } + } + }, + { + "__struct_id": 109, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 20 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86967 + } + } + }, + { + "__struct_id": 110, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_prevpart" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86968 + } + } + }, + { + "__struct_id": 111, + "Animation": { + "type": "dword", + "value": 88 + }, + "AnimLoop": { + "type": "byte", + "value": 1 + }, + "Comment": { + "type": "cexostring", + "value": "" + }, + "Delay": { + "type": "dword", + "value": 4294967295 + }, + "EntriesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 29 + }, + "IsChild": { + "type": "byte", + "value": 1 + }, + "LinkComment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Quest": { + "type": "cexostring", + "value": "" + }, + "Script": { + "type": "resref", + "value": "zep_cr_nextpart" + }, + "Sound": { + "type": "resref", + "value": "" + }, + "Text": { + "type": "cexolocstring", + "value": { + "id": 86969 + } + } + } + ] + }, + "StartingList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Active": { + "type": "resref", + "value": "x2_im_polymorphd" + }, + "Index": { + "type": "dword", + "value": 30 + } + }, + { + "__struct_id": 1, + "Active": { + "type": "resref", + "value": "" + }, + "Index": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/fac/Repute.fac.json b/_module/fac/Repute.fac.json new file mode 100644 index 0000000..2438a1e --- /dev/null +++ b/_module/fac/Repute.fac.json @@ -0,0 +1,1048 @@ +{ + "__data_type": "FAC ", + "FactionList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "FactionGlobal": { + "type": "word", + "value": 1 + }, + "FactionName": { + "type": "cexostring", + "value": "PC" + }, + "FactionParentID": { + "type": "dword", + "value": 4294967295 + } + }, + { + "__struct_id": 1, + "FactionGlobal": { + "type": "word", + "value": 1 + }, + "FactionName": { + "type": "cexostring", + "value": "Hostile" + }, + "FactionParentID": { + "type": "dword", + "value": 4294967295 + } + }, + { + "__struct_id": 2, + "FactionGlobal": { + "type": "word", + "value": 1 + }, + "FactionName": { + "type": "cexostring", + "value": "Commoner" + }, + "FactionParentID": { + "type": "dword", + "value": 4294967295 + } + }, + { + "__struct_id": 3, + "FactionGlobal": { + "type": "word", + "value": 1 + }, + "FactionName": { + "type": "cexostring", + "value": "Merchant" + }, + "FactionParentID": { + "type": "dword", + "value": 4294967295 + } + }, + { + "__struct_id": 4, + "FactionGlobal": { + "type": "word", + "value": 1 + }, + "FactionName": { + "type": "cexostring", + "value": "Defender" + }, + "FactionParentID": { + "type": "dword", + "value": 4294967295 + } + }, + { + "__struct_id": 5, + "FactionGlobal": { + "type": "word", + "value": 0 + }, + "FactionName": { + "type": "cexostring", + "value": "starfall" + }, + "FactionParentID": { + "type": "dword", + "value": 4 + } + }, + { + "__struct_id": 6, + "FactionGlobal": { + "type": "word", + "value": 1 + }, + "FactionName": { + "type": "cexostring", + "value": "Hostile2" + }, + "FactionParentID": { + "type": "dword", + "value": 1 + } + }, + { + "__struct_id": 7, + "FactionGlobal": { + "type": "word", + "value": 1 + }, + "FactionName": { + "type": "cexostring", + "value": "Death" + }, + "FactionParentID": { + "type": "dword", + "value": 1 + } + } + ] + }, + "RepList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "FactionID1": { + "type": "dword", + "value": 0 + }, + "FactionID2": { + "type": "dword", + "value": 1 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 1, + "FactionID1": { + "type": "dword", + "value": 0 + }, + "FactionID2": { + "type": "dword", + "value": 2 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 2, + "FactionID1": { + "type": "dword", + "value": 0 + }, + "FactionID2": { + "type": "dword", + "value": 3 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 3, + "FactionID1": { + "type": "dword", + "value": 0 + }, + "FactionID2": { + "type": "dword", + "value": 4 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 4, + "FactionID1": { + "type": "dword", + "value": 0 + }, + "FactionID2": { + "type": "dword", + "value": 5 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 5, + "FactionID1": { + "type": "dword", + "value": 0 + }, + "FactionID2": { + "type": "dword", + "value": 6 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 6, + "FactionID1": { + "type": "dword", + "value": 0 + }, + "FactionID2": { + "type": "dword", + "value": 7 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 7, + "FactionID1": { + "type": "dword", + "value": 1 + }, + "FactionID2": { + "type": "dword", + "value": 0 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 8, + "FactionID1": { + "type": "dword", + "value": 1 + }, + "FactionID2": { + "type": "dword", + "value": 1 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 9, + "FactionID1": { + "type": "dword", + "value": 1 + }, + "FactionID2": { + "type": "dword", + "value": 2 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 10, + "FactionID1": { + "type": "dword", + "value": 1 + }, + "FactionID2": { + "type": "dword", + "value": 3 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 11, + "FactionID1": { + "type": "dword", + "value": 1 + }, + "FactionID2": { + "type": "dword", + "value": 4 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 12, + "FactionID1": { + "type": "dword", + "value": 1 + }, + "FactionID2": { + "type": "dword", + "value": 5 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 13, + "FactionID1": { + "type": "dword", + "value": 1 + }, + "FactionID2": { + "type": "dword", + "value": 6 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 14, + "FactionID1": { + "type": "dword", + "value": 1 + }, + "FactionID2": { + "type": "dword", + "value": 7 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 15, + "FactionID1": { + "type": "dword", + "value": 2 + }, + "FactionID2": { + "type": "dword", + "value": 1 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 16, + "FactionID1": { + "type": "dword", + "value": 2 + }, + "FactionID2": { + "type": "dword", + "value": 2 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 17, + "FactionID1": { + "type": "dword", + "value": 2 + }, + "FactionID2": { + "type": "dword", + "value": 3 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 18, + "FactionID1": { + "type": "dword", + "value": 2 + }, + "FactionID2": { + "type": "dword", + "value": 4 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 19, + "FactionID1": { + "type": "dword", + "value": 2 + }, + "FactionID2": { + "type": "dword", + "value": 5 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 20, + "FactionID1": { + "type": "dword", + "value": 2 + }, + "FactionID2": { + "type": "dword", + "value": 6 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 21, + "FactionID1": { + "type": "dword", + "value": 2 + }, + "FactionID2": { + "type": "dword", + "value": 7 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 22, + "FactionID1": { + "type": "dword", + "value": 3 + }, + "FactionID2": { + "type": "dword", + "value": 1 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 23, + "FactionID1": { + "type": "dword", + "value": 3 + }, + "FactionID2": { + "type": "dword", + "value": 2 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 24, + "FactionID1": { + "type": "dword", + "value": 3 + }, + "FactionID2": { + "type": "dword", + "value": 3 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 25, + "FactionID1": { + "type": "dword", + "value": 3 + }, + "FactionID2": { + "type": "dword", + "value": 4 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 26, + "FactionID1": { + "type": "dword", + "value": 3 + }, + "FactionID2": { + "type": "dword", + "value": 5 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 27, + "FactionID1": { + "type": "dword", + "value": 3 + }, + "FactionID2": { + "type": "dword", + "value": 6 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 28, + "FactionID1": { + "type": "dword", + "value": 3 + }, + "FactionID2": { + "type": "dword", + "value": 7 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 29, + "FactionID1": { + "type": "dword", + "value": 4 + }, + "FactionID2": { + "type": "dword", + "value": 0 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 30, + "FactionID1": { + "type": "dword", + "value": 4 + }, + "FactionID2": { + "type": "dword", + "value": 1 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 31, + "FactionID1": { + "type": "dword", + "value": 4 + }, + "FactionID2": { + "type": "dword", + "value": 2 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 32, + "FactionID1": { + "type": "dword", + "value": 4 + }, + "FactionID2": { + "type": "dword", + "value": 3 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 33, + "FactionID1": { + "type": "dword", + "value": 4 + }, + "FactionID2": { + "type": "dword", + "value": 4 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 34, + "FactionID1": { + "type": "dword", + "value": 4 + }, + "FactionID2": { + "type": "dword", + "value": 5 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 35, + "FactionID1": { + "type": "dword", + "value": 4 + }, + "FactionID2": { + "type": "dword", + "value": 6 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 36, + "FactionID1": { + "type": "dword", + "value": 4 + }, + "FactionID2": { + "type": "dword", + "value": 7 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 37, + "FactionID1": { + "type": "dword", + "value": 5 + }, + "FactionID2": { + "type": "dword", + "value": 0 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 38, + "FactionID1": { + "type": "dword", + "value": 5 + }, + "FactionID2": { + "type": "dword", + "value": 1 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 39, + "FactionID1": { + "type": "dword", + "value": 5 + }, + "FactionID2": { + "type": "dword", + "value": 2 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 40, + "FactionID1": { + "type": "dword", + "value": 5 + }, + "FactionID2": { + "type": "dword", + "value": 3 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 41, + "FactionID1": { + "type": "dword", + "value": 5 + }, + "FactionID2": { + "type": "dword", + "value": 4 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 42, + "FactionID1": { + "type": "dword", + "value": 5 + }, + "FactionID2": { + "type": "dword", + "value": 5 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 43, + "FactionID1": { + "type": "dword", + "value": 5 + }, + "FactionID2": { + "type": "dword", + "value": 6 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 44, + "FactionID1": { + "type": "dword", + "value": 5 + }, + "FactionID2": { + "type": "dword", + "value": 7 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 45, + "FactionID1": { + "type": "dword", + "value": 6 + }, + "FactionID2": { + "type": "dword", + "value": 0 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 46, + "FactionID1": { + "type": "dword", + "value": 6 + }, + "FactionID2": { + "type": "dword", + "value": 1 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 47, + "FactionID1": { + "type": "dword", + "value": 6 + }, + "FactionID2": { + "type": "dword", + "value": 2 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 48, + "FactionID1": { + "type": "dword", + "value": 6 + }, + "FactionID2": { + "type": "dword", + "value": 3 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 49, + "FactionID1": { + "type": "dword", + "value": 6 + }, + "FactionID2": { + "type": "dword", + "value": 4 + }, + "FactionRep": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 50, + "FactionID1": { + "type": "dword", + "value": 6 + }, + "FactionID2": { + "type": "dword", + "value": 5 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 51, + "FactionID1": { + "type": "dword", + "value": 6 + }, + "FactionID2": { + "type": "dword", + "value": 6 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 52, + "FactionID1": { + "type": "dword", + "value": 6 + }, + "FactionID2": { + "type": "dword", + "value": 7 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 53, + "FactionID1": { + "type": "dword", + "value": 7 + }, + "FactionID2": { + "type": "dword", + "value": 0 + }, + "FactionRep": { + "type": "dword", + "value": 100 + } + }, + { + "__struct_id": 54, + "FactionID1": { + "type": "dword", + "value": 7 + }, + "FactionID2": { + "type": "dword", + "value": 1 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 55, + "FactionID1": { + "type": "dword", + "value": 7 + }, + "FactionID2": { + "type": "dword", + "value": 2 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 56, + "FactionID1": { + "type": "dword", + "value": 7 + }, + "FactionID2": { + "type": "dword", + "value": 3 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 57, + "FactionID1": { + "type": "dword", + "value": 7 + }, + "FactionID2": { + "type": "dword", + "value": 4 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 58, + "FactionID1": { + "type": "dword", + "value": 7 + }, + "FactionID2": { + "type": "dword", + "value": 5 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 59, + "FactionID1": { + "type": "dword", + "value": 7 + }, + "FactionID2": { + "type": "dword", + "value": 6 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + }, + { + "__struct_id": 60, + "FactionID1": { + "type": "dword", + "value": 7 + }, + "FactionID2": { + "type": "dword", + "value": 7 + }, + "FactionRep": { + "type": "dword", + "value": 50 + } + } + ] + } +} diff --git a/_module/gic/_base.gic.json b/_module/gic/_base.gic.json new file mode 100644 index 0000000..00c48c8 --- /dev/null +++ b/_module/gic/_base.gic.json @@ -0,0 +1,39 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/area.gic.json b/_module/gic/area.gic.json new file mode 100644 index 0000000..a414585 --- /dev/null +++ b/_module/gic/area.gic.json @@ -0,0 +1,99 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "CorridorExit" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Forge Placeables by Eden\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Torture, Taxidermy, and High tea by gnomad\r\n" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/area001.gic.json b/_module/gic/area001.gic.json new file mode 100644 index 0000000..1c91a2a --- /dev/null +++ b/_module/gic/area001.gic.json @@ -0,0 +1,167 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "CorridorExit" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Invisible Object" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bookcase 2" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bookcase 2" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bookcase 2" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bookcase 2" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bookcase 2" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bookcase 2" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Oriental Rug" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Oriental Rug" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Oriental Rug" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Oriental Rug" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Oriental Rug" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Oriental Rug" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Oriental Rug" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Placeable Lightshafts with pwk by Demigog" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Placeable Lightshafts with pwk by Demigog" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Placeable Lightshafts with pwk by Demigog" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/arena.gic.json b/_module/gic/arena.gic.json new file mode 100644 index 0000000..347b197 --- /dev/null +++ b/_module/gic/arena.gic.json @@ -0,0 +1,2770 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "WallDoor" + } + }, + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "Weak Door" + } + }, + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "BridgeDoor" + } + }, + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "BridgeDoor" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Lamp Post" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Lamp Post" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Pillar - Style 3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fountain" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fountain" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue - Stone" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Merchants Shingle - 3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Oriental Rug" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rug Large" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rug Large" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Combat Dummy" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Combat Dummy" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Combat Dummy" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Chest - 4 (High treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Chest - 2 (Low treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Weapon Rack" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Weapon Rack" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Weapon Rack" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rug Large" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rug Large" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Pillar - Style 3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Pillar - Style 3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bookshelf script (spawns in books or a mage scroll)." + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bookshelf script (spawns in books or a mage scroll)." + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Low treasure script." + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rug Large" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rug Large" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Placeable Lightshafts with pwk by Demigog" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Placeable Lightshafts with pwk by Demigog" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Liquor Cabinet by DigitalKnightmare" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "9 big fire placeables by Okto\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "9 big fire placeables by Okto\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Oriental Rug" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Low treasure script." + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Placeable Pak by Schazzwozzer" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Placeable Pak by Schazzwozzer" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Chest - 1 (Low treasure script)\r\n\r\nDetection DC: 25\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Coulisfu Oriental Rural Tileset v2.3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: LOKPak v3 by Danmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: LOKPak v3 by Danmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: LOKPak v3 by Danmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: LOKPak v3 by Danmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: LOKPak v3 by Danmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: LOKPak v3 by Danmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: LOKPak v3 by Danmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: LOKPak v3 by Danmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Tir Na Og Tree Pack 1 v2.01 By Martin E" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Tir Na Og Tree Pack 1 v2.01 By Martin E" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Tir Na Og Tree Pack 1 v2.01 By Martin E" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Tir Na Og Tree Pack 1 v2.01 By Martin E" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Tir Na Og Tree Pack 1 v2.01 By Martin E" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Tir Na Og Tree Pack 1 v2.01 By Martin E" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Tir Na Og Tree Pack 1 v2.01 By Martin E" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Birdbath" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fountain" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fountain" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Large Bench" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Pillar Button - 2" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Butterflies" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Butterflies" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Butterflies" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: LOKPak v3 by Danmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Placeable Pak by Schazzwozzer\r\n If set to usable, the crystal will stop 'shining' if clicked. Edited by SBird for CEP." + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Placeable Pak by Schazzwozzer\r\n If set to usable, the crystal will stop 'shining' if clicked. Edited by SBird for CEP." + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Floor Lever - 1" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Floor Lever - 1" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Floor Lever - 1" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Weapon Rack" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Floor Lever - 2" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Signpost - 3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: LOKPak v3 by Danmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Large Bench" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Large Bench" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Window" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Window" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fallen Timber" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fallen Timber" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Flower Vase" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Flower Vase" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Throw Rug" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: LOKPak v3 by Danmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Tir Na Og Tree Pack 1 v2.01 By Martin E" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fallen Timber" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Merchants Shingle - 2" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rokugan V2 by Kerry Mortensen\r\nmodified by SBird for CEP\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rokugan V2 by Kerry Mortensen\r\nmodified by SBird for CEP\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rokugan V2 by Kerry Mortensen\r\nmodified by SBird for CEP\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rokugan V2 by Kerry Mortensen\r\nmodified by SBird for CEP\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rokugan V2 by Kerry Mortensen\r\nmodified by SBird for CEP\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rokugan V2 by Kerry Mortensen\r\nmodified by SBird for CEP\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rokugan V2 by Kerry Mortensen\r\nmodified by SBird for CEP\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue - Stone" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: LOKPak v3 by Danmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Merchants Shingle - 7" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fallen Timber" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fallen Timber" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fallen Timber" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Flower Pack by Adam Miller" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Coulisfu Oriental Rural Tileset v2.3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Merchants Shingle - 2" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Pull Rope / Chain" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Magic Sparks - White" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Merchants Shingle - 3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rug Large" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Draconic Signs by Anaeles\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Translucent Crystal Balls by Lisa" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Oriental Rug" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Brazier" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Invisible Object" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Floor Lever - 1" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Chest - 4 (High treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Chest - 4 (High treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Chest - 1 (Low treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Chest - 1 (Low treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Draconic Signs by Anaeles\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rune Plate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Merchants Shingle - 6" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Merchants Shingle - 6" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Low treasure script. \r\n\r\nDetection DC: 25\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "DOA Shop Frontage 1.1 by Den of Assassins\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "DOA Shop Frontage 1.1 by Den of Assassins\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Coulisfu Oriental Rural Tileset v2.3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Coulisfu Oriental Rural Tileset v2.3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Merchants Shingle - 3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Coulisfu Oriental Rural Tileset v2.3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Placeable Pak by Schazzwozzer" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: All Purpose Placeables 1.1 by M.G.Skaggs\r\nmodified by SBird for CEP" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "\r\nmodified by SBird for CEP" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "\r\nmodified by SBird for CEP" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Rug Large" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Placeable Lightshafts with pwk by Demigog" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Wood Grate" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Merchants Shingle - 1" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "TriggerList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "On the Advanced tab, replace with whatever information you wish to appear on the Map of an area." + } + } + ] + } +} diff --git a/_module/gic/desolateanddespa.gic.json b/_module/gic/desolateanddespa.gic.json new file mode 100644 index 0000000..982ca53 --- /dev/null +++ b/_module/gic/desolateanddespa.gic.json @@ -0,0 +1,212 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "Breach" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Portal" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/ey_dpcon_erewood.gic.json b/_module/gic/ey_dpcon_erewood.gic.json new file mode 100644 index 0000000..fe341fc --- /dev/null +++ b/_module/gic/ey_dpcon_erewood.gic.json @@ -0,0 +1,346 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bed - Bedding Rolls" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Campfire" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Autumn" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Autumn" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Autumn" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Boulder" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Stones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Water Drip" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Dust Plume" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Altar / Shrine - Evil" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Magic Sparks - Purple" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Butterflies" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Grass Tuft" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Mushrooms" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Moss" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Plant Growth - Shrubs" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Campfire" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bench / Pew" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Autumn" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Autumn" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Autumn" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Autumn" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Ivy" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Water Drip" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Portal" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + } + ] + } +} diff --git a/_module/gic/frostedpits.gic.json b/_module/gic/frostedpits.gic.json new file mode 100644 index 0000000..4695d11 --- /dev/null +++ b/_module/gic/frostedpits.gic.json @@ -0,0 +1,360 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "CaveExit" + } + }, + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "CaveExit" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Portal" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + } + ] + } +} diff --git a/_module/gic/frozentimes.gic.json b/_module/gic/frozentimes.gic.json new file mode 100644 index 0000000..de2fd84 --- /dev/null +++ b/_module/gic/frozentimes.gic.json @@ -0,0 +1,427 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "Frost Giant, female" + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "CaveExit" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Dragon Skull" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Stone patch" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Stone patch" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Stones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Dead Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Dust Plume" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Portal" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + } +} diff --git a/_module/gic/hallofheroes.gic.json b/_module/gic/hallofheroes.gic.json new file mode 100644 index 0000000..adba9a4 --- /dev/null +++ b/_module/gic/hallofheroes.gic.json @@ -0,0 +1,691 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "CastleDoor" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue pack for CEP v1.5 by Whalebones" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue - Stone" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue - Stone" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue - Stone" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue - Stone" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue - Stone" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue - Stone" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue - Stone" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Statue - Stone" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Coulisfu Oriental Rural Tileset v2.3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Coulisfu Oriental Rural Tileset v2.3" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Red" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Magic Sparks - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Magic Sparks - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Magic Sparks - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Magic Sparks - Blue" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + } + ] + } +} diff --git a/_module/gic/lakevictory.gic.json b/_module/gic/lakevictory.gic.json new file mode 100644 index 0000000..d0bbf15 --- /dev/null +++ b/_module/gic/lakevictory.gic.json @@ -0,0 +1,318 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "RuralExit" + } + }, + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "RuralExit" + } + }, + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "RuralExit" + } + }, + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "RuralExit" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bear Skin Rug 1" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bear Skin Rug 1" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bear Skin Rug 1" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bear Skin Rug 1" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "x0_cushions" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "x0_cushions" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "x0_cushions" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "x0_cushions" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "x0_cushions" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Tir Na Og Tree Pack 1 v2.01 By Martin E" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Tir Na Og Tree Pack 1 v2.01 By Martin E" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Tir Na Og Tree Pack 1 v2.01 By Martin E" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Tir Na Og Tree Pack 1 v2.01 By Martin E" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Pine Tree Placeables by JaffBarrow and Scooterpb" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Portal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bear Skin Rug 1" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bear Skin Rug 1" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + } + ] + } +} diff --git a/_module/gic/limbo.gic.json b/_module/gic/limbo.gic.json new file mode 100644 index 0000000..bcf298e --- /dev/null +++ b/_module/gic/limbo.gic.json @@ -0,0 +1,158 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + } + ] + } +} diff --git a/_module/gic/limbo001.gic.json b/_module/gic/limbo001.gic.json new file mode 100644 index 0000000..c18564e --- /dev/null +++ b/_module/gic/limbo001.gic.json @@ -0,0 +1,90 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Chest - 2 (Low treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "This is the trap door that will be created when the Hidden door trigger determins that the door has been found. see comments on the trigger for how to use." + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "A storage for manifestation tokens, which are used to keep track of psionic power use interruption." + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Chest - 1 (Low treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Chest - 1 (Low treasure script)" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + } + ] + } +} diff --git a/_module/gic/mordmagman01.gic.json b/_module/gic/mordmagman01.gic.json new file mode 100644 index 0000000..95996bc --- /dev/null +++ b/_module/gic/mordmagman01.gic.json @@ -0,0 +1,47 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/mordmagman02.gic.json b/_module/gic/mordmagman02.gic.json new file mode 100644 index 0000000..95996bc --- /dev/null +++ b/_module/gic/mordmagman02.gic.json @@ -0,0 +1,47 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/mordmagman03.gic.json b/_module/gic/mordmagman03.gic.json new file mode 100644 index 0000000..95996bc --- /dev/null +++ b/_module/gic/mordmagman03.gic.json @@ -0,0 +1,47 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/mordmagman04.gic.json b/_module/gic/mordmagman04.gic.json new file mode 100644 index 0000000..95996bc --- /dev/null +++ b/_module/gic/mordmagman04.gic.json @@ -0,0 +1,47 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/mordmagman05.gic.json b/_module/gic/mordmagman05.gic.json new file mode 100644 index 0000000..95996bc --- /dev/null +++ b/_module/gic/mordmagman05.gic.json @@ -0,0 +1,47 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/mordmagman06.gic.json b/_module/gic/mordmagman06.gic.json new file mode 100644 index 0000000..95996bc --- /dev/null +++ b/_module/gic/mordmagman06.gic.json @@ -0,0 +1,47 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/prc_maze_01.gic.json b/_module/gic/prc_maze_01.gic.json new file mode 100644 index 0000000..62358fc --- /dev/null +++ b/_module/gic/prc_maze_01.gic.json @@ -0,0 +1,1287 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + } + } + ] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + } + ] + } +} diff --git a/_module/gic/ruinedminds001.gic.json b/_module/gic/ruinedminds001.gic.json new file mode 100644 index 0000000..c710eda --- /dev/null +++ b/_module/gic/ruinedminds001.gic.json @@ -0,0 +1,209 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "CorridorDoor" + } + }, + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "BridgeDoor" + } + }, + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "BridgeDoor" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "NOTE: The circle will not be visible until it is changed to play its ACTIVATE animation either by scripting or setting it from the start in the toolset. \r\n\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Portal" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "PlayInToolset": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/thequietofthemin.gic.json b/_module/gic/thequietofthemin.gic.json new file mode 100644 index 0000000..aaf4fb5 --- /dev/null +++ b/_module/gic/thequietofthemin.gic.json @@ -0,0 +1,285 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Campfire" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fallen Timber" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Autumn" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Autumn" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Autumn" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Autumn" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Grass Tuft" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fern" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Fern" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Grass Tuft" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Grass Tuft" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Grass Tuft" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Ivy" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Mushrooms" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Plant Growth - Shrubs" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Plant Growth - Shrubs" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Snowy Pine Tree" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Normal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Tree - Autumn" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Portal" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/thestoreroom.gic.json b/_module/gic/thestoreroom.gic.json new file mode 100644 index 0000000..2ce5bea --- /dev/null +++ b/_module/gic/thestoreroom.gic.json @@ -0,0 +1,279 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "CorridorExit" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Candelabra" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Candelabra" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Candelabra" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 3 (Medium treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 4 (High treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 3 (Low treasure script)\r\n\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 4 (Medium treasure script)\r\n\r\nHardness DC: 15" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 1 (Low treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 2 (Low treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 1 (Low treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 2 (Low treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 4 (High treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 1 (Low treasure script)\r\n\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 2 (Low treasure script)\r\n\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 3 (Low treasure script)\r\n\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 4 (Medium treasure script)\r\n\r\nHardness DC: 15" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 1 (Low treasure script)\r\n\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 1 (Low treasure script)\r\n\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 2 (Low treasure script)\r\n\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 2 (Low treasure script)\r\n\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 2 (Low treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 1 (Low treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 3 (Low treasure script)\r\n\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 2 (Low treasure script)\r\n\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 4 (Medium treasure script)\r\n\r\nHardness DC: 15" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 1 (Low treasure script)\r\n\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Box / Crate - 1 (Low treasure script)" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Chest - 2 (Low treasure script)\r\n\r\nHardness DC: 10" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Candelabra" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Candelabra" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Candelabra" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Candelabra" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Bookcase 2" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/gic/undergroundshrin.gic.json b/_module/gic/undergroundshrin.gic.json new file mode 100644 index 0000000..dce40b8 --- /dev/null +++ b/_module/gic/undergroundshrin.gic.json @@ -0,0 +1,413 @@ +{ + "__data_type": "GIC ", + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "Iron Portcullis" + } + }, + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "Iron Portcullis" + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Freestanding Torch Bracket" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Freestanding Torch Bracket" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Freestanding Torch Bracket" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Freestanding Torch Bracket" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Weathered Ladder" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Altar / Shrine - Evil" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Large Statues Placeables by Velmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Large Statues Placeables by Velmar" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: 2 Statues by Ice-Child" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: All Purpose Placeables 1.1 by M.G.Skaggs\r\nmodified by SBird for CEP" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "TCC - Interiors\r\nby The_NWNCCC\r\nmodified by SBird for CEP\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "TCC - Interiors\r\nby The_NWNCCC\r\nmodified by SBird for CEP\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "\r\nmodified by SBird for CEP" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "\r\nmodified by SBird for CEP" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "\r\nmodified by SBird for CEP" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "\r\nmodified by SBird for CEP" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Portal" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Magic Sparks - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Magic Sparks - Blue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Orange" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Shaft of Light - Orange" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Magic Sparks - Orange" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Magic Sparks - Orange" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Translucent Crystal Balls by Lisa" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Translucent Crystal Balls by Lisa" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Translucent Crystal Balls by Lisa" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Source: Translucent Crystal Balls by Lisa" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "volition's Bio Placeables by volition\r\n" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Throw Rug" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "x0_cushions" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "x0_cushions" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "RugOriental2" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Invisible Object" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Sphinx Statue" + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "Magic Sparks - Purple" + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "This is the default waypoint you may place to set a patrol path for a creature or NPC.\r\n1. Create the creature and either use its current Tag or fill in a new one.\r\n2. Place or make sure the WalkWayPoints() is within the body of the On Spawn script for the creature.\r\n3. Place a series of waypoints along the route you wish the creature to walk.\r\n4. Select all of the newly created waypoints and right click. Choose the Create Set option.\r\n5. The waypoint set will have a set name of \"WP_\" + NPC Tag. Thus if an NPC with the Tag \"Guard\" will have a waypoint set called \"WP_Guard\". Note that Tags are case sensitive." + } + } + ] + } +} diff --git a/_module/git/_base.git.json b/_module/git/_base.git.json new file mode 100644 index 0000000..c585cac --- /dev/null +++ b/_module/git/_base.git.json @@ -0,0 +1,82 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 12 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 32 + }, + "AmbientSndNight": { + "type": "int", + "value": 14 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 32 + }, + "EnvAudio": { + "type": "int", + "value": 104 + }, + "MusicBattle": { + "type": "int", + "value": 41 + }, + "MusicDay": { + "type": "int", + "value": 15 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 21 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/area.git.json b/_module/git/area.git.json new file mode 100644 index 0000000..737cce6 --- /dev/null +++ b/_module/git/area.git.json @@ -0,0 +1,11779 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 80 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 110 + }, + "AmbientSndNight": { + "type": "int", + "value": 80 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 109 + }, + "EnvAudio": { + "type": "int", + "value": 0 + }, + "MusicBattle": { + "type": "int", + "value": 0 + }, + "MusicDay": { + "type": "int", + "value": 0 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 0 + } + } + }, + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 20 + }, + "Appearance_Type": { + "type": "word", + "value": 0 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 9 + }, + "ChallengeRating": { + "type": "float", + "value": 27.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 1 + }, + "Color_Skin": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 16 + }, + "Conversation": { + "type": "resref", + "value": "smith" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 224 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Dex": { + "type": "byte", + "value": 13 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 4424 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 63 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_adaplate" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 233 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 232 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 231 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 408 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 513 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 512 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 966 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 637 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 636 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 675 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 674 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 229 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 230 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 69 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 68 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 26 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 727 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 726 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 27 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 30 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 234 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 392 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 227 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 107 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 106 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 145 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 144 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Master Crafter" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 224 + }, + "Int": { + "type": "byte", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 100 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 384 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 9 + }, + "Race": { + "type": "byte", + "value": 0 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "x2_def_onconv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "x2_def_heartbeat" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 65535 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 26 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "MasterCrafter" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "mastercrafter" + }, + "WalkRate": { + "type": "int", + "value": 4 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 10 + }, + "XOrientation": { + "type": "float", + "value": -1.06414136098465e-005 + }, + "XPosition": { + "type": "float", + "value": 4.989400863647461 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 12.81244564056397 + }, + "ZPosition": { + "type": "float", + "value": 0.2999811172485352 + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.141582012176514 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "arena_crafter" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Door", + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "smith_arena" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_11" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.0 + }, + "Y": { + "type": "float", + "value": 5.019999980926514 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2445 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141582012176514 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813807 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 6 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812240 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2628 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FORGE" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_forge" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 1.930061340332031 + }, + "Y": { + "type": "float", + "value": 14.32600021362305 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2542 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810988 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812528 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 444 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_PLIERS" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_pliers" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.004443168640137 + }, + "Y": { + "type": "float", + "value": 12.88990211486816 + }, + "Z": { + "type": "float", + "value": 0.9347496628761292 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2525 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810988 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811982 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 444 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_HAMMER02" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_hammer02" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.017698287963867 + }, + "Y": { + "type": "float", + "value": 14.26435661315918 + }, + "Z": { + "type": "float", + "value": 0.8299999237060547 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2526 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810988 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811986 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 444 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_HAMMER03" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_hammer03" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.000388145446777 + }, + "Y": { + "type": "float", + "value": 12.19790458679199 + }, + "Z": { + "type": "float", + "value": 0.8299999833106995 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2581 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810989 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813558 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 444 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_ORCAXE" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_orcaxe" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.152544975280762 + }, + "Y": { + "type": "float", + "value": 11.33865928649902 + }, + "Z": { + "type": "float", + "value": 0.300000011920929 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 1 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "dyeman" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "dyeman" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90776 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL23" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel23" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90772 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL00" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel00" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90777 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL25" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel25" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90774 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL02" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel02" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90791 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL48" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel48" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90790 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL44" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel44" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90785 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL35" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel35" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90787 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL37" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel37" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90780 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL29" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel29" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90783 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL33" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel33" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90778 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL26" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel26" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90781 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL31" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel31" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 12, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90775 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL20" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel20" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 13, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90784 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL34" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel34" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 14, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90786 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL36" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel36" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 15, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90779 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL28" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel28" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90788 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL39" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel39" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 17, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90789 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL41" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel41" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 18, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90782 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 492 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 493 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeL32" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyel32" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 19, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90795 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM03" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem03" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 20, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90792 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM00" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem00" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 21, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90803 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM31" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem31" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 22, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90798 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM16" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem16" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 23, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90807 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM40" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem40" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 24, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90802 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM28" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem28" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 25, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90800 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM24" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem24" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 26, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90804 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM32" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem32" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 27, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90799 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM18" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem18" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 28, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90797 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM10" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem10" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 29, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90808 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM42" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem42" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 30, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90794 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM02" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem02" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 31, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90801 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM25" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem25" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90806 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM37" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem37" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 33, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90796 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM08" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem08" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 34, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90805 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM36" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem36" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 35, + "AddCost": { + "type": "dword", + "value": 82 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90793 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90809 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 494 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 495 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeM48" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyem48" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 36, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90756 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC23" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec23" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 37, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90752 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC00" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec00" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 38, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90754 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC02" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec02" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 39, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90757 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC25" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec25" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 40, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90771 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC48" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec48" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 41, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90770 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC44" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec44" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 42, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90765 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC35" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec35" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 43, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90767 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC37" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec37" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 44, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90760 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC29" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec29" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 45, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90763 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC33" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec33" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 46, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90758 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC26" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec26" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 47, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90761 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC31" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec31" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 48, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC20" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec20" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 49, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90764 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC34" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec34" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 50, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90766 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC36" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec36" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 51, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90759 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC28" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec28" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 52, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90768 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC39" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec39" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 53, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90769 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC41" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec41" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 54, + "AddCost": { + "type": "dword", + "value": 32 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 5 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90753 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90762 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 490 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 491 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_dyeC32" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_dyec32" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "dyeman" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 3.773440837860107 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 13.69245719909668 + }, + "ZPosition": { + "type": "float", + "value": 0.3000004291534424 + } + } + ] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/area001.git.json b/_module/git/area001.git.json new file mode 100644 index 0000000..aba40f0 --- /dev/null +++ b/_module/git/area001.git.json @@ -0,0 +1,5548 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 3 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 93 + }, + "AmbientSndNight": { + "type": "int", + "value": 3 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 92 + }, + "EnvAudio": { + "type": "int", + "value": 0 + }, + "MusicBattle": { + "type": "int", + "value": 0 + }, + "MusicDay": { + "type": "int", + "value": 49 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 49 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.141585350036621 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "arena_lib" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "lib_arena" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_11" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0 + }, + "Y": { + "type": "float", + "value": 4.76837158203125e-007 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 157 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "changer" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Regular Appearances\n===============\n\n0 Dwarf\n1 Elf\n3 Halfling\n4 Half_Elf\n5 Half_Orc\n6 Human\n8 Badger\n9 Badger_Dire\n10 Bat \n11 Bat_Horror\n12 Bear_Black\n13 Bear_Brown\n14 Bear_Polar\n15 Bear_Dire\n17 Beetle_Slicer\n18 Beetle_Fire\n19 Beetle_Stag\n20 Beetle_Stink\n21 Boar \n22 Boar_Dire\n23 Bodak \n24 Golem_Bone\n25 Bugbear_Chieftain_A\n26 Bugbear_Chieftain_B\n27 Bugbear_Shaman_A \n28 Bugbear_Shaman_B \n29 Bugbear_A \n30 Bugbear_B \n31 Chicken \n34 Cow \n35 Deer \n36 Skeletal_Devourer\n37 Deer_Stag\n38 Balor \n39 Lich\n40 Doom_Knight\n41 Dragon_Black\n42 Dragon_Brass\n43 Dragon_Copper\n44 Dragon_Silver\n45 Dragon_Bronze\n46 Dragon_Gold \n47 Dragon_Blue \n48 Dragon_Green \n49 Dragon_Red \n50 Dragon_White \n51 Dryad \n52 Elemental_Air\n53 Elemental_Air_Elder\n54 War_Devourer \n55 Fairy \n56 Elemental_Earth \n57 Elemental_Earth_Elder\n58 Mummy_Common\n59 Mummy_Fighter_2\n60 Elemental_Fire\n61 Elemental_Fire_Elder\n62 Skeleton_Priest\n63 Skeleton_Common \n64 Invisible_Stalker \n68 Elemental_Water_Elder\n69 Elemental_Water\n70 Skeleton_Warrior_1 \n71 Skeleton_Warrior_2\n72 Ettin\n73 Gargoyle\n74 Ghast\n76 Ghoul\n77 Ghoul_Lord\n78 Giant_Hill\n79 Giant_Mountain\n80 Giant_Fire\n81 Giant_Frost\n82 Goblin_Chief_A\n83 Goblin_Chief_B\n84 Goblin_Shaman_A \n85 Goblin_Shaman_B\n86 Goblin_A \n87 Goblin_B\n88 Golem_Flesh\n89 Golem_Iron\n90 Shield_Guardian\n91 Golem_Clay \n92 Golem_Stone\n93 Cat_Leopard\n94 Cat_Crag_Cat\n95 Cat_Cat_Dire\n96 Cat_Krenshar\n97 Cat_Lion\n98 Cat_Jaguar\n99 Werecat\n100 Helmed_Horror\n101 Vrock \n102 Hook_Horror\n103 Lantern_Archon\n104 Quasit\n105 Imp\n106 Mephit_Air\n107 Mephit_Dust\n108 Mephit_Earth\n109 Mephit_Fire\n110 Mephit_Ice\n111 Mephit_Salt\n112 Mephit_Ooze\n113 Mephit_Steam\n114 Mephit_Magma\n115 Mephit_Water \n116 Will_O_Wisp\n117 Intellect_Devourer\n119 Minogon\n120 Minotaur\n121 Minotaur_Chieftain\n122 Minotaur_Shaman\n123 Mohrg\n124 Mummy_Greater\n125 Mummy_Warrior\n126 Nymph\n127 Ogre\n128 Ogre_Chieftain\n129 Ogre_Mage\n130 Lizardfolk_Warrior_A\n131 Lizardfolk_Warrior_B\n132 Lizardfolk_Shaman_A\n133 Lizardfolk_Shaman_B\n134 Lizardfolk_A\n135 Lizardfolk_B\n136 Orc_Chieftain_A\n137 Orc_Chieftain_B\n138 Orc_Shaman_A\n139 Orc_Shaman_B\n140 Orc_A\n141 Orc_B\n142 Ox\n144 Falcon\n145 Raven\n146 Shadow\n147 Shadow_Fiend\n148 Skeleton_Mage\n150 Skeleton_Warrior\n151 Slaad_Blue\n152 Slaad_Death\n153 Slaad_Gray\n154 Slaad_Green\n155 Slaad_Red\n156 Spectre\n157 Aranea\n158 Spider_Dire\n159 Spider_Giant\n160 Spider_Phase\n161 Spider_Sword\n162 Spider_Wraith\n163 Succubus\n164 Troll_Chieftain\n165 Troll_Shaman\n166 Ettercap \n167 Troll\n168 Umberhulk\n170 Wererat\n171 Werewolf\n172 Wight\n174 Dog_Blinkdog\n175 Dog_Dire_Wolf\n176 Dog\n177 Dog_Fenhound\n179 Dog_Hell_Hound\n180 Dog_Shadow_Mastif\n181 Dog_Wolf\n182 Skeleton_Chieftain\n184 Dog_Winter_Wolf\n185 Dog_Worg\n186 Allip\n187 Wraith\n188 NWN_Aarin\n189 NWN_Aribeth_Evil\n190 aribeth\n191 NWN_Haedraline\n192 NWN_Morag\n193 NWN_Maugrim\n195 Zombie_Rotting\n196 Zombie_Warrior_1\n197 Zombie_Warrior_2\n198 Zombie\n199 Zombie_Tyrant_Fog\n200 arch_target\n201 combat_dummy \n202 Cat_Panther\n203 Cat_Cougar\n204 Bear_Kodiak\n205 Grey_Render\n206 Penguin\n207 OgreB\n208 Ogre_ChieftainB\n209 Ogre_MageB\n210 NW_Militia_Member\n211 Luskan_Guard\n212 Cult_Member \n213 Uthgard_Elk_Tribe\n214 Uthgard_Tiger_Tribe\n215 Drow_Cleric\n216 Drow_Fighter\n217 Druegar_Fighter\n218 Druegar_Cleric\n219 House_Guard\n220 Begger\n221 Blood_Sailer\n222 Female_01\n223 Female_02\n224 Female_03\n225 Female_04\n226 Male_01\n227 Male_02\n228 Male_03\n229 Male_04\n230 Male_05\n231 Plague_Victim\n232 Shop_Keeper\n233 Inn_Keeper\n234 Bartender\n235 Waitress\n236 Prostitute_01\n237 Prostitute_02\n238 Convict \n239 Old_Man\n240 Old_Woman\n241 Kid_Male\n242 Kid_Female\n243 Gnome_NPC_Female\n244 Gnome_NPC_Male\n245 Elf_NPC_Female\n246 Elf_NPC_Male_01\n247 Elf_NPC_Male_02\n248 Dwarf_NPC_Female\n249 Dwarf_NPC_Male\n250 Halfling_NPC_Female\n251 Halfling_NPC_Male\n252 Half_Orc_NPC_Female\n253 Half_Orc_NPC_Male_01\n254 Half_Orc_NPC_Male_02\n255 Human_NPC_Female_01\n256 Human_NPC_Female_02\n257 Human_NPC_Female_03\n258 Human_NPC_Female_04\n259 Human_NPC_Female_05\n260 Human_NPC_Female_06\n261 Human_NPC_Female_07\n262 Human_NPC_Female_08\n263 Human_NPC_Female_09\n264 Human_NPC_Female_10\n265 Human_NPC_Female_11\n266 Human_NPC_Female_12\n267 Human_NPC_Male_01\n268 Human_NPC_Male_02\n269 Human_NPC_Male_03\n270 Human_NPC_Male_04\n271 Human_NPC_Male_05\n272 Human_NPC_Male_06\n273 Human_NPC_Male_07\n274 Human_NPC_Male_08\n275 Human_NPC_Male_09\n276 Human_NPC_Male_10\n277 Human_NPC_Male_11\n278 Human_NPC_Male_12\n279 Human_NPC_Male_13\n280 Human_NPC_Male_14\n281 Human_NPC_Male_15\n282 Human_NPC_Male_16\n283 Human_NPC_Male_17\n284 Human_NPC_Male_18\n285 Yuan_Ti\n286 Yuan_Ti_Chieften\n287 Yuan_Ti_Wizard\n288 Vampire_Female\n289 Vampire_Male\n290 Rakshasa_Tiger_Female\n293 Rakshasa_Tiger_Male\n294 Rakshasa_Bear_Male\n295 Rakshasa_Wolf_Male\n296 NWN_Nasher\n297 NWN_Sedos\n298 Invisible_Human_Male\n300 Kobold_Chief_A\n301 Kobold_Shaman_A\n302 Kobold_A\n303 Kobold_Chief_B\n304 Kobold_Shaman_B\n305 Kobold_B\n306 Cat_MPanther\n350 Giant_Frost_Female\n351 Giant_Fire_Female\n352 Medusa\n353 Asabi_Chieftain\n354 Asabi_Shaman\n355 Asabi_Warrior\n356 Stinger\n357 Stinger_Warrior\n358 Stinger_Chieftain\n359 Stinger_Mage\n360 Formian_Worker\n361 Formian_Warrior\n362 Formian_Myrmarch\n363 Formian_Queen\n364 Sphinx\n365 Gynosphinx\n366 Manticore\n367 Gorgon\n368 cockatrice\n369 Basilisk\n370 XP1_HeurodisLich\n374 Faerie_Dragon\n375 Pseudodragon\n376 Wyrmling_Red\n377 Wyrmling_Blue\n378 Wyrmling_Black\n379 Wyrmling_Green\n380 Wyrmling_White\n381 Wyrmling_Brass\n382 Wyrmling_Copper\n383 Wyrmling_Bronze\n384 Wyrmling_Silver\n385 Wyrmling_Gold \n386 Rat\n387 Rat_Dire\n388 Gnoll_Warrior\n389 Gnoll_Wiz\n390 Hobgoblin_Warrior\n391 Hobgoblin_Wizard\n392 Devil\n401 Beholder\n402 Beholder_Mage\n403 Beholder_Eyeball\n404 Mephisto_Big\n405 Dracolich\n406 Drider\n407 Drider_Chief\n408 Drow_Slave\n409 Drow_Wizard\n410 Drow_Matron\n411 Duergar_Slave\n412 Duergar_Chief\n413 Mindflayer\n414 Mindflayer2\n415 Mindflayer_Alhoon\n416 Deep_Rothe\n418 Dragon_Shadow\n419 Harpy\n420 Golem_Mithril\n421 Golem_Adamantium\n422 Spider_Demon\n423 Svirf_Male\n424 Svirf_Female\n425 Dragon_Pris\n426 Slaad_Black\n427 Slaad_White\n428 Azer_Male\n429 Azer_Female\n430 Demi_Lich\n431 ObjectChair\n432 objectTable\n433 objectCandle\n434 objectChest\n435 objectWhite\n436 objectBlue\n437 objectCyan\n438 objectGreen\n439 objectYellow\n440 objectOrange\n441 objectRed\n\n*********************************************\n\nCEP Appearances\n=============\n\n1000\tWemic\n1001\tTwig_Blight\n1002\tBrownie\n1003\tSatyr\n1004\tSatyr_Large\n1005\tCattle_Calf_Dark\n1006\tCattle_Calf_Brown\n1007\tBuffalo_Calf\n1008\tCattle_Longhorn\n1009\tBuffalo_A\n1010\tBuffalo_B\n1011\tBuffalo_C\n1012\tCattle_Rothe\n1013\tCattle_Black_Angus\n1014\tCattle_Brown_Angus\n1015\tBison\n1016\tBison_Antiquus\n1017\tCattle_Brahman\n1018\tCattle_Fighting\n1019\tCattle_Highland\n1020\tCattle_Holstein\n1021\tPack_Badger\n1022\tPack_Ox\n1023\tOx_Plow\n1024\tOx_Pack\n1025\tSwine_Pig\n1026\tSwine_Hog\n1027\tSwine_Peccary\n1028\tSwine_Babirusa\n1029\tSwine_Potbelly\n1030\tArmor_Stand\n1031\tDracolich_B\n1032\t****\n1033\t****\n1034\t****\n1035\t****\n1036\t****\n1037\t****\n1038\t****\n1039\t****\n1040\t****\n1041\t****\n1042\t****\n1043\t****\n1044\tRust_Monster\n1045\tOwlbear\n1046\tBeholder_B\n1047\tScarecrow\n1048\tGhoul_Ice\n1049\tSkeleton_Small\n1050\tStirge_Cave\n1051\t****\n1052\tIllithid\n1053\tShrieker\n1054\tXorn\n1055\tMyconid\n1056\tMyconid_Sprout\n1057\tMyconid_Elder\n1058\tTroll_B\n1059\t****\n1060\tVegepygmy\n1061\tThorny\n1062\tVegepygmy_Thorny_Rider_T\n1063\tVegepygmy_Thorny_Rider\n1064\tVegepygmy_Thorny_Rider_V\n1065\tCyclops\n1066\t****\n1067\tElf_Blackrose_Male\n1068\tElf_Blackrose_Female\n1069\t****\n1070\t****\n1071\t****\n1072\t****\n1073\tFlying_Eye\n1074\tMarilith_demonic\n1075\tMarilith_Humanoid\n1076\tMarilith_Blackguard\n1077\tErinyes\n1078\t****\n1079\t****\n1080\t****\n1081\t****\n1082\t****\n1083\t****\n1084\t****\n1085\t****\n1086\t****\n1087\t****\n1088\tPlanetouched_Feyri\n1089\tSuccubus_2nd_Ed\n1090\tShade_Hooded\n1091\tShade\n1092\t****\n1093\tSuccubus_(PG_rated)\n1094\tCornugon_B\n1095\tWraith_Hooded_1\n1096\tWraith_Hooded_2\n1097\tDevil_B\n1098\tGelugon\n1099\tVisage\n1100\tVisage_Greater\n1101\tDemon_Vorlan\n1102\tHamatula\n1103\tBarghest\n1104\tBelker\n1105\t****\n1106\tSalamander_Average\n1107\tSalamander_Flame_Bro\n1108\tSalamander_Noble\n1109\tAzer_Male_B\n1110\tAzer_Female_B\n1111\tRakshasa_Wolf_Female\n1112\tRakshasa_Bear_Female\n1113\tLupinal_Male_1\n1114\tLupinal_Male_2\n1115\tLupinal_Male_3\n1116\tLupinal_Male_4\n1117\tLupinal_Female_1\n1118\tLupinal_Female_2\n1119\tLupinal_Female_3\n1120\tLupinal_Female_4\n1121\tManticore_B\n1122\tSphinx_Andro\n1123\tSphinx_Hieraco\n1124\tSphinx_Gyno\n1125\t****\n1126\t****\n1127\t****\n1128\t****\n1129\t****\n1130\t****\n1131\t****\n1132\tOrc_Faerun_Chief\n1133\tOrc_Faerun\n1134\tOrc_D\n1135\tOrc_E\n1136\tOrc_F\n1137\tOrc_Mercenary\n1138\tOrc_Snow\n1139\tOrc_Snow_Chieftan\n1140\tOrc_Snow_Shaman\n1141\tGoblin_Bone_Wizard\n1142\tGoblin_Spider_Rider\n1143\tOrc_Urak_hai_A\n1144\tOrc_Urak_hai_B\n1145\tOrc_Urak_Captain\n1146\tOrc_Urak_Worg_Trainer\n1147\tOrc_Urak_hai_C\n1148\tOrc_Bloodguar\n1149\tOgrillion_Tan_1\n1150\tOgrillion_Tan_2\n1151\tOgrillion_Dull_1\n1152\tOgrillion_Dull_2\n1153\tGoblin_Worg_Rider\n1154\tGoblin_Worg_Rider_W\n1155\tGoblin_Worg_Rider_G\n1156\tGoblin_Frost_Chief\n1157\tGoblin_Frost_Shaman\n1158\tGoblin_Frost\n1159\tGoblin_Cave\n1160\tGoblin_Cave_Archer\n1161\tGoblin_Cave_Berkserk\n1162\tGoblin_Cave_Shaman\n1163\tKobold_Ice_Noble\n1164\tKobold_Ice_Wizard\n1165\tKobold_Ice\n1166\t****\n1167\t****\n1168\tSpider_BloodBack\n1169\tAnt_Giant\n1170\tAnt_Giant_Fire\n1171\tBugs\n1172\tBugs_Large\n1173\tScorpion_Huge\n1174\tScorpion_Huge_A\n1175\tScorpion_Huge_B\n1176\tScorpion_Huge_C\n1177\tScorpion_Giant\n1178\tScorpion_Giant_A\n1179\tScorpion_Giant_B\n1180\tScorpion_Giant_C\n1180\tScorpion_Giant_C\n1181\tScorpion_Small\n1182\tScorpion_Small_A\n1183\tScorpion_Small_B\n1184\tScorpion_Small_C\n1185\tBeetle_Slicer_Fine\n1186\tBeetle_Slicer_Tiny\n1187\tBeetle_Slicer_Huge\n1188\tBeetle_Fire_Fine\n1189\tBeetle_Fire_Tiny\n1190\tBeetle_Fire_Huge\n1191\tBeetle_Stag_Fine\n1192\tBeetle_Stag_Tiny\n1193\tBeetle_Stag_Huge\n1194\tBeetle_Stink_Fine\n1195\tBeetle_Stink_Tiny\n1196\tBeetle_Stink_Huge\n1197\tSpiderFiend_Kakkuu\n1198\tSpiderFiend_Spithriku\n1199\tSpiderFiend_Phisarazu\n1200\tSpiderFiend_Lycosidilth\n1201\tSpiderFiend_Raklupis\n1202\tDrider_Male_a\n1203\tDrider_Male_b\n1204\tDrider_Male_c\n1205\tDrider_Male_d\n1206\tDrider_Male_e\n1207\tDrider_Female_a\n1208\tDrider_Female_b\n1209\tDrider_Female_c\n1210\tDrider_Female_d\n1211\tDrider_Armor_a\n1212\tDrider_Armor_b\n1213\tDrider_Armor_c\n1214\tLolth\n1215\tDoppelganger\n1216\tMechanon_Spiker\n1217\tMechanon_Spider\n1218\tMechanon_Cutter\n1219\tIllithid_Scientist\n1220\tIllithid_Biologist\n1221\tIllithid_3e\n1222\tIllithid_Murray\n1223\tIllithid_Kid\n1224\tIllithid_Biologist_2\n1225\tViper_Huge_Forest\n1226\tViper_Medium_Forest\n1227\tViper_Tiny_Forest\n1228\tViper_Huge_Desert\n1229\tViper_Medium_Desert\n1230\tViper_Tiny_Desert\n1231\tViper_Huge_Swamp\n1232\tViper_Medium_Swamp\n1233\tViper_Tiny_Swamp\n1234\tViper_Huge_Jungle\n1235\tViper_Medium_Jungle\n1236\tViper_Tiny_Jungle\n1237\t****\n1238\t****\n1239\t****\n1240\t****\n1241\t****\n1242\t****\n1243\tAnt_Giant_Soldier\n1244\tAnt_Giant_Guard\n1245\tAnt_Giant_Queen\n1246\tAnt_Giant_Larva\n1247\tAnt_Giant_HiveQueen\n1248\tSpider_Redback\n1249\tPack_Bear\n1250\tPack_Beetle\n1251\tPack_Boar\n1252\tPack_Penguin\n1253\tDemon_Bebilith_B\n1254\t****\n1255\tCow_2\n1256\tSpider_Wraith_B\n1257\tMinogon_B\n1258\tCat_Cougar\n1259\tVampiric_Mist_2\n1260\t****\n1261\tSlaad_Green_B\n1262\tBarghest_Greater\n1263\tBeetle_Bombardier\n1264\t****\n1265\tChild_Male_1\n1266\tChild_Female_1\n1267\tChild_Male_2\n1268\tChild_Female_2\n1269\tChild_Male_3\n1270\tChild_Female_3\n1271\tChild_Male_4\n1272\tChild_Female_4\n1273\tChild_Male_5\n1274\tChild_Female_5\n1275\tEagle\n1276\t****\n1277\tSkeleton_Dwarf\n1278\tBugbear_Arctic\n1279\tBugbear_Arctic_Shaman\n1280\tBugbear_Arctic_Chief\n1281\tBat_Battle\n1282\tBat_Bone\n1283\tEther_Scarab\n1284\tSpider_Ice\n1285\tSkeleton_Red_Eyes\n1286\tSkeleton_Flaming\n1287\tSkeleton_Green\n1288\tSkeleton_Purple\n1289\tSkeleton_Yellow\n1290\tWendigo\n1291\tBalrog\n1292\tBear_Sun\n1293\tBear_Spectacled\n1294\tBear_Sloth\n1295\tBear_Panda\n1296\tTrolloc_Boar\n1297\tTrolloc_Goat\n1298\tTrolloc_Hawk\n1299\tCat_Tiger\n1300\tCat_White_Tiger\n1301\t****\n1302\tCat_Snow_Leopard\n1303\tCat_Clouded_Leopard\n1304\tBladeling\n1305\tHuman_NPC_King\n1306\tHuman_Cleric_of_Tyr\n1307\tDemilich_B\n1308\tMouse\n1309\t****\n1310\t****\n1311\tSpiderling\n1312\tSpiderling_Giant\n1313\tSpiderling_Dire\n1314\tSpiderling_Sword\n1315\tSpiderling_Phase\n1316\tSkulk_Female\n1317\tSkulk_Male\n1318\tHalf_Dragon_Fiend\n1319\tCyclops_Armored\n1320\t****\n1321\t****\n1322\t****\n1323\t****\n1324\tErinyes_B\n1325\tVecna\n1326\tHyena_Spotted\n1327\tHyena_Striped\n1328\tRaccoon\n1329\tRed_Panda\n1330\tRingtail\n1331\t****\n1332\tAntelope_Brown\n1333\tAntelope_Black\n1334\tGazelle\n1335\tOtter\n1336\tWeasel\n1337\tWolverine\n1338\tSkunk\n1339\tMink\n1340\tFisher\n1341\tFerret\n1342\tElemental_Air_L\n1343\tElemental_Air_M\n1344\tElemental_Air_S\n1345\tElemental_Smoke_L\n1346\tElemental_Smoke_M\n1347\tElemental_Smoke_S\n1348\tElemental_Magma_L\n1349\tElemental_Magma_M\n1350\tElemental_Magma_S\n1351\tElemental_Ooze_L\n1352\tElemental_Ooze_M\n1353\tElemental_Ooze_S\n1354\tElemental_Water_L\n1355\tElemental_Water_M\n1356\tElemental_Water_S\n1357\tElemental_Fire_L\n1358\tElemental_Fire_M\n1359\tElemental_Fire_S\n1360\tElemental_Earth_L\n1360\tElemental_Earth_L\n1361\tElemental_Earth_M\n1362\tElemental_Earth_S\n1363\tElemental_Ice_L\n1364\tElemental_Ice_M\n1365\tElemental_Ice_S\n1366\tElemental_Radiance_L\n1367\tElemental_Radiance_M\n1368\tElemental_Radiance_S\n1369\tElemental_Mineral_L\n1370\tElemental_Mineral_M\n1371\tElemental_Mineral_S\n1372\tElemental_Steam_L\n1373\tElemental_Steam_M\n1374\tElemental_Steam_S\n1375\tElemental_Lightning_L\n1376\tElemental_Lightning_M\n1377\tElemental_Lightning_S\n1378\tElemental_Salt_L\n1379\tElemental_Salt_M\n1380\tElemental_Salt_S\n1381\tElemental_Dust_L\n1382\tElemental_Dust_M\n1383\tElemental_Dust_S\n1384\tElemental_Ash_L\n1385\tElemental_Ash_M\n1386\tElemental_Ash_S\n1387\tElemental_Vacuum_L\n1388\tElemental_Vacuum_M\n1389\tElemental_Vacuum_S\n1390\tDog_Cooshee_Female\n1391\tDog_Cooshee_Male\n1392\tDog_Dalmatian\n1393\tDog_Doberman\n1394\tDog_Husky\n1395\tDog_Malamute\n1396\tDog_Mastiff\n1397\tDog_Terrier\n1398\tDog_Yellow\n1399\tPuppy_Dalmatian\n1400\tPuppy_Cooshee\n1401\tPuppy_Doberman\n1402\tPuppy_Husky\n1403\tPuppy_Mastiff\n1404\tPuppy_Terrier\n1405\tPuppy_Yellow\n1406\tCat_Black\n1407\tCat_Black_&_White\n1408\tCat_Bobtail\n1409\tCat_White\n1410\tKitten_Blk_n_Wht\n1411\tKitten_White\n1412\t****\n1413\t****\n1414\t****\n1415\t****\n1416\t****\n1417\t****\n1418\tGlabrezu\n1419\t****\n1420\t****\n1421\tAnimated_Wheel\n1422\tAnimated_Table\n1423\t****\n1424\tAnimated_Chest\n1425\tAnimated_Tome\n1426\tAnimated_Chest_Flying\n1427\tCrab_Giant_Blue\n1428\tCrab_Blue\n1429\tCrab_Giant\n1430\tCrab\n1431\tStirge_A\n1432\tStirge_B\n1433\tDemon_Bebilith_C\n1434\tCornugon_A\n1435\tFlying_Book_A\n1436\tFlying_Book_B\n1437\tFlying_Book_C\n1438\t****\n1439\tZombie_Pirate_1\n1440\tSkeleton_Pirate_1\n1441\tSkeleton_Pirate_2\n1442\tSkeleton_Pirate_3\n1443\tZombie_Pirate_2\n1444\tZombie_Pirate_3\n1445\tSkeleton_Pirate_4\n1446\tSkeleton_Pirate_5\n1447\tSkeleton_Pirate_6\n1448\tZombie_Pirate_4\n1449\tGhost_Pirate\n1450\t****\n1451\tSkeleton_Ogre\n1452\t****\n1453\tJelly_Mustard\n1454\tJelly_Mustard\n1455\tJelly_Mustard\n1456\tJelly_Ochre\n1457\tJelly_Ochre\n1458\tJelly_Ochre\n1459\tOoze_Crystal\n1460\tOoze_Crystal\n1461\tOoze_Crystal\n1462\tOoze_Gray\n1463\tOoze_Gray\n1464\tOoze_Gray\n1465\tPudding_Black\n1466\tPudding_Black\n1467\tPudding_Black\n1468\tPudding_Brown\n1469\tPudding_Brown\n1470\tPudding_Brown\n1471\tPudding_Dun\n1472\tPudding_Dun\n1473\tPudding_Dun\n1474\tPudding_White\n1475\tPudding_White\n1476\tPudding_White\n1477\tSlime_Green\n1478\tSlime_Green\n1479\tSlime_Green\n1480\tSlime_Olive\n1481\tSlime_Olive\n1482\tSlime_Olive\n1483\tSlithering_Tracker\n1484\tSlithering_Tracker\n1485\tSlithering_Tracker\n1486\tGolem_Ruby\n1487\tGolem_Emerald\n1488\tGolem_Citrine\n1489\tGolem_Sapphire\n1490\tGolem_Amethyst\n1491\tGolem_Obsidian\n1492\tTreant\n1493\tWerebat\n1494\tWasp_Giant\n1495\tErinyes\n1496\tAssassin_vine_horizontal\n1497\tAssassin_vine_vertical\n1498\tMaug\n1499\tMaug_Lieutenant\n1500\tMaug_Commander\n1501\tOsyluth_A\n1502\tOsyluth_B\n1503\tOsyluth_C\n1504\tMaug_Captain\n", + "id": 14662 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "The Great Book of Polymorphing", + "id": 5800 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "conv5" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 756 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "InvisibleObject" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_invisobj" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.00666999816895 + }, + "Y": { + "type": "float", + "value": 16.51608276367188 + }, + "Z": { + "type": "float", + "value": 0.7606160640716553 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 301 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66696 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Fighter Elite \n\n(Fighter/WM/Rogue)\n\nName: Fighter Elite\n \nDamage: High\nAttack: Extreme \nAC: Very High\nHit Points: 474 \n\nRace: Elf\n\nAlignment: Any\n\nSpecial: Sneak Attack 2d6, Improved Evasion.\n\nClasses: \nFighter [12]\nWeapon Master [25]\nRogue [ 3] \n\nType: Dexterity\nWeapon: Rapier\n\nDescription: This build, in my opinion, holds the highest un-buffed attack bonus possible. It's a great char for those who are tired of a) being relatively weak without buffs, b) having to buff for 2 mins before every battle. The Fighter Elite is ready for anything at any time and if he didn't care for KI attacks, he would never EVER need to sleep for anything but HP restoration - mind you, why wait for a level 40 sleep when you can simply drink a potion. The very high dexterity of this character is responsible for such a high armour class and attack bonus. With an array of combat abilities and formidable rapier skills, the Fighter Elite is a true master in the art of melee combat.\n \nStats (nude)\n33 Armour Class\n44 Attack Bonus \n\nCombat Abilities: KI Strike, Improved Knockdown, Called Shot, Expertise, Whirlwind Attack\n \nOrder of levels:\n6 Fighter (Weapon Focus, Dodge, Mobility, Expertise, Spring Attack, Whirlwind Attack and Intimidate 4 ranks for Weaponmaster)\n10 Weapon Master\n4 Fighter\nWeapon Master 15\n1 Fighter (for Epic Weapon Specialization)\n2 Rogue (to allow the last fighter level at 39 for skill selection)\n1 Fighter (to max discipline and concentration)\n1 Rogue (for sneak attacks, improved evasion, Use magic Device, Tumble and Parry)\n \nBase Abilities:\nSTR [10] \nDEX [20] \nCON [10] \nINT [15] \nWIS [leave]\nCHA [leave]\n \nSpells: None\n \nAbility Bonuses: Spend them all on dexterity (this will raise your Attack Bonus and AC dexterity bonus) \n\nSkills: only choose intimidate (for Weapon Master) then save your skill points. At level 39 you will take a fighter level and choose these two class skills: Discipline [max out] (for resistance against melee attacks - called shot, knockdown), and Concentration [max out] (to maximise resisting taunt attacks).At level 40 you will take your final Rogue level and choose the following class skills: Tumble [max out] (to further raise your Armour Class and protect against flat-footed opportunity attacks) and Use Magic Device [30 pts] (so you can wear Boots of the Sun Soul and use magic scrolls, rods and wands) \n \nFeats: (in this order)\n \nWeapon Focus (Rapier), Dodge, Mobility, Expertise, Spring Attack, Whirlwind Attack, Weapon of Choice (Rapier), Improved Critical (Rapier), Weapon Finesse, Knockdown, Improved Knockdown, Toughness, Called Shot, Great Dexterity I, Epic Prowess, Great Dexterity II, Epic Weapon Focus, Great Dexterity III, Armour Skin, Great Dexterity IV, Epic Toughness I, Great Dexterity V, Epic Toughness II, Great Dexterity VI, Epic Weapon Specialization (Rapier), Epic Toughness III\n \nVariations: For the very last feat, you can choose a number of different feats depending on what you want. These include: Epic Toughness III for more Hit Points, Epic Reflexes to increase the most common saving throw in the game, Improved Expertise for +10 Armour Class in a difficult battle, and Improved Parry for extra defensive ability - if you are going to choose this feat, it might be worth shuffling your skill points so that you have the parry skill maxed.\n \nQuick slot Recommendations:\n [ F1 ] - Heal (potion)\n [ F2 ] - Lesser Restoration (potion)\n [ F3 ] - Aid (potion)\n [ F4 ] - Bull's Strength (potion)\n [ F5 ] - Divine Brew (potion)\n [ F6 ] - Improved Knockdown (Feat)\n [ F7 ] - KI Critical (WM ability)\n [ F8 ] - Called Shot: Arm (Feat)\n [ F9 ] - Called Shot: Leg (WM abilty)\n [ F10] - Expertise (Feat)\n [ F11] - Whirlwind Attack (Feat)\n [ F12] - Parry (Feat)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Fighter Elite", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 200 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "fighterelite" + }, + "TemplateResRef": { + "type": "resref", + "value": "fighterelite" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Grand Master \n(Monk/WM/Wizard)\n\nName: Grand Master\n \nDamage: Moderate\nAttack: Very High \nAC: Very High\nHit Points: 193 \n\nRace: Elf\n\nAlignment: Lawful Neutral (immune to smite attacks)\n\nSpecial: 5 Attacks per round, concealment (empty body), very high saves.\n\nClasses: \nMonk [19]\nWeapon Master [20]\nWizard [ 1]\n\nType: Dexterity\nWeapon: Duel Wielded Kamas\n\nDescription: This is a great build for those who love both fast and effective fighters. The Monk levels provide great resistances and saves while the Weapon Master levels ensure that the monk's extra speed and duel wielding attacks are backed by formidable weapon skills. This character is fun to play and should do very well against monsters and in duels. The Wizard level affords the Grand Master 3 true strike spells, a handy +20 ab. A good strategy would be to boost up on ab using a true trike and then knocking down your opponent while you're ab is high. Once your enemy is down, you can inflict 5 free hits per round.\n \nStats (nude)\n37 Armour Class\n38 Attack Bonus \n\nCombat Abilities: KI Damage, Improved Knockdown, Expertise, Whirlwind Attack, Flurry of Blows, Stunning Fist, Quivering Palm.\n \nOrder of levels:\n15 Monk (Weapon Focus, Dodge, Mobility, Expertise, Spring Attack, Whirlwind Attack and Intimidate 4 ranks for Weapon Master)\n1 Wizard\n20 Weapon Master\n4 Monk\n \nBase Abilities:\nSTR [leave]\nDEX [20] \nCON [ 9] \nINT [14] \nWIS [15] \nCHA [leave]\n \nSpells: True Strike, Mage Armour, Shield, Ray of enfeeblement, Resistance\n \nAbility Bonuses: Spend them all on dexterity (this will raise your Attack Bonus and AC dexterity bonus) \n\nSkills: only choose intimidate (4 ranks for Weapon Master) then save your skill points. At level 40 you will take your final Monk level and choose these class skills: Discipline [max out] (for resistance against melee attacks - called shot, knockdown), Concentration [max out] (to maximise resisting taunt attacks), Tumble [max out] (to further raise your Armour Class and protect against flat-footed opportunity attacks) Parry [max out], Hide [36 ranks] (This is all the skill points you will have left, so put them into something useful. I chose hide to maximise the empty body ability) \n \nFeats: (in this order)\n \nDodge, Mobility, Expertise, Weapon Focus (Kama), Spring Attack, Whirlwind Attack, Weapon of Choice (Kama), Weapon Finesse, Two Weapon Fighting, Ambidexterity, Improved tow weapon Fighting, Epic Prowess, Great Dexterity I, Epic Weapon Focus (Kama), Great Dexterity II, Armour Skin, Great Dexterity III, Great Dexterity IV\n \nVariations: You might want to substitute Armour Skin for Improved Critical (Kama). Your Armour Class is pretty good, so this might prove to be a good investment as far as doing better damage with your Kamas.\n \nQuick slot Recommendations:\n [ F1 ] - Whole of Body (Monk ability)\n [ F2 ] - Empty Body (Monk ability)\n [ F3 ] - Stealth Mode (Regular ability)\n [ F4 ] - Aid (potion)\n [ F5 ] - Divine Brew (potion)\n [ F6 ] - KI Critical (WM ability)\n [ F7 ] - Improved Knockdown (Feat)\n [ F8 ] - Flurry of Blows (Monk Ability)\n [ F9 ] - Expertise (WM ability)\n [ F10] - Whirlwind Attack (Feat)\n [ F11] - Parry (Feat)\n [ F12] - True Strike (Wizard Spell)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Grand Master", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 159 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "grandmaster" + }, + "TemplateResRef": { + "type": "resref", + "value": "grandmaster" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Holy Fighter\n(Cleric/COT/Rogue)\n\nName: Holy Fighter\n \nDamage: High\nAttack: Extreme\nAC: High\nHit Points: 269\n\nRace: Elf\n\nAlignment: Chaotic Neutral (any non lawful for bard)\n\nSpecial: Divine Wrath, War Domain Powers, Protection Domain Powers, Smite Evil, Lay on Hands, 2d6 Sneak attacks, Improved Evasion\n\nClasses: \nCleric [12]\nChampion of Torm [25]\nRogue [3] \n\nType: Dexterity\nWeapon: Rapier\n\nDescription: This build is unusual because the cleric levels are only required for the War Domain Powers and 1 spell: Divine Favour. The reason for this is that because war domain powers and Divine Wrath require a charisma bonus to last long enough to be useful, no ability points could be spared for extra wisdom. When buffed the Holy Warrior deals nice divine damage and has a considerably high attack bonus. This lasts for about 7 rounds, in which time you should get a few called shots in and a knockdown just as it is wearing out. The Champion of Torm levels give this build a huge number of feats, the Divine Wrath ability, a powerful Lay on Hands healing ability and smite evil attacks. The rogue levels at the end give you 2d6 sneak attacks and a few good skills like Tumble and Use Magic Device. All in all this is a fun build to play that buffs very quickly, which reduces buffing tedium, and has a good variety of melee abilities to play with.\n \nStats (nude)\n40 Armour Class\n32 Attack Bonus \n\nCombat Abilities: Improved Knockdown, Called Shot, Improved Expertise, Improved Parry\n \nOrder of levels:\n12 Cleric\n25 Champion of Torm\n3 Rogue\n\nBase Abilities:\nSTR [leave] \nDEX [20] \nCON [leave] \nINT [13] \nWIS [leave] \nCHA [14]\n \nSpells: Automatic\n \nAbility Bonuses: Spend them all on Dexterity (this will raise your Attack Bonus and Armour Class) \n\nSkills: Make sure you choose 15 ranks of Concentration on your last Cleric Level (12). You'll also need to choose 40 ranks of Discipline on your last Champion of Torm Level because Rogues don't get that as a class skill. When you reach level 40, spend all of your remaining skill points on these Rogue class skills: Tumble [max out] (to further raise your Armour Class and protect against flat-footed opportunity attacks), Use Magic Device [30 ranks] (this is all you need to use a wide range of magic items including Boots of the Sun Soul), Parry [19 ranks] (this is all you have left - you want this to maximise the effectiveness of Improved Parry) \n \nFeats: (in this order)\n \nKnockdown, Weapon Focus (Rapier), Weapon Finesse, Called Shot, Improved Critical (Rapier), Improved Knockdown, Toughness, Expertise, Extra Smiting, Improved Expertise, Improved Parry, Great Charisma I, Epic Prowess, Great Charisma II, Epic Weapon Focus (Rapier), Great Dexterity I & II, Armour Skin, Great Dexterity III, Epic Toughness I, Great Dexterity IV, Epic Toughness II\n \nVariations: You could choose great dexterity instead of great charisma which would give you an extra +1 to your base attack but you would lose 2 rounds of duration on your war domain powers and divine wrath.\n \nQuick slot Recommendations:\n [ F1 ] - Heal (potion)\n [ F2 ] - Aid (potion)\n [ F3 ] - Divine Brew (potion)\n [ F4 ] - Divine Favour (Cleric Spell)\n [ F5 ] - War Domain (Cleric ability)\n [ F6 ] - Divine Wrath (COT ability)\n [ F7 ] - Improved Knockdown (Feat)\n [ F8 ] - Called Shot: Arm (Feat)\n [ F9 ] - Called Shot: Leg (Feat)\n [ F10 ] - Improved Expertise (Feat)\n [ F11] - Improved Parry (Feat)\n [ F12] - Lay on Hands (COT ability)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Holy Fighter", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 137 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "holyfighter" + }, + "TemplateResRef": { + "type": "resref", + "value": "holyfighter" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Lore Guardian\n(Bard/RDD/PM)\n\nName: Lore Guardian\n \nDamage: Moderate\nAttack: High\nAC: Extreme\nHit Points: 306\n\nRace: Elf\n\nAlignment: True Neutral (Bard requirement and any non good for Pale Master )\n\nSpecial: Taunt, Curse Song, Lasting Inspiration, Immunity to Fire, Paralysis and Sleep, Dragon's Breath, Immunity to Critical Hits, Undead Graft II, Deathless Touch\n\nClasses: \nBard [20]\nRed Dragon Disciple [10]\nPale Master [10] \n\nType: Dexterity\nWeapon: Rapier\n\nDescription: This is the Bard Heretic's nemesis. Choosing agility and skill over power, the Lore Guardian protects the right of those who wish to choose neutrality and seeks to eradicate any fellow bards who have strayed too far into the dark side. A bard's ability to curse must not be used on innocents and it is these whom the Lore Guardian protects. The Pale Master and Red Dragon Disciples Armour Bonuses on top of high dexterity are behind the awesome defensive power of this character. Choosing combat feats over high damage feats has meant that a greater range of combat options have been mastered. The Intelligence and Charisma bonuses brought by the Red Dragon Disciple levels have boosted skill points and Bard Spells. The Pale Master's critical hit immunity means that getting through this character's abundant supply of hit points will not be easily achieved, let alone done instantly with a devastating critical hit. With a strong set of useful skills, a broad range of magic and combat abilities, and an awesome Armour Class, this build will stand well against any adversary and will not be easily defeated.\n \nStats (nude)\n41 Armour Class\n36 Attack Bonus \n\nCombat Abilities: Overwhelming Critical, Taunt, Curse Song, Bard Song, Improved Knockdown, Called Shot\n\nOrder of levels:\n10 Bard\n10 Red Dragon Disciple\n9 Pale Master\n10 Bard (the Bard's 20th level must be chosen on the 49th character level in order to qualify for the Lasting Inspiration feat) \n1 Pale Master (10th Pale Master affords Critical Hit Immunity)\n\nBase Abilities:\nSTR [leave] \nDEX [20] \nCON [10]\nINT [14] \nWIS [leave] \nCHA [12]\n \nSpells: Balagarn's Horn, Magic Weapon, Mage Armour, Cloud of Bewilderment, Darkness, Protection from Alignment, Ghostly Visage, Greater Magic Weapon, Bestow Curse, Dispel Magic, Summon Creature IV (Dire Spider), Invisibility, Cure Critical Wounds\n \nAbility Bonuses: Spend them all on Dexterity (this will raise your Attack Bonus and Armour Class) \n\nSkills: Make sure you choose at least 25 ranks of Perform before you attempt to take Lasting Inspiration at level 39. When you reach level 40, spend all of your remaining skill points on these class skills: Discipline [max out] (for resistance against melee attacks - called shot, knockdown), and Concentration [36] (to maximise resisting taunt attacks - when you take your final Pale Master Level, spend all of your remaining skill points on this skill to top it up), Tumble [max out] (to further raise your Armour Class and protect against flat-footed opportunity attacks) Taunt [max out] (to lower your enemy's Armour Class), Perform [35 max] (to maximise the power of Bard Song - ranks over 35 are not utilised, so don't waste any more skill points than you need to), Use Magic Device [30 ranks] (this is all you need to use a wide range of magic items including Boots of the Sun Soul), Spell craft [max out] (to max the DC of your attack spells) \n \nFeats: (in this order)\n \nCurse Song, Weapon Focus (Rapier), Weapon Finesse, Toughness, Improved Critical (Rapier), Knockdown, Improved Knockdown, Epic Prowess, Epic Weapon Focus (Rapier), Armour Skin, Called Shot, Great Dexterity I & II, Lasting Inspiration\n \nVariations: You could sacrifice Armour Skin and Called Shot for Great Dexterities III & IV. This would essentially give +1 Attack Bonus in exchange for -2 Armour Class and the Called Shot melee ability.\n \nQuick slot Recommendations:\n [ F1 ] - Heal (potion)\n [ F2 ] - Divine Brew (potion)\n [ F3 ] - Displacement (Bard spell)\n [ F4 ] - Improved Invisibility (Bard Spell)\n [ F5 ] - War Cry (Bard spell)\n [ F6 ] - Gr Magic Weapon (Bard Spell)\n [ F7 ] - Improved Knockdown (Feat)\n [ F8 ] - Called Shot: Arm (Feat)\n [ F9 ] - Called Shot: Leg (Feat)\n [ F10 ] - Taunt (Skill)\n [ F11] - Bard Song (Bard Ability)\n [ F12] - Curse Song (Bard ability)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Lore Guardian", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 132 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "lguard" + }, + "TemplateResRef": { + "type": "resref", + "value": "lguard" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Pale Defender\n(Monk/Wizard/PM)\n\nName: Pale Defender\n \nDamage: Moderate\nAttack: Low\nAC: Extreme\nHit Points: 145\n\nRace: Elf\n\nAlignment: Chaotic Evil (any non-good for Pale Master and non-lawful for bard)\n\nSpecial: Curse Song, Immunity to Fire, Paralysis and Sleep, Dragon's Breath, Immunity to Critical Hits, Undead Graft II, Deathless Touch, Elemental Resistance\n\nClasses: \nMonk [12]\nWizard [4]\nPale Master [24] \n\nType: Dexterity\nWeapon: Duel-wielded Kamas\n\nDescription: This build gets its extreme armour class from the Pale Master's bone skin, the Monk's wisdom modifier and the high dexterity bonus. The only drawback is the low attack bonus that resulted from a lack of Monk levels and the duel-wielding penalty. The low intelligence is responsible for the low number of combat abilities to play with. Most of the feats were dedicated to two-weapon fighting and raising the armour bonus. The 4 Wizard levels afford this build a few very useful spells, including flame weapon and true strike. The extra attacks increase the chances of a critical hit and the monk speed is active because no armour is worn. In summary, this is still a fun character to play with a few handy spells, good speed, extra attacks and an awesome armour class.\n \nStats (nude)\n51 Armour Class\n34 Attack Bonus \n\nCombat Abilities: Undead Graft, Deathless Touch, Flurry of Blows, Extra Attacks, Basic Knockdown\n \nOrder of levels:\n11 Monk\n3 Wizard\n24 Pale Master\n1 Wizard (to take ranks in spellcraft)\n1 Monk (for class skills)\n\nBase Abilities:\nSTR [leave] \nDEX [20]\nCON [leave] \nINT [12] \nWIS [16] \nCHA [14] \n \nSpells: Shield, Mage Armour, True Strike, Magic Weapon, Protection from Alignment, Colour Spray, Ghostly Visage, Invisibility, Flame Weapon, Darkness\n \nAbility Bonuses: Spend them all on Dexterity (this will raise your Attack Bonus and Armour Class) \n\nSkills: After you take your final Wizard level at 39, take 30 ranks in Spellcraft. Then when you take your final Monk level at 40, spend all of your skill points on these class skills: Discipline [max out] (for resistance against melee attacks - called shot, knockdown), Concentration [41] (to maximise resisting taunt attacks), Tumble [max out] (to further raise your Armour Class and protect against flat-footed opportunity attacks) \n\nFeats: (in this order)\n \nDodge, Two-weapon Fighting, , Weapon Finesse, Ambidexterity, , Weapon Focus (Kama), Improved Two-weapon Fighting, Improved Critical (Kama), Epic Prowess, Epic Weapon Focus, Armour Skin, Epic Energy Resistance (electrical), Great Dexterity I, Epic Energy Resistance (electrical), Great Dexterity II, Epic Energy Resistance (electrical), Great Dexterity III, Epic Energy Resistance (electrical), Great Dexterity IV\n \nVariations: You could try making this character using rapier weapon focus to raise the attack bonus. It might be an idea to put one ability point into intelligence and choose a few combat feats, such as Improved Knockdown and/or Improved Parry or Expertise instead of the duel-wield feats.\n \nQuick slot Recommendations:\n [ F1 ] - Whole of Body (Monk Ability)\n [ F2 ] - Aid (potion)\n [ F3 ] - Divine Brew (potion)\n [ F4 ] - Impr Invisibility (Wizard spell)\n [ F5 ] - Ghostly Visage (Wizard spell)\n [ F6 ] - True Strike (Wizard spell)\n [ F7 ] - Knockdown (Feat)\n [ F8 ] - Magic Weapon (Wizard spell)\n [ F9 ] - Flame Weapon (Wizard spell) \n [ F10 ] - Darkness (Wizard spell)\n [ F11] - Colour Spray (Wizard spell)\n [ F12] - Flurry of Blows (Monk ability)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Pale Defender", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 100 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "paledef" + }, + "TemplateResRef": { + "type": "resref", + "value": "paledef" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Pale Monk \n(Monk/PM/Wizard)\n\nName: Pale Monk\n \nDamage: Moderate\nAttack: High\nAC: Extreme\nHit Points: 154 \n\nRace: Elf\n\nAlignment: Any Lawful (Monk requirement)\n\nSpecial: High Saves, Improved Evasion, Poison Immunity, Magic Resistance, Bone Skin, Deathless Vigour, Deathless Touch, Deathless Mastery, Immunity to Critical Hits, 6 Attacks / Round\n\nClasses: \nMonk [20] \nPale Master [16]\nWizard [ 8] \n\nType: Dexterity\nWeapon: Duel-wielded Kamas\n\nDescription: This is a very fun character to play. The Monk speed makes getting around very fun and the extra attacks makes the Pale Monk a formidable enemy indeed. 20 Monk levels afford the Pale Monk all of the bonuses of a master Monk. The Pale Master levels give a heap of bonus Armour Class points because of the Bone Skin ability that adds +2 to Armour every 4 levels after lv 8. The Pale Master levels also provide the very useful Immunity to Critical Hits ability. This means that Devastating Critical hits will be completely ineffective against the Pale Monk. Finally, the 4 Wizard levels add a number of very useful spells to the Pale Monk's arsenal, including True Strike - +20 Attack Bonus for 9 seconds, Elemental Shield - 50% immunity to cold and fire and on-hit-damage to all attackers, Flame Weapon - 1d4 fire enhancement on any melee weapon, Shield - +4 to Armour and immunity to Magic Missiles, and enervation - 1d4 level drain. 42 Ranks in Spell Craft help to maximise the chances of this powerful stat-wrecking spell getting through the enemy's magical defences.\n \nStats (nude)\n47 Armour Class\n36 Attack Bonus \n\nCombat Abilities: Improved Knockdown, Flurry of Blows, Deathless Touch, Undead Graft II\n \nOrder of levels:\n19 Monk\n3 Wizard (pre-requisite for Pale Master)\n16 Pale Master\n1 Wizard (for level 5 spells)\n1 Monk (for class skills)\n \nBase Abilities:\nSTR [leave]\nDEX [20] \nCON [leave]\nINT [14] \nWIS [15] \nCHA [leave]\n \nSpells: True Strike, Shield, Mage Armour, Magic Weapon, Ray of Enfeeblement, Color Spray, Protection from Alignment, Flame Weapon, Gedlee's Electric Loop, Ennervation\n \nAbility Bonuses: Spend them all on dexterity (this will raise your Attack Bonus and AC dexterity bonus) \n\nSkills: When you choose your 4th Wizard level at lv 39, make sure you max your Spell Craft to 42 ranks. This will boost the DC on your attack spells. Next up after choosing your final level of Monk at level 40, choose these class skills: Discipline [max out] (for resistance against melee attacks - called shot, knockdown), and Concentration [max out] (to maximise resisting taunt attacks), Tumble [max out] (to further raise your Armour Class and protect against flat-footed opportunity attacks) Hide [24 ranks] for sneaking up on your opponents and delivering a quivering palm unarmed attack), Move Silently [23 ranks] (to approach enemies undetected for quivering palm attacks)\n \nFeats: (in this order)\n \nWeapon Focus (Kama), Weapon Finesse, Dodge, Mobility, Spring Attack, Two-weapon Fighting, Ambidexterity, Improved Critical (Kama), Improved Two-weapon Fighting, Great Dexterity I, II & III, Epic Prowess, Epic Weapon Focus (Kama), Armour Skin\n \nVariations: You could sacrifice Mobility and Spring Attack for Called Shot and Blind Fight, and choose darkness as one of your wizard spells. That way, you could cast darkness and then move in and stat-fuk your enemy using called shot while they stand there defenceless in the dark.\n \nQuick slot Recommendations:\n [ F1 ] - Whole of Body (Monk ability)\n [ F2 ] - Elemental Shield (Wizard spell)\n [ F3 ] - Empty Body (Monk ability)\n [ F4 ] - Gedlee's Elec Loop (Wiz spell)\n [ F5 ] - Enervation (Wizard spell)\n [ F6 ] - Divine Brew (potion)\n [ F7 ] - Improved Knockdown (Feat)\n [ F8 ] - True Strike (Wizard spell)\n [ F9 ] - Undead Graft II (PM Ability)\n [ F10] - Flurry of Blows (Monk ability)\n [ F11] - Magic Weapon (Wizard spell)\n [ F12] - Flame Weapon (Wizard spell)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Pale Monk", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 179 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "palemonk" + }, + "TemplateResRef": { + "type": "resref", + "value": "palemonk" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "White Knight \n(Monk/COT/Sorc)\n\nName: White Knight\n \nDamage: Moderate to High\nAttack: Extreme\nAC: Very High\nHit Points: 292 \n\nRace: Elf\n\nAlignment: Any Lawful (Monk requirement)\n\nSpecial: High Saves, Improved Evasion, Poison Immunity, Magic Resistance, Divine Wrath, Called Shot, Improved Knockdown, Improved Parry, 3 Attacks / Round\n\nClasses: \nMonk [19]\nChampion of Torm [20]\nSorcerer [ 1] \n\nType: Dexterity\nWeapon: Rapier\n\nDescription: This is a great melee character with some very useful supporting abilities and spells. The Monk levels afford the White Knight increased speed (when not wearing a shield) extra attacks, disease immunity, concealment and healing abilities. The Champion of Torm levels give a +7 Attack Bonus when using Divine Wrath and also add a small damage bonus when using smite attacks. The Champion of Torm also has a very effective healing ability, healing (Charisma Bonus * COT levels) Hit Points once / day. The Sorcerer level enables the White Knight to use the True Strike spell to ensure that the chosen attack ability penetrates the enemy's armour class. This is useful when attempting a knockdown hit or a called shot strike.\n \nStats (nude)\n36 Armour Class\n39 Attack Bonus \n\nCombat Abilities: Improved Knockdown, Flurry of Blows, Called Shot, Power Attack, Improved Parry\n \nOrder of levels:\n18 Monk\n20 Champion of Torm\n1 Sorcerer\n1 Monk (for class skills)\n\nBase Abilities:\nSTR [leave]\nDEX [20] \nCON [leave]\nINT [14] \nWIS [leave] \nCHA [15]\n \nSpells: True Strike, Mage Armour\n \nAbility Bonuses: Spend them all on dexterity (this will raise your Attack Bonus and dexterity bonus) \n\nSkills: When you choose your Sorcerer level at lv 39, make sure you max your Spell Craft to 42 ranks. This will boost the DC on your attack spells. Next up after choosing your final level of Monk at level 40, choose these class skills: Discipline [max out] (for resistance against melee attacks - called shot, knockdown), and Concentration [max out] (to maximise resisting taunt attacks), Tumble [max out] (to further raise your Armour Class and protect against flat-footed opportunity attacks) Parry [max out] (to maximise the use of improved parry), Heal [3 ranks] (this is all you have left so put it into whatever you like. It won't make much difference either way)\n \nFeats: (in no particular order)\n \nMartial Weapon Proficiency, Weapon Focus (Rapier), Weapon Finesse, Toughness, Dodge, Improved Critical (Rapier), Called Shot, Improved Parry, Great Dexterity I, Epic Prowess, Great Dexterity II, Epic Weapon Focus (Rapier), Armour Skin, Great Dexterity III, Mobility, Great Dexterity IV, Epic Toughness I, Great Dexterity V & VI, Epic Toughness II & III\n \nVariations: You can take whatever you like in the place of epic toughness, but it is recommended that you use these feats because of the low constitution of this character.\n \nQuick slot Recommendations:\n [ F1 ] - Lay on Hands (COT ability)\n [ F2 ] - Whole of Body (Monk ability)\n [ F3 ] - Divine Brew (potion)\n [ F4 ] - Empty Body (Monk ability)\n [ F5 ] - True Strike (Wizard spell)\n [ F6 ] - Divine Wrath (COT ability)\n [ F7 ] - Improved Knockdown (Feat)\n [ F8 ] - Smite Evil (COT ability)\n [ F9 ] - Called Shot: Arm (Feat)\n [ F10 ] - Called Shot: Leg (Feat)\n [ F11] - Flurry of Blows (Monk ability)\n [ F12] - Improved Parry (Feat)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "White Knight", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "wnite" + }, + "TemplateResRef": { + "type": "resref", + "value": "wnite" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Character Library II", + "id": 66694 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 661 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bookcase2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bookcase2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.28635978698731 + }, + "Y": { + "type": "float", + "value": 18.38887977600098 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 301 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66696 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Bard Heretic \n\n(Bard/RDD/PM)\n\nName: Bard Heretic\n \nDamage: Extreme\nAttack: High\nAC: Low\nHit Points: 252 \n\nRace: Human\n\nAlignment: Neutral Evil (Bard requirement and role-play purposes)\n\nSpecial: Taunt, Curse Song, Lasting Inspiration, Immunity to Fire, Paralysis and Sleep, Dragon's Breath, Immunity to Critical Hits, Undead Graft II, Deathless Touch\n\nClasses: \nBard [20]\nRed Dragon Disciple [10]\nPale Master [10] \n\nType: Strength\nWeapon: Katana\n\nDescription: This character has a relatively low Attack bonus but can make up for this using the Taunt and Curse Song abilities, and by dealing high damage. The immunities brought to this build by the Red Dragon Disciple and the Pale Master make this character quite resilient to special attacks. The extra intelligence bonus from the Red Dragon Disciple classes means that a huge number of skill ranks can be gained. Using the many class skills that the Bard has access to, and the large number of skill points, a heap of useful skills can be maxed out. The Bard spells also contribute a nice variety of defensive, enhancement and offensive spells to the Bard Heretic's Arsenal.\n \nStats (nude)\n29 Armour Class\n39 Attack Bonus \n\nCombat Abilities: Overwhelming Critical, Taunt, Curse Song, Bard Song, Power Attack\n \nOrder of levels:\n11 Bard\n10 Red Dragon Disciple\n9 Pale Master\n9 Bard (the Bard's 20th level must be chosen on the 49th character level in order to qualify for the Lasting Inspiration feat) \n1 Pale Master (10th Pale Master affords Critical Hit Immunity)\n\nBase Abilities:\nSTR [17] \nDEX [leave)\nCON [9]\nINT [14] \nWIS [leave] \nCHA [16] \n\nSpells: Balagarn's Horn, Magic Weapon, Mage Armour, Cloud of Bewilderment, Darkness, Protection from Alignment, Ghostly Visage, Bull's Strength, Greater Magic Weapon, Bestow Curse, Dispel Magic, Summon Creature IV (Dire Spider), Neutralize Poison, Ethereal Visage, Greater Dispelling, Mind Fog, Grease, Summon Creature V (Dire Bear), Invisibility, Energy Buffer, Slow, Summon Creature VI (Dire Tiger), Cure Critical Wounds, Ice Storm, Dirge\n \nAbility Bonuses: Spend them all on Strength (this will raise your Attack Bonus and Damage) \n\nSkills: Make sure you choose at least 25 ranks of Perform before you attempt to take Lasting Inspiration at level 39. When you reach level 40, spend all of your remaining skill points on these class skills: Discipline [max out] (for resistance against melee attacks - called shot, knockdown), and Concentration [36] (to maximise resisting taunt attacks - when you take your final Pale Master Level, spend all of your remaining skill points on this skill to top it up), Tumble [max out] (to further raise your Armour Class and protect against flat-footed opportunity attacks) Taunt [max out] (to lower your enemy's Armour Class), Perform [35 max] (to maximise the power of Bard Song - ranks over 35 are not utilised, so don't waste any more skill points than you need to), Use Magic Device [30 ranks] (this is all you need to use a wide range of magic items including Boots of the Sun Soul), Spell craft [max out] (to max the DC of your attack spells) \n \nFeats: (in this order)\n \nMartial Weapon Proficiency, Exotic Weapon Proficiency, Weapon Focus (Katana), Power Attack, Cleave, Great Cleave, Improved Critical (Katana), Overwhelming Critical (Katana), Epic Prowess, Epic Weapon Focus (Katana), Armour Skin, Great Strength, Lasting Inspiration\n \nVariations: You could try using a rapier and spending the extra feat on either called shot or toughness..\n \nQuick slot Recommendations:\n [ F1 ] - Heal (potion)\n [ F2 ] - Divine Brew (potion)\n [ F3 ] - Gr Magic Weapon (Bard spell)\n [ F4 ] - Ethereal Visage (Bard Spell)\n [ F5 ] - Improved Invisibility (Bard spell)\n [ F6 ] - War Cry (Bard Spell)\n [ F7 ] - Dirge (Bard Spell)\n [ F8 ] - Power Attack (Feat)\n [ F9 ] - Undead Graft II (PM ability)\n [ F10 ] - Taunt (Skill)\n [ F11] - Bard Song (Bard Ability)\n [ F12] - Curse Song (Bard ability)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Bard Heretic", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 106 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "champ" + }, + "TemplateResRef": { + "type": "resref", + "value": "champ001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Battle Pilgrim \n(Monk/WM/COT)\n\nName: Battle Pilgrim\n \nDamage: High\nAttack: Extreme\nAC: Very High\nHit Points: 263 \n\nRace: Elf\n\nAlignment: Any Lawful (Monk requirement)\n\nSpecial: High Saves, Improved Evasion, Poison Immunity\n\nClasses: \nMonk [12]\nWeapon Master [20]\nChampion of Torm [ 8] \n\nType: Dexterity\nWeapon: Rapier\n\nDescription: This is a great soloing character because of its high melee skills and good resistances. When travelling, you can tuck your shield in your pack and enjoy the natural speed bonus afforded by the monk with no armour penalties. The monk levels also guarantee an extra attack per round, very handy when wielding a weapon with such a high critical hit range. The Champion of Torm levels provide the valuable ability, Divine Wrath, which gives the character a nice Attack Bonus boost with which he can use the Monk's innate ability, Improved Knockdown to sway the battle. Both the Monk and Champion of Torm levels provide healing abilities and good saves. The Weapon Master levels raise the character's attack and damage while enabling the use of several KI damage strikes per day. \n \nStats (nude)\n35 Armour Class\n41 Attack Bonus \n\nCombat Abilities: KI Strike, Improved Knockdown, Expertise, Whirlwind Attack, Divine Wrath, Smite Evil\n \nOrder of levels:\n11 Monk (Weapon Focus, Dodge, Mobility, Expertise, Spring Attack, Whirlwind Attack and Intimidate 4 ranks for Weapon Master - you'll need the Champion of Torm Levels to complete this)\nChampion of Torm 2\nWeapon Master 10\nChampion of Torm 6\nWeapon Master 10\nMonk 1 (take your last level as Monk to gain access to all of the class skills)\n \nBase Abilities:\nSTR [10] \nDEX [20]\nCON [10]\nINT [15] \nWIS [leave] \nCHA [leave]\n \nSpells: None\n \nAbility Bonuses: Spend them all on dexterity (this will raise your Attack Bonus and AC dexterity bonus) \n\nSkills: only choose intimidate (for Weapon Master) then save your skill points. At level 40 you will take a Monk level and choose these class skills: Discipline [max out] (for resistance against melee attacks - called shot, knockdown), and Concentration [max out] (to maximise resisting taunt attacks), Tumble [max out] (to further raise your Armour Class and protect against flat-footed opportunity attacks) Parry [22 ranks] (you can choose parry or whatever skills you like from this point, so spend the 22 points however you like) \n \nFeats: (in this order)\n \nDodge, Mobility, Weapon Focus (Rapier), Expertise, Spring Attack, Whirlwind Attack, Weapon of Choice (Rapier), Improved Critical (Rapier), Weapon Finesse, Great Dexterity I & II, Epic Prowess, Great Dexterity III, Epic Weapon Focus (Rapier), Armour Skin, Great Dexterity IV, Epic Toughness I, Great Dexterity V, Epic Toughness II, Great Dexterity VI, Epic Toughness III, Toughness\n \nVariations: For the very last feat, you can choose a number of different feats depending on what you want. These include: Epic Toughness III for more Hit Points, Epic Reflexes to increase the most common saving throw in the game, Improved Expertise for +10 Armour Class in a difficult battle, and Improved Parry for extra defensive ability - if you are going to choose this feat, it might be worth shuffling your skill points so that you have the parry skill maxed.\n \nQuick slot Recommendations:\n [ F1 ] - Heal (potion)\n [ F2 ] - Lesser Restoration (potion)\n [ F3 ] - Aid (potion)\n [ F4 ] - Bull's Strength (potion)\n [ F5 ] - Divine Brew (potion)\n [ F6 ] - Improved Knockdown (Feat)\n [ F7 ] - KI Critical (WM ability)\n [ F8 ] - Called Shot: Arm (Feat)\n [ F9 ] - Called Shot: Leg (Feat)\n [ F10] - Expertise (Feat)\n [ F11] - Whirlwind Attack (Feat)\n [ F12] - Parry (Feat)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Battle Pilgrim", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 130 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "bpilgrim" + }, + "TemplateResRef": { + "type": "resref", + "value": "bpilgrim" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Champion\n\n(Bard/ RDD/COT)\n\nName: Champion\n \nDamage: Extreme\nAttack: Very High\nAC: Low\nHit Points: 380 \n\nRace: Human (you want the Quick-to-Master feat to get a good start on the Weapon Master pre-requisite feats and you also want lots of skill points to spend at lv 40)\n\nAlignment: True Neutral (for Bard, immunity to smite attacks) \n\nSpecial: +9 to AB for 7 Rounds (Divine Wrath), +7 to all saves (Divine Blessing), Immunity to Fire, Paralysis & Sleep.\n\nClasses: \nBard [6 ]\nRed Dragon Disciple [10] \nChampion of Torm [24] \n\nType: Strength / Special\nWeapon: Great Sword \nAlternate choice: Scythe\n\nDescription: This character is based around the Great Smiting feat and the Divine Wrath ability. It has been designed to do maximum damage against evil aligned opponents.\n \nStats (nude)\n21 Armour Class\n36 Attack Bonus \n\nCombat Abilities: Knockdown, Smite Evil, Curse Song, Bard Song, Taunt, Overwhelming Critical\n \nOrder of levels:\n5 bard (8 lore for RDD) \n10 RDD \n24 Champion of Torm, \n1 Bard (for concentration, UMD, Tumble, Discipline, Perform and Taunt)\n\nBase Abilities:\nSTR [16] \nDEX [leave]\nCON [10] \nINT [13] \nWIS [leave]\nCHA [17]\n \n*IKD - Improved Knockdown\n \nSpells: Mage Armour, Balagarn's Iron Horn, Protection from Alignment, Cloud of Bewilderment, Darkness, Ghostly Visage\n \nAbility Bonuses: Spend them all on charisma (need 25 for great smiting) until you reach 24. After that, take 1 Great Charisma Feat and then spend the rest on strength.\n \nSkills: only choose Lore 8 (for RDD) then save your skill points. At level 40, (after taking your final Bard level) choose Discipline [max out] (for resistance against melee attacks - called shot, knockdown), Concentration [max out] (to maximise battle casting and resist taunt attacks), Use Magic Device [30 pts] (so you can wear Boots of the Sun Soul), Perform [12 pts] (that's the max use you will get out of that skill at Bard level 6), Tumble [max out] (This will give you AC bonus and reduce your chances of getting hit while flat footed), Taunt [37] (That's all you have left).\n \nFeats: Make sure you choose Martial Weapon Proficiency and Great Sword Weapon Focus before RDD lv 10. You need this to meet the Champion of Torm pre-requisites.\n \nWeapon Proficiency (Martial), Weapon Focus (Great Sword), Curse Song, Knockdown, Power Attack, Cleave, Great Cleave, Improved Critical (Great Sword), Extra Smiting, Improved Kockdown, Great Charisma I, Overwhelming Critical (Great Sword), Great Smiting I, II, III, IV, V, VI, VII, VIII, Great Strength I (you want your strength to finish on an even number, preferably 30 seeing as you get +1 attack bonus for every 2 strength points), Epic Prowess, Epic Weapon Focus (Great Sword)\n \nVariations: You could forego Great Strength I and Epic Weapon Focus so that you could max Great Smiting to X. This would sacrifice 3 points of attack bonus for an extra 50 or so damage on smite attacks. \n \nQuick slot Recommendations:\n [ F1 ] - Lay on Hands (COT ability)\n [ F2 ] - Mage Armour (Bard spell)\n [ F3 ] - Ghostly Visage (Bard spell)\n [ F4 ] - Bull's Strength (potion)\n [ F5 ] - Divine Brew (potion)\n [ F6 ] - Divine Wrath (COT ability)\n [ F7 ] - Smite Evil (COT ability)\n [ F8 ] -Improved Knockdown (Feat)\n [ F9 ] - Power Attack (Feat)\n [ F10] - Taunt (Skill)\n [ F11] - Bard Song (Bard ability)\n [ F12] - Curse Song (Bard ability)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Champion", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 211 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "champ" + }, + "TemplateResRef": { + "type": "resref", + "value": "champ" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Damage Master\n\n(Paladin/COT/WM)\n\nName: Damage Master\n \nDamage: Ultimate\nAttack: High \nAC: Very Low\nHit Points: 266 \n\nRace: Elf\n\nAlignment: Automatic (Lawful Good) \n\nSpecial: +9 to AB for 7 Rounds (Divine Wrath), +7 to all saves (Divine Blessing), +9 Divine Damage (Divine Might).\n\nClasses: \nPaladin [13] \nChampion of Torm [22]\nWeapon Master [ 4]\n\nType: Charisma / Special\nWeapon: Scythe\n\nDescription This bad boy was built around the concept of delivering the most damage in one hit with a scythe. This build was originally called 'The Damage Adept' and was created by Bioware uber-moderator Christian \"Torias\" Gillott. I have slightly modified it and given it a modified name also.\n \nStats (nude)\n15 Armour Class\n32 Attack Bonus \n\nCombat Abilities: Power Attack, Divine Might, Divine Wrath\n \nOrder of levels:\n7 Paladin \n5 Champion of Torm (Dodge, Mobility, Spring Attack, Expertise, Whirlwind Attack and 4 Intimidate for Weapon Master) \n4 Weapon Master (for Weapon of Choice and KI Criticals)\n6 Paladin (for 13th Paladin Level - this maximises smite attacks when combined with COT)\n17 Champion of Torm\n \nBase Abilities:\nSTR [13]\nDEX [13]\nCON [leave]\nINT [13] \nWIS [12] \nCHA [17]\n \nSpells: Automatic\n \nAbility Bonuses: Spend them all on charisma (this maximises your damage bonus for great smiting and also maximises saving throws)\n\nSkills: only choose intimidate (for Weapon Master) then save your skill points. At level 40, choose Discipline [max out] (for resistance against melee attacks - called shot, knockdown), Tumble [21 pts] (that's the max you will get because its not a class skill), Concentration [12 pts] (to maximise battle casting and resist taunt attacks - 12 is the max you will get with the remaining skill points because its not a class skill).\n \nFeats:\n \nExotic Weapon Proficiency, Weapon Focus (Scythe), Dodge, Mobility, Spring Attack, Expertise, Whirlwind Attack, Weapon of Choice (Scythe), Power Attack, Divine Might, Great Charisma, Great Charisma II, Epic Prowess (or Improved Power Attack), Extra Smiting, Great Smiting I to IX.\n \nVariations: You can choose Epic Weapon Focus (Skythe) instead of Great Smiting IX at level 40. This will improve your Attack Bonus by +2, but you will lose damage bonus on your smite attacks.\n \nQuick slot Recommendations:\n [ F1 ] - Lay on Hands (COT/Pal ability)\n [ F2 ] - Remove Disease (Pal ability)\n [ F3 ] - Divine Favour (Pal Spell)\n [ F4 ] - Aid (Pal Spell)\n [ F5 ] - Deafening Clang (Pal Spell)\n [ F6 ] - Taunt (Skill)\n [ F7 ] - Divine Might (Pal Ability)\n [ F8 ] - Divine Wrath (COT ability)\n [ F9 ] - Smite Evil (COT / Pal ability)\n [ F10] - KI Damage (WM ability)\n [ F11] - Power Attack (Feat)\n [ F12] - Parry (Feat)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Damage Master", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 175 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "damagemaster" + }, + "TemplateResRef": { + "type": "resref", + "value": "damagemaster" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Doom Guard\n(Bard/RDD/ Blackguard)\n\nName: Doom Guard\n \nDamage: Extreme\nAttack: High\nAC: Low\nHit Points:313\n\nRace: Human (you want the Quick-to-Master feat to get a good start on the Weapon Master pre-requisite feats and you also want lots of skill points to spend at lv 40)\n\nAlignment: Neutral (for Bard) Evil (for Blackguard)\n\nSpecial: Improved Evasion, 7d6 Sneak Attacks, +7 to all saves (Dark Blessing), Immunity to Fire, Paralysis & Sleep.\n\nClasses: \nBard [6] \nRed Dragon Disciple [10 \nBlackguard [24] \n\nType: Strength / Special\nWeapon: Great Sword \nAlternate choice: Scythe\n\nDescription: This character is based around the Great Smiting feat. It has been designed to do maximum damage against good aligned opponents.\n \nStats (nude)\n21 Armour Class\n35 Attack Bonus \n\nCombat Abilities: Knockdown, Called shot, Smite Good, Curse Song, Bard Song, Overwhelming Critical\n \nOrder of levels:\n5 bard (8 lore for RDD) \n10 RDD (5 Hide for Blackguard) \n23 Blackguard \n1 Bard (for concentration, UMD, Tumble, Discipline, Perform, Hide and Taunt)\n \nBase Abilities:\nSTR [15]\nDEX [leave]\nCON [10] \nINT [14] \nWIS [leave]\nCHA [17] \n \n*IKD - Improved Knockdown\n \nSpells: Mage Armour, Magic Weapon, Ghostly Visage, Cloud of Bewilderment, Darkness\n \nAbility Bonuses: Spend them all on charisma (need 25 for great smiting) until you reach 23 (RDD Lv 10 will give you 2 bonus char points, so don't waste your ability gains on any more char than you need). After that, spend ALL of them on strength.\n \nSkills: only choose Lore 8 (for RDD) and Hide 5 (for Blackguard) until lv 40 - then spend your skill points. At level 40, (after taking your final Bard level) choose Discipline [max out] (for resistance against melee attacks - called shot, knockdown), Concentration [max out] (to maximise battle casting and resist taunt attacks), Use Magic Device [30 pts] (so you can wear Boots of the Sun Soul), Perform [15 pts] (that's the max use you will get out of that skill at Bard level 6), Hide [whatever you have left]\n \nFeats: Wait until you start your blackguard levels before you choose a weapon focus. Blackguards can automatically use martial weapons, so don't waste a feat early on.\n \nCurse Song, Power Attack, Cleave, Knockdown, Called Shot, Great Cleave, Improved Knockdown, Weapon Focus, Improved Critical, Extra Smiting, Great Smiting (up to VI), Overwhelming Critical, Epic Prowess, Epic Weapon Focus.\n \nVariations: You can choose Armour Skin instead of the 6th Great Smiting. The diff will be -24 damage on your smite attacks and +2 on your AC. In the arena, it is easier to get more AC, whereas your maximum damage will be slightly less (even with all damage bonuses) than if you had an extra Great Smiting feat.\n \nQuick slot Recommendations:\n [ F1 ] - Healing (Potions)\n [ F2 ] - Ghostly Visage (Bard spell)\n [ F3 ] - Create Undead (BG ability)\n [ F4 ] - Summon Fiend (BG ability)\n [ F5 ] - Dragon Breath (RDD ability)\n [ F6 ] - Smite Good (BG ability)\n [ F7 ] - Improved Knockdown (Feat)\n [ F8 ] - Called Shot: Arm (Feat)\n [ F9 ] - Called Shot: Leg (Feat)\n [ F10] - Stealth Mode (Standard ability)\n [ F11] - Bard song (Bard ability)\n [ F12] - Curse Song (Bard ability)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Doom Guard", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 213 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "dguard" + }, + "TemplateResRef": { + "type": "resref", + "value": "sguard" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Dragoon\n\n(Bard/RDD/WM)\n\nName: Dragoon\n \nDamage: Very High\nAttack: Very High\nAC: High\nHit Points: 234 \n\nRace: Elf (Elves are the best for dexterity fighters because they can max their DEX to 20 when creating a new character)\n\nAlignment: Any Neutral (Bard requirement)\n\nSpecial: Immunity to Fire, Paralysis & Sleep.\n\nClasses: \nBard [ 6] \nRed Dragon Disciple [10] \nWeapon Master [24] \n\nType: Dexterity \nWeapon: Rapier\n\nDescription: This character was created to test the effectiveness of a dexterity fighter using a high crit-range weapon with the Overwhelming Critical feat. The only way to achieve the high dexterity and strength required for this build was to utilise the Red Dragon Disciples innate strength bonuses. The result is a char with great attack bonus and greater critical hit damage with a high chance of landing multiple critical hits.\n \nStats (nude)\n35 Armour Class\n37 Attack Bonus \n\nCombat Abilities: Bard song, Overwhelming Critical\n \nOrder of levels:\n5 bard (8 lore for RDD) \n10 RDD (4 Intimidate, Dodge, Mobility, Weapon Focus, Expertise, Spring Attack, Whirlwind Attack for Weapon Master) \n23 Weapon Master \n1 Bard (for concentration, UMD, Tumble, Discipline, Perform, Hide and Taunt)\n \nBase Abilities:\nSTR [15]\nDEX [19]\nCON [leave]\nINT [14] \nWIS [leave]\nCHA [leave]\n \nSpells: Mage Armour, Magic Weapon, Ghostly Visage, Cloud of Bewilderment, Darkness, Balagarn's Iron Horn\n \nAbility Bonuses: Spend them all on Dexterity (the higher your dexterity, the higher your AB and AC will be)\n \nSkills: Choose Lore 8 (for RDD) at bard level 4 and then make sure you choose 4 points in Intimidate (For WM). Now save the rest until level 40 - then spend your skill points. At level 40, (after taking your final Bard level) choose Discipline [max out] (for resistance against melee attacks - called shot, knockdown), Concentration [max out] (to maximise battle casting and resist taunt attacks), Use Magic Device [30 pts] (so you can wear Boots of the Sun Soul), Perform [12 pts] (that's the max use you will get out of that skill at Bard level 5), Taunt [whatever you have left]\n \nFeats: (In this Order)\n \nDodge, Mobility, Weapon Focus (Rapier), Expertise, Spring Attack, Whirlwind Attack, Power Attack, Cleave, Epic Prowess, Great Cleave, Overwhelming Critical, Great Dexterity I, Epic Weapon Focus, Great Dexterity II, Armour Skin, Great Dexterity III\n \nVariations: You can take your last level in Weapon Master instead of Bard if you want to go for an even higher attack bonus. This is not advisable, however, because of the great skills that you will miss out on, not to mention the AC bonus that you will get from maxing out the Tumble skill.\n \nQuick slot Recommendations:\n [ F1 ] - Healing (Potions)\n [ F2 ] - Ghostly Visage (Spell)\n [ F3 ] - Mage Armour (Spell)\n [ F4 ] - Magic Weapon (Spell)\n [ F5 ] - Darkness (Spell)\n [ F6 ] - Cloud of Bewilderment (Spell)\n [ F7 ] - Balagarn's Iron Horn (Spell)\n [ F8 ] - KI Critical (WM ability)\n [ F9 ] - Dragon Breath (Feat)\n [ F10] - Taunt (Standard ability)\n [ F11] - Divine Brew (Potion)\n [ F12] - Bard Song (Bard ability)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dragoon", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 207 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "dragoon" + }, + "TemplateResRef": { + "type": "resref", + "value": "dragoon" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 74 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "0": "Dark Disciple\n(Bard/RDD/PM)\n\nName: Dark Disciple\n \nDamage: High\nAttack: Extreme\nAC: Ultimate\nHit Points: 306 \n\nRace: Elf\n\nAlignment: Chaotic Evil (any non-good for Pale Master and non-lawful for bard)\n\nSpecial: Curse Song, Immunity to Fire, Paralysis and Sleep, Dragon's Breath, Immunity to Critical Hits, Undead Graft II, Deathless Touch, Elemental Resistance\n\nClasses: \nBard [10]\nRed Dragon Disciple [10]\nPale Master [20] \n\nType: Dexterity\nWeapon: Rapier\n\nDescription: This build has an incredible Armour Class due to the Red Dragon Disciple's draconic armour, the Pale Master's bone skin and a high Dexterity bonus. While the base armour class is lower than that of the Pale Defender, the ability to use a shield results in a much higher overall armour rating. The 10 levels of Bard are just enough to raise the base attack and provide the important war cry and improved invisibility spells. This character is almost untouchable when in Improved Expertise mode. With some good equipment the Dark Disciple could achive an Armour Class of well over 100. By using Taunt and Curse Song together, you can lower the enemy's Armour class so much, that it will seem like a +10 attack bonus. For this reason, this character has potentially extreme attacks, especially when divine brew, aid, war cry and bard song are in use. With an insane armour class, immunity to fire, disease, and critical hits, powerful buffs and stat destroyers, this build is one of the best out there and should cause considerable grief to your opponents.\n \nStats (nude)\n48 Armour Class\n36 Attack Bonus \n\nCombat Abilities: Taunt, Curse Song, Bard Song, Improved Knockdown, Called Shot, improved expertise, Undead Graft, Fire Breath, Deathless Touch\n \nOrder of levels:\n9 Bard\n10 Red Dragon Disciple\n20 Pale Master\n1 Bard (the Bard's 20th level must be chosen on the 49th character level in order to qualify for the Lasting Inspiration feat. Spend all skill points here) \n\nBase Abilities:\nSTR [leave] \nDEX [20] \nCON [8] \nINT [14] \nWIS [leave] \nCHA [14] \n \nSpells: Balagarn's Horn, Magic Weapon, Mage Armour, Cloud of Bewilderment, Darkness, Protection from Alignment, Ghostly Visage, Greater Magic Weapon, Bestow Curse, Displacement, Confusion, Improved Invisibility, War Cry\n \nAbility Bonuses: Spend them all on Dexterity (this will raise your Attack Bonus and Armour Class) \n\nSkills: After you take your final Bard level at 40, spend all of your skill points on these class skills: Discipline [max out] (for resistance against melee attacks - called shot, knockdown), Concentration [41] (to maximise resisting taunt attacks), Tumble [max out] (to further raise your Armour Class and protect against flat-footed opportunity attacks) Taunt [max out] (to lower your enemy's Armour Class), Perform [15] (to maximise the power of Bard Song - ranks over 15 are not utilised for a lv 10 Bard, so don't waste any more skill points than you need to), Use Magic Device [30 ranks] (this is all you need to use a wide range of magic items including Boots of the Sun Soul) \n\nFeats: (in this order)\n \nCurse Song, Weapon Focus (Rapier), Weapon Finesse, Toughness, Expertise, Improved Expertise, Called Shot, Epic Prowess, Epic Weapon Focus (Rapier), Armour Skin, Great Dexterity I, II, II & IV\n \nVariations: You could forfeit Expertise and Improved Expertise for Knockdown and Improved Knockdown. You could also substitute called shot for improved critical.\n \nQuick slot Recommendations:\n [ F1 ] - Heal (potion)\n [ F2 ] - Aid (potion)\n [ F3 ] - Divine Brew (potion)\n [ F4 ] - Improved Invisibility (Bard Spell)\n [ F5 ] - War Cry (Bard spell)\n [ F6 ] - Improved Expertise (Bard Spell)\n [ F7 ] - Called Shot: Arm (Feat)\n [ F8 ] - Called Shot: Leg (PM ability)\n [ F9 ] - Gr Magic Weapon (Bard Spell) \n [ F10 ] - Taunt (Skill)\n [ F11] - Bard Song (Bard Ability)\n [ F12] - Curse Song (Bard ability)\n", + "id": 65756 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dark Disciple", + "id": 65755 + } + }, + "ModelPart1": { + "type": "byte", + "value": 173 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "darkdisciple" + }, + "TemplateResRef": { + "type": "resref", + "value": "darkdisciple" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Character Library I", + "id": 66694 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 661 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bookcase2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bookcase2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 9.694192886352539 + }, + "Y": { + "type": "float", + "value": 18.35507011413574 + }, + "Z": { + "type": "float", + "value": 1.192092895507813e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 301 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66696 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 66694 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 661 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bookcase2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bookcase2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 1.546112060546875 + }, + "Y": { + "type": "float", + "value": 9.949141502380371 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 301 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66696 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "div_key" + }, + "KeyRequired": { + "type": "byte", + "value": 1 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 1 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 66694 + } + }, + "OnClosed": { + "type": "resref", + "value": "setbook" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "note_make" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 661 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bookcase2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bookcase2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 28.44354820251465 + }, + "Y": { + "type": "float", + "value": 10.10852336883545 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 301 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141585350036621 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66696 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 66694 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 661 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bookcase2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bookcase2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.27631759643555 + }, + "Y": { + "type": "float", + "value": 1.600030183792114 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 301 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141585350036621 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66696 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 66694 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 661 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bookcase2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bookcase2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 9.718083381652832 + }, + "Y": { + "type": "float", + "value": 1.563971042633057 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 316 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68896 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 750 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugOriental" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_rugoriental" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.08163642883301 + }, + "Y": { + "type": "float", + "value": 10.10862350463867 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 316 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68896 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 750 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugOriental" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_rugoriental" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 4.89316987991333 + }, + "Y": { + "type": "float", + "value": 9.959760665893555 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 316 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68896 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 750 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugOriental" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_rugoriental" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 9.912199020385742 + }, + "Y": { + "type": "float", + "value": 5.076696872711182 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 316 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68896 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 750 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugOriental" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_rugoriental" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 9.682109832763672 + }, + "Y": { + "type": "float", + "value": 15.36767673492432 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 316 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68896 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 750 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugOriental" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_rugoriental" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.43928718566895 + }, + "Y": { + "type": "float", + "value": 15.00963306427002 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 316 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68896 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 750 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugOriental" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_rugoriental" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.17990875244141 + }, + "Y": { + "type": "float", + "value": 4.545628547668457 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 244 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68892 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 804 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RoundRugOriental" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_roundrugorien" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.93039989471436 + }, + "Y": { + "type": "float", + "value": 15.31925964355469 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2351 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810848 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812568 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 516 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_LIGHTSHFT005" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_lightshft005" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.97133350372315 + }, + "Y": { + "type": "float", + "value": 18.03257942199707 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2348 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810848 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813574 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 516 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_LIGHTSHFT008" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_lightshft008" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.41618919372559 + }, + "Y": { + "type": "float", + "value": 18.00971984863281 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2348 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810848 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813574 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 516 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_LIGHTSHFT008" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_lightshft008" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.5311975479126 + }, + "Y": { + "type": "float", + "value": 18.1457405090332 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/arena.git.json b/_module/git/arena.git.json new file mode 100644 index 0000000..e88fb4b --- /dev/null +++ b/_module/git/arena.git.json @@ -0,0 +1,148450 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 50 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 89 + }, + "AmbientSndNight": { + "type": "int", + "value": 19 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 49 + }, + "EnvAudio": { + "type": "int", + "value": 9 + }, + "MusicBattle": { + "type": "int", + "value": 0 + }, + "MusicDay": { + "type": "int", + "value": 0 + }, + "MusicDelay": { + "type": "int", + "value": 1100000 + }, + "MusicNight": { + "type": "int", + "value": 0 + } + } + }, + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 112 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 0 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 30 + }, + "ChallengeRating": { + "type": "float", + "value": 954.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 1 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 1 + }, + "Color_Skin": { + "type": "byte", + "value": 31 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 14 + }, + "Conversation": { + "type": "resref", + "value": "death2" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 1935 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "It seems that Death himself is involved in the running of the Arena of Champions. Mortals that come to challenge the infinite powers of the arena challengers often meet their demise. Rather than taking them accross the great lake, Death turns a blind eye to those who fall in the arena. Many come to train here, knowing that they will not forfeit their lives in a silly training mistake. As a result, more risks can be taken and thus, more progress is made. Many a formidible champion forged themself in this arena. In payment for death's cooperation, the immortals who run the arena allow him to run a small gambling stand. Death has a penchant for gold - and lots of it. Ironically, its not what the gold can buy that holds appeal for death, but the wonderful job it does populating his realm!" + } + }, + "Dex": { + "type": "byte", + "value": 34 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 3 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 12847 + } + }, + "Metal1Color": { + "type": "byte", + "value": 2 + }, + "Metal2Color": { + "type": "byte", + "value": 2 + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARHE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "arhe007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 20000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 12564001 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91091 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91090 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 19 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer2" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 55 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 59901292 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91230 + } + }, + "ModelPart1": { + "type": "byte", + "value": 14 + }, + "ModelPart2": { + "type": "byte", + "value": 254 + }, + "ModelPart3": { + "type": "byte", + "value": 34 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 26 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 26 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WPLMSC004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wplmsc005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 142430778 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "skele Heratic", + "id": 16807340 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 23 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 78 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_BBATH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_bbath004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 7 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 356 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 357 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 257 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 355 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 197 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 871 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 526 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 968 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 650 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 688 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 389 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 423 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 910 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 824 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 825 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 826 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 236 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 235 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 83 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 834 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 835 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 836 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 868 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 240 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 424 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 354 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 26 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 740 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 945 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 237 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 238 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 239 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 301 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 472 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 221 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 35 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 392 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 121 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 927 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 256 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 159 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Death" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 1935 + }, + "Int": { + "type": "byte", + "value": 16 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 2115 + }, + "NaturalAC": { + "type": "byte", + "value": 53 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1051 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "death_conv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 35 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 90 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 20 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 391 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 636 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 121 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 1 + }, + "Str": { + "type": "byte", + "value": 50 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "reaper" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "death2" + }, + "WalkRate": { + "type": "int", + "value": 8 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 10 + }, + "XOrientation": { + "type": "float", + "value": -2.566178409324493e-005 + }, + "XPosition": { + "type": "float", + "value": 38.09872436523438 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 45.80753707885742 + }, + "ZPosition": { + "type": "float", + "value": 0.2000099420547485 + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 40 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570793151855469 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This is the great arena gate, famed for its impervious strength and fortitude. This gate has contained and weathered some of the greatest arena battles ever to have been fought. It is mythed that this gate could even withstand the swirling torrent of power that would be generated from a battle between heaven and earth. Crafted by a mysterious being, this gate is believed to be a duplicate of the celestial gates that seal both heaven and hell." + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "The Great Iron Gate", + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "gate_msg" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "autoclose" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "arena_gate" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_07" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 35.40999984741211 + }, + "Y": { + "type": "float", + "value": 25.0 + }, + "Z": { + "type": "float", + "value": 0.4600000083446503 + } + }, + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 9078 + } + }, + "DisarmDC": { + "type": "byte", + "value": 10 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 13 + }, + "GenericType": { + "type": "byte", + "value": 9 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "gl_key" + }, + "KeyRequired": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "lib_arena" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Door", + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 122 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "arena_lib" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_weak" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 0 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.239999771118164 + }, + "Y": { + "type": "float", + "value": 38.5 + }, + "Z": { + "type": "float", + "value": 0.2000000029802322 + } + }, + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "smith_arena" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 1 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "door_msg" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 122 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "arena_crafter" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_06" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.580000400543213 + }, + "Y": { + "type": "float", + "value": 12.0 + }, + "Z": { + "type": "float", + "value": 0.2000000029802322 + } + }, + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "warehouse_Arena" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 1 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "door_msg" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 122 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "arena_warehouse" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_06" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 28.0 + }, + "Y": { + "type": "float", + "value": 47.5 + }, + "Z": { + "type": "float", + "value": 0.2000000029802322 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 73 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.748405367152373e-007 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14664 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5715 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 431 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Lamp Post" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_lamppost" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 45.31186676025391 + }, + "Y": { + "type": "float", + "value": 1.882194519042969 + }, + "Z": { + "type": "float", + "value": 0.209996908903122 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 73 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.748405367152373e-007 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14664 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5715 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 431 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Lamp Post" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_lamppost" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 75.63785552978516 + }, + "Y": { + "type": "float", + "value": 15.23515701293945 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 80 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14686 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14684 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 438 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Pillar - Style 3" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_pillar3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 70.83001708984375 + }, + "Y": { + "type": "float", + "value": 27.0679874420166 + }, + "Z": { + "type": "float", + "value": 0.001693248748779297 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 64 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The water tumbles into the pool below, the sound of its fall striking a cheerful note. A feint blue glow shimmers off the surface of the water. The water seems to be radiating a life force all of its own. ", + "id": 14639 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Restoration Fountain", + "id": 5706 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "heal_allpc2" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 422 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "fountain2" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_fountain" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 70.73838043212891 + }, + "Y": { + "type": "float", + "value": 21.91803550720215 + }, + "Z": { + "type": "float", + "value": 0.001693248748779297 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 64 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The water tumbles into the pool below, the sound of its fall striking a cheerful note. A feint blue glow shimmers off the surface of the water. The water seems to be radiating a life force all of its own. ", + "id": 14639 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Restoration Fountain", + "id": 5706 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "heal_allpc2" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 422 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "fountain1" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_fountain" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 70.90069580078125 + }, + "Y": { + "type": "float", + "value": 27.90683555603027 + }, + "Z": { + "type": "float", + "value": 0.001698017120361328 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 91 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14732 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14536 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 449 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Statue - Stone" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_statue1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 73.99974060058594 + }, + "Y": { + "type": "float", + "value": 26.68088531494141 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 70.62064361572266 + }, + "Y": { + "type": "float", + "value": 24.80868148803711 + }, + "Z": { + "type": "float", + "value": 0.001693248748779297 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 140 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This is the Arena scoreboard. Kills, deaths and rank are displayed for each player in Arena mode. Holy war standings will be displayed in Holy War mode. \n\nnote: You need to have completed the [Hero] Arena Challenge before Holy War score mode will be availible.", + "id": 14563 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "AOC Multi-Scoreboard", + "id": 14561 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "arena_scoreboard" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 498 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MerchantsShingle3" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_billboard3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 70.33933258056641 + }, + "Y": { + "type": "float", + "value": 27.2132568359375 + }, + "Z": { + "type": "float", + "value": 0.001712322235107422 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 316 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141506910324097 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68896 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 750 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugOriental" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_rugoriental" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 32.405517578125 + }, + "Y": { + "type": "float", + "value": 25.10601806640625 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 320 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68894 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_ruglarge" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 16.61325263977051 + }, + "Y": { + "type": "float", + "value": 36.8851203918457 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 320 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68894 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_ruglarge" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.24062156677246 + }, + "Y": { + "type": "float", + "value": 31.11528587341309 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 39 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Ye chain, brestplate and fullplate mail.", + "id": 14599 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 15 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 19 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 15 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 19 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13776 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 9 + }, + "Leather2Color": { + "type": "byte", + "value": 11 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Full Plate +8", + "id": 91021 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 8 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_MAARCL048" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_maarcl048" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Full Plate +8 ", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 24 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Full Plate +8 ", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Full Plate +8 ", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 28 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Full Plate +8 ", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 40 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Armour", + "id": 5681 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "start_armour" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 397 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "armour" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_cmbtdummy" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.93013668060303 + }, + "Y": { + "type": "float", + "value": 39.00769424438477 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 39 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Ye vestments.", + "id": 14599 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 80 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58523 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13803 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90864 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MCLOAK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mcloak006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 80 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58523 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13803 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90864 + } + }, + "ModelPart1": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MCLOAK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mcloak007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 80 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58523 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13803 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90864 + } + }, + "ModelPart1": { + "type": "byte", + "value": 8 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MCLOAK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mcloak007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 80 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58523 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13803 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90864 + } + }, + "ModelPart1": { + "type": "byte", + "value": 51 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MCLOAK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mcloak007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Cloaks", + "id": 5681 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "cloak_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 397 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "cloaks" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_cmbtdummy" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.43370056152344 + }, + "Y": { + "type": "float", + "value": 39.06785583496094 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 39 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Ye robes.", + "id": 14599 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 7 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 22 + }, + "Cloth2Color": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 660491 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 22 + }, + "Leather2Color": { + "type": "byte", + "value": 50 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Speed Robe +5", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 35 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth013" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 7 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 22 + }, + "Cloth2Color": { + "type": "byte", + "value": 26 + }, + "Cost": { + "type": "dword", + "value": 660491 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 22 + }, + "Leather2Color": { + "type": "byte", + "value": 26 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Champions Robe +8", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 35 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth013" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 7 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 22 + }, + "Cloth2Color": { + "type": "byte", + "value": 31 + }, + "Cost": { + "type": "dword", + "value": 62569 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 22 + }, + "Leather2Color": { + "type": "byte", + "value": 31 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Speed Robe +5", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 35 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth013" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 7 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 22 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 302760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 22 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Deft Robe +8", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 35 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth013" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 7 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 22 + }, + "Cloth2Color": { + "type": "byte", + "value": 52 + }, + "Cost": { + "type": "dword", + "value": 302760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 22 + }, + "Leather2Color": { + "type": "byte", + "value": 36 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Deft Robe +8", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 35 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth013" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 7 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 22 + }, + "Cloth2Color": { + "type": "byte", + "value": 55 + }, + "Cost": { + "type": "dword", + "value": 98010 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 22 + }, + "Leather2Color": { + "type": "byte", + "value": 43 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Battle Robe +7", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 35 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 7 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 22 + }, + "Cloth2Color": { + "type": "byte", + "value": 55 + }, + "Cost": { + "type": "dword", + "value": 302760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 27 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Cleric Robe +8", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 9 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 7 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 10 + }, + "Cloth2Color": { + "type": "byte", + "value": 2 + }, + "Cost": { + "type": "dword", + "value": 302760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 19 + }, + "Leather2Color": { + "type": "byte", + "value": 33 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Cleric Robe +8", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 35 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 7 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 24 + }, + "Cost": { + "type": "dword", + "value": 302760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 52 + }, + "Leather2Color": { + "type": "byte", + "value": 36 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Battle Robe +8", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 9 + }, + "Metal2Color": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 7 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 22 + }, + "Cloth2Color": { + "type": "byte", + "value": 55 + }, + "Cost": { + "type": "dword", + "value": 302760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 22 + }, + "Leather2Color": { + "type": "byte", + "value": 43 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Battle Robe +8", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 35 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 15 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth015" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 153 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 154 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 81 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 159 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 153 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 154 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 81 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 157 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 154 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 52 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16807815 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 46 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 16807652 + } + }, + "Metal1Color": { + "type": "byte", + "value": 8 + }, + "Metal2Color": { + "type": "byte", + "value": 24 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 15 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_KIMONO" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_kimono" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 155 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 156 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 81 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 159 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 155 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 156 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 81 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 159 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 156 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 0 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16807815 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 8 + }, + "Leather2Color": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 16807314 + } + }, + "Metal1Color": { + "type": "byte", + "value": 8 + }, + "Metal2Color": { + "type": "byte", + "value": 24 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 15 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_KIMONO3" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_kimono3" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Robes", + "id": 5681 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "robe_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 397 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "robes" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_cmbtdummy" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 13.96998691558838 + }, + "Y": { + "type": "float", + "value": 39.13187026977539 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 10 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Ye jewellery.", + "id": 14597 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58523 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13381 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90916 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK021" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mneck021" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58523 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13381 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90916 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK021" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mneck021" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 51841 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90894 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90896 + } + }, + "ModelPart1": { + "type": "byte", + "value": 17 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK003" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mneck003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 51841 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90894 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90896 + } + }, + "ModelPart1": { + "type": "byte", + "value": 17 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK003" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mneck003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 51841 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13393 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90901 + } + }, + "ModelPart1": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mneck006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 51841 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13393 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90901 + } + }, + "ModelPart1": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mneck006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 112891 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13391 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90906 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 40 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK011" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mneck011" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 112891 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13391 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90906 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 40 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK011" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mneck011" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 51841 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13393 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Periapt of Intelligence +6", + "id": 90901 + } + }, + "ModelPart1": { + "type": "byte", + "value": 8 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mneck007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 51841 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13393 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Periapt of Intelligence +6", + "id": 90901 + } + }, + "ModelPart1": { + "type": "byte", + "value": 8 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mneck007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 51841 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13393 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Periapt of Charisam +6", + "id": 90901 + } + }, + "ModelPart1": { + "type": "byte", + "value": 2 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mneck008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 51841 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13393 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Periapt of Charisam +6", + "id": 90901 + } + }, + "ModelPart1": { + "type": "byte", + "value": 2 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mneck008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 12, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 54451 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90942 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90941 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MRING017" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mring017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 13, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 54451 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90942 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90941 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MRING017" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mring017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 14, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 54451 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90942 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90941 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MRING017" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mring017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 15, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 54451 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90942 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90941 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MRING017" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mring017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 73153 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13454 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90936 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MRING012" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mring012" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 17, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 73153 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13454 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90936 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MRING012" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mring012" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 18, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 38157 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 56645 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90951 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 41 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MRING025" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mring025" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 19, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 38157 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 56645 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90951 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 41 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MRING025" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mring025" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 20, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 38157 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 56645 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90951 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 41 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MRING025" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mring025" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 21, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 38157 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 56645 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90951 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 41 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MRING025" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mring025" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 22, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Wisdom Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 72 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring024" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 23, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Wisdom Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 72 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring024" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 24, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Charisma Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 104 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring025" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 25, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Charisma Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 104 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring025" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 26, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Wisdom Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 72 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring024" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 27, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Wisdom Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 72 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring024" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 28, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Charisma Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 104 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring025" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 29, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Charisma Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 104 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring025" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 30, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Strength Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 123 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 31, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Strength Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 123 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Strength Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 123 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 33, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Strength Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 123 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 34, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dexterity Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 89 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring027" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 35, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dexterity Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 89 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring027" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 36, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dexterity Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 89 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring027" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 37, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 45499 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dexterity Ring +5", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 89 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 7 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring027" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Rings & Amulets", + "id": 5348 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "ring_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 368 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Chest4" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_chest4" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.46789169311523 + }, + "Y": { + "type": "float", + "value": 39.12017059326172 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 8 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Ye boots and belts.", + "id": 14595 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 34811 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67778 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Speed Boots", + "id": 67780 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 33 + }, + "ModelPart3": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS017" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots018" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 64161 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67472 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 67471 + } + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS022" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mboots022" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 125441 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90831 + } + }, + "ModelPart1": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 75 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MBELT004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mbelt004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 51841 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13323 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Belt of Might +6", + "id": 13333 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBELT008" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbelt008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 24011 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67769 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 67771 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 18 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 9 + }, + "Param1Value": { + "type": "byte", + "value": 6 + }, + "PropertyName": { + "type": "word", + "value": 44 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "nw_it_mbelt017" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbelt017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19141 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 56601 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 56606 + } + }, + "ModelPart1": { + "type": "byte", + "value": 9 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "nw_it_mbelt012" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbelt012" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19141 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 56603 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 56607 + } + }, + "ModelPart1": { + "type": "byte", + "value": 9 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "nw_it_mbelt013" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbelt013" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19141 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 56605 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 56608 + } + }, + "ModelPart1": { + "type": "byte", + "value": 9 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "nw_it_mbelt014" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbelt014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 11313 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13327 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13326 + } + }, + "ModelPart1": { + "type": "byte", + "value": 2 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 26 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBELT004" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbelt004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 59060 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13325 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13324 + } + }, + "ModelPart1": { + "type": "byte", + "value": 5 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 41 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBELT003" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbelt003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 93800 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13325 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Ceremonial Uthgardt Chiefs Belt", + "id": 13324 + } + }, + "ModelPart1": { + "type": "byte", + "value": 5 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 41 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBELT003" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mbelt004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 64161 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67472 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 67471 + } + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS022" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mboots022" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 12, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 34811 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67778 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Speed Boots", + "id": 67780 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 33 + }, + "ModelPart3": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS017" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots018" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 13, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 125441 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90831 + } + }, + "ModelPart1": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 75 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MBELT004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mbelt004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Belts & Boots", + "id": 5348 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "boot_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 366 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Chest2" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_chest2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 16.00798797607422 + }, + "Y": { + "type": "float", + "value": 39.08806228637695 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 105 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Light Weapons\n============\n\nDagger\nKama\nKukri\nRapier\nSickle\nShortsword\nWhip", + "id": 14752 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 51 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 873658 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91278 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMRP004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmrp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 51 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 873658 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91278 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMRP004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmrp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 53 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438110 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91282 + } + }, + "ModelPart1": { + "type": "byte", + "value": 52 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMSC004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmsc005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 53 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438110 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91282 + } + }, + "ModelPart1": { + "type": "byte", + "value": 52 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMSC004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmsc005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 0 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14403 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91286 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 42 + }, + "ModelPart3": { + "type": "byte", + "value": 61 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMSS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmss005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 0 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14403 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91286 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 42 + }, + "ModelPart3": { + "type": "byte", + "value": 61 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMSS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmss005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 0 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14403 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91286 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 42 + }, + "ModelPart3": { + "type": "byte", + "value": 61 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMSS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmss005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 0 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14403 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91286 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 42 + }, + "ModelPart3": { + "type": "byte", + "value": 61 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMSS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmss005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 51 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 873658 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91278 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMRP004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmrp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 51 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 873658 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91278 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMRP004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmrp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 40 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438084 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91238 + } + }, + "ModelPart1": { + "type": "byte", + "value": 12 + }, + "ModelPart2": { + "type": "byte", + "value": 14 + }, + "ModelPart3": { + "type": "byte", + "value": 14 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSPMKA004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wspmka006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 40 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438084 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91238 + } + }, + "ModelPart1": { + "type": "byte", + "value": 12 + }, + "ModelPart2": { + "type": "byte", + "value": 14 + }, + "ModelPart3": { + "type": "byte", + "value": 14 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSPMKA004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wspmka006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 12, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 40 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438084 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91238 + } + }, + "ModelPart1": { + "type": "byte", + "value": 12 + }, + "ModelPart2": { + "type": "byte", + "value": 14 + }, + "ModelPart3": { + "type": "byte", + "value": 14 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSPMKA004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wspmka006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 13, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 40 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438084 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91238 + } + }, + "ModelPart1": { + "type": "byte", + "value": 12 + }, + "ModelPart2": { + "type": "byte", + "value": 14 + }, + "ModelPart3": { + "type": "byte", + "value": 14 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSPMKA004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wspmka006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Light Weapons", + "id": 5748 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "light_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 463 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WeaponRack" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_weaponrack" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.50938034057617 + }, + "Y": { + "type": "float", + "value": 36.85103607177734 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 105 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Medium Weapons\n==============\n\nBastard Sword\nDwarven War Axe\nFalchion\nKatana\nLight Flail\nLongsword\nMace\nScimitar\n\n\n\n", + "id": 14752 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 1 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438110 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91270 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 62 + }, + "ModelPart3": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMLS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmls005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 1 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438110 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91270 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 62 + }, + "ModelPart3": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMLS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmls005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 3 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438150 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91250 + } + }, + "ModelPart1": { + "type": "byte", + "value": 44 + }, + "ModelPart2": { + "type": "byte", + "value": 182 + }, + "ModelPart3": { + "type": "byte", + "value": 153 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMBS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmbs005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 3 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438150 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91250 + } + }, + "ModelPart1": { + "type": "byte", + "value": 44 + }, + "ModelPart2": { + "type": "byte", + "value": 182 + }, + "ModelPart3": { + "type": "byte", + "value": 153 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMBS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmbs005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 41 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438160 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91264 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 22 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMKA004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmka005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 41 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438160 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91264 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 22 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMKA004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmka005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 108 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438140 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91216 + } + }, + "ModelPart1": { + "type": "byte", + "value": 62 + }, + "ModelPart2": { + "type": "byte", + "value": 54 + }, + "ModelPart3": { + "type": "byte", + "value": 72 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WMDWRAXE008" + }, + "TemplateResRef": { + "type": "resref", + "value": "wmdwraxe009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 108 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438140 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91216 + } + }, + "ModelPart1": { + "type": "byte", + "value": 62 + }, + "ModelPart2": { + "type": "byte", + "value": 54 + }, + "ModelPart3": { + "type": "byte", + "value": 72 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WMDWRAXE008" + }, + "TemplateResRef": { + "type": "resref", + "value": "wmdwraxe009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Meduim Weapons", + "id": 5748 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "med_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 463 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WeaponRack" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_weaponrack" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.49483108520508 + }, + "Y": { + "type": "float", + "value": 34.57640838623047 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 105 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Heavy Weapons\n=============\n\nBattle Axe\nDouble Bladed Axe\nDouble Bladed Sword\nGreat Sword\nGreat Axe\nHalberd\nHeavy Flail\nJedi Sabre\nMaul\nMaul Sabre\nNodachi\nQuaterstaff\nScythe\nSpear", + "id": 14752 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 13 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438180 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91260 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 42 + }, + "ModelPart3": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMGS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmgs005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 13 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 438180 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91260 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 42 + }, + "ModelPart3": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMGS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmgs005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 13 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 695744 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 16807816 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16807816 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 16807608 + } + }, + "ModelPart1": { + "type": "byte", + "value": 191 + }, + "ModelPart2": { + "type": "byte", + "value": 191 + }, + "ModelPart3": { + "type": "byte", + "value": 191 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_NODACHI" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_nodachi001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 13 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 695744 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 16807816 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16807816 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 16807608 + } + }, + "ModelPart1": { + "type": "byte", + "value": 191 + }, + "ModelPart2": { + "type": "byte", + "value": 191 + }, + "ModelPart3": { + "type": "byte", + "value": 191 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_NODACHI" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_nodachi001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Heavy Weapons", + "id": 5748 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "heavy_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 463 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WeaponRack" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_weaponrack" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.47298622131348 + }, + "Y": { + "type": "float", + "value": 32.3238410949707 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 320 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.141506910324097 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68894 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_ruglarge" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 21.05497741699219 + }, + "Y": { + "type": "float", + "value": 36.92904663085938 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 320 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141506910324097 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68894 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_ruglarge" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.99994850158691 + }, + "Y": { + "type": "float", + "value": 31.18653678894043 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 80 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14686 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14684 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 438 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Pillar - Style 3" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_pillar3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 21.63584709167481 + }, + "Y": { + "type": "float", + "value": 38.92738723754883 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 80 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14686 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14684 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 438 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Pillar - Style 3" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_pillar3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 21.27503395080566 + }, + "Y": { + "type": "float", + "value": 38.9279899597168 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 258 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Ye large and tower shields.", + "id": 76386 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 98109 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_ashmto004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 98109 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_ashmto004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 98109 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_ashmto004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 98109 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_ashmto004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Shield Rack", + "id": 76385 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "shield_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 811 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x0_hangshield" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_hangshield" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 21.46246910095215 + }, + "Y": { + "type": "float", + "value": 38.34657669067383 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Buff scrolls. Any good gladiator knows that buffing is essential for extra battle prowess.\n\n*** Hint: The Use Magic Device skill will allow players to read scrolls ***\n\nRecommended Scrolls\n==================\nAid: +1 attacks & fear saves, 1d8 HP\nDivine Power: Bonus attack, strength & HP.\nDivine Favour: Bonus attack\nBattletide: +2 saves, attack & damage. Enemies recieve the opposite.\nTrue Strike: +20 ab for 9 seconds\n", + "id": 14575 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Enchancement & Offensive Scrolls", + "id": 14576 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "scroll_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 359 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Bookshelf" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_bookshelf" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.34200477600098 + }, + "Y": { + "type": "float", + "value": 38.6098518371582 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Defense scrolls. Any good gladiator knows that defense is integral to a good attack plan.\n\n*** Hint: The Use Magic Device skill will allow players to read scrolls ***\n\nRecommended Scrolls\n==================\nClarity: Protection against mind spells.\nDeath Ward: Protection against death magic\nStoneskin: Soak damage\nMage Armour: AC bonus\nEtheral Visage: Concealment (50% chance to be missed)\nNegative Energy Shield: protection against ability drain.\n", + "id": 14575 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Defensive Scrolls", + "id": 14576 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "defscroll_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 359 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Bookshelf" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_bookshelf" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 28.8553409576416 + }, + "Y": { + "type": "float", + "value": 38.60876083374023 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Powerful Magic sealed in staffs, wands and rods. An artful gladiator will utilise all that he/she can to gain a competitive edge. When magic and melee come together, enemies begin to fall in numbers.\n\n*** Hint: The Use Magic Device skill will allow you to use these items ***", + "id": 14548 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 44 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 17297 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14171 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14172 + } + }, + "ModelPart1": { + "type": "byte", + "value": 41 + }, + "ModelPart2": { + "type": "byte", + "value": 21 + }, + "ModelPart3": { + "type": "byte", + "value": 31 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 84 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 123 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WMGMRD005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wmgmrd005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 44 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 17297 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14171 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14172 + } + }, + "ModelPart1": { + "type": "byte", + "value": 41 + }, + "ModelPart2": { + "type": "byte", + "value": 21 + }, + "ModelPart3": { + "type": "byte", + "value": 31 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 84 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 123 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WMGMRD005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wmgmrd005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 44 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 17297 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14171 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14172 + } + }, + "ModelPart1": { + "type": "byte", + "value": 41 + }, + "ModelPart2": { + "type": "byte", + "value": 21 + }, + "ModelPart3": { + "type": "byte", + "value": 31 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 84 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 123 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WMGMRD005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wmgmrd005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 44 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 17297 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14171 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14172 + } + }, + "ModelPart1": { + "type": "byte", + "value": 41 + }, + "ModelPart2": { + "type": "byte", + "value": 21 + }, + "ModelPart3": { + "type": "byte", + "value": 31 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 84 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 123 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WMGMRD005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wmgmrd005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Armoire", + "id": 14549 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "wand_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 358 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Armoire" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_armoire" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 29.53968238830566 + }, + "Y": { + "type": "float", + "value": 33.80326843261719 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 320 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68894 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_ruglarge" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 26.97125053405762 + }, + "Y": { + "type": "float", + "value": 36.8345947265625 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 320 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68894 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_ruglarge" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 26.98596000671387 + }, + "Y": { + "type": "float", + "value": 32.45438766479492 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2348 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810848 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813574 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 516 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_LIGHTSHFT008" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_lightshft008" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 32.72076797485352 + }, + "Y": { + "type": "float", + "value": 19.74082183837891 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2348 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810848 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813574 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 516 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_LIGHTSHFT008" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_lightshft008" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 32.69813537597656 + }, + "Y": { + "type": "float", + "value": 29.95669364929199 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1556 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "An essential range of magic potions for the keen gladiator.\n\n** Hint: Divine Power will give your attack a considerable bost *** ", + "id": 16813600 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Mixed Potion Cabinet", + "id": 16812336 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "potion_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2601 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_BARSHELF003" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_barshelf003" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 29.24275016784668 + }, + "Y": { + "type": "float", + "value": 31.6483039855957 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2596 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810981 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811748 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 507 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FIREBOWL002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_firebowl002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 32.86442184448242 + }, + "Y": { + "type": "float", + "value": 29.9622745513916 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2596 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810981 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811748 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 507 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FIREBOWL002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_firebowl002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 32.78664779663086 + }, + "Y": { + "type": "float", + "value": 19.90841293334961 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 316 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68896 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 750 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugOriental" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_rugoriental" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 27.52365684509277 + }, + "Y": { + "type": "float", + "value": 25.11993408203125 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 11 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Feel free to store your keepsakes and precious items in here. \n\n*** Plenty of room for all ***", + "id": 14598 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Storage Cupboard", + "id": 5654 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 369 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "tomb_chest3" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_chstdrwrs" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 27.07050895690918 + }, + "Y": { + "type": "float", + "value": 38.58191299438477 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2318 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "You recognise the red liquid inside as the elixir of rejeuvnation. This powerful innoculant will heal most wounds and restore strength to its drinker. Wizards value this elixir extremely highly for its spell memory enhancement. Having a supply of this elixir is necessary at an arena where combatants wish to engage in many fights without having to sleep. ", + "id": 16810926 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Rejeuvination Pool", + "id": 16812536 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "instant_rest" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 504 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "pool2" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_bloodpool001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 36.87660980224609 + }, + "Y": { + "type": "float", + "value": 20.04208755493164 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2318 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "You recognise the red liquid inside as the elixir of rejeuvnation. This powerful innoculant will heal most wounds and restore strength to its drinker. Wizards value this elixir extremely highly for its spell memory enhancement. Having a supply of this elixir is necessary at an arena where combatants wish to engage in many fights without having to sleep. ", + "id": 16810926 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Rejeuvination Pool", + "id": 16812536 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "instant_rest" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 504 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "pool1" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_bloodpool001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 36.97683715820313 + }, + "Y": { + "type": "float", + "value": 29.87860298156738 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 7 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Ye helms, gauntlets and bracers.", + "id": 14594 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 19407 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 8 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 41 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_armhe010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 325264 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Platinum Circlet", + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 12 + }, + "Metal2Color": { + "type": "byte", + "value": 15 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 41 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_armhe010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 14065 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Silver Circlet", + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_armhe010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 169003 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 44 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Bone Circlet", + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 48 + }, + "Metal2Color": { + "type": "byte", + "value": 48 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_armhe010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 42383 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Iron Circlet", + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 23 + }, + "Metal2Color": { + "type": "byte", + "value": 20 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_armhe010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 60609 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Platinum Circlet", + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 12 + }, + "Metal2Color": { + "type": "byte", + "value": 15 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 41 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_armhe010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 14065 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Silver Circlet", + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_armhe010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 51987 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Iron Circlet", + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 20 + }, + "Metal2Color": { + "type": "byte", + "value": 23 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_armhe010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 169003 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Bone Circlet", + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 48 + }, + "Metal2Color": { + "type": "byte", + "value": 48 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_armhe010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 19407 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 8 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 41 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 7 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_armhe010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 15 + }, + "Cost": { + "type": "dword", + "value": 62018 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Helm of Achilles", + "id": 12849 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 8 + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 7 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARHE003" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_arhe003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 15 + }, + "Cost": { + "type": "dword", + "value": 62018 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Helm of Achilles", + "id": 12849 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 8 + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 7 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARHE003" + }, + "TemplateResRef": { + "type": "resref", + "value": "arhe004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 12, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 78 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19449 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13351 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13359 + } + }, + "ModelPart1": { + "type": "byte", + "value": 5 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBRACER010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbracer010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 13, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 78 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19449 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13351 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13359 + } + }, + "ModelPart1": { + "type": "byte", + "value": 5 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBRACER010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbracer010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 14, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 78 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 36001 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13349 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13355 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBRACER006" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbracer006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 15, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 78 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 36001 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13349 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13355 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 9 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBRACER006" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbracer006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 36 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 36001 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67782 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Greater Gauntlets of Ogre Power", + "id": 67783 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 9 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBRACER013" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mbracer014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 17, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 36 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 36001 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67782 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Greater Gauntlets of Ogre Power", + "id": 67783 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 9 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBRACER013" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mbracer014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Helms & Bracers", + "id": 5348 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "helm_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 365 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_Chest1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_chest1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.76471138000488 + }, + "Y": { + "type": "float", + "value": 39.02677536010742 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2108 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810963 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812292 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_MAPLE005" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_maple005" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 6.514041900634766 + }, + "Y": { + "type": "float", + "value": 27.17553329467773 + }, + "Z": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1935 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810958 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811948 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GRASSTUFT001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 30.28542709350586 + }, + "Y": { + "type": "float", + "value": 10.75046634674072 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1935 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810958 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811948 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GRASSTUFT001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 30.34907531738281 + }, + "Y": { + "type": "float", + "value": 15.51716136932373 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1935 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810958 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811948 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GRASSTUFT001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.4224796295166 + }, + "Y": { + "type": "float", + "value": 10.99027538299561 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1935 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810958 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811948 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GRASSTUFT001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.39473724365234 + }, + "Y": { + "type": "float", + "value": 15.92976379394531 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1935 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810958 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811948 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GRASSTUFT001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.15592575073242 + }, + "Y": { + "type": "float", + "value": 10.82006454467773 + }, + "Z": { + "type": "float", + "value": -2.291053533554077e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1935 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810958 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811948 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GRASSTUFT001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.45631980895996 + }, + "Y": { + "type": "float", + "value": 15.39830875396729 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1935 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810958 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811948 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GRASSTUFT001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 27.34078216552734 + }, + "Y": { + "type": "float", + "value": 17.84241676330566 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1935 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810958 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811948 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GRASSTUFT001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 30.08006477355957 + }, + "Y": { + "type": "float", + "value": 17.82279777526856 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1806 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811848 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS014" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers014" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 32.17945098876953 + }, + "Y": { + "type": "float", + "value": 9.095996856689453 + }, + "Z": { + "type": "float", + "value": 0.03000947833061218 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1777 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811850 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS015" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers015" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 23.21438026428223 + }, + "Y": { + "type": "float", + "value": 10.61349773406982 + }, + "Z": { + "type": "float", + "value": 0.02999958395957947 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1777 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811850 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS015" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers015" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 31.16377258300781 + }, + "Y": { + "type": "float", + "value": 10.19690132141113 + }, + "Z": { + "type": "float", + "value": 0.03000937588512898 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1777 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811850 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS015" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers015" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 30.19630241394043 + }, + "Y": { + "type": "float", + "value": 18.28412628173828 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1779 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811846 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS013" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers013" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 27.00819969177246 + }, + "Y": { + "type": "float", + "value": 10.76871681213379 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1779 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811846 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS013" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers013" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 26.6048641204834 + }, + "Y": { + "type": "float", + "value": 18.42755699157715 + }, + "Z": { + "type": "float", + "value": 0.06000044569373131 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1779 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811846 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS013" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers013" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 31.22042655944824 + }, + "Y": { + "type": "float", + "value": 14.25590705871582 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1805 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811844 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS012" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers012" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 23.13437461853027 + }, + "Y": { + "type": "float", + "value": 19.14469337463379 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1805 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811844 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS012" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers012" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.68692398071289 + }, + "Y": { + "type": "float", + "value": 19.40739631652832 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1769 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 0.3926971256732941 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813284 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_TREE028" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_tree028" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 27.18621444702148 + }, + "Y": { + "type": "float", + "value": 14.42581367492676 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 54 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -2.356192111968994 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "A slight breeze ripples the water's surface, giving your reflection a life of its own. As you gently wash your face with the water, a strange feeling of envigouration comes over you, almost as if you had just had eight hours of very restful sleep.", + "id": 14569 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Pool of Tranquility", + "id": 5696 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "instant_rest" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 412 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Birdbath" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_birdbath" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.74624252319336 + }, + "Y": { + "type": "float", + "value": 18.95966911315918 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 64 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 0.7853982448577881 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The water tumbles into the pool below, the sound of its fall striking a cheerful note. A feint blue glow shimmers off the surface of the water. The water seems to be radiating a life force all of its own. ", + "id": 14639 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Restoration Fountain", + "id": 5706 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "heal_allpc" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 422 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Fountain" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_fountain" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.07260513305664 + }, + "Y": { + "type": "float", + "value": 18.05869293212891 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 64 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.7853982448577881 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14639 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5706 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 422 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Fountain" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_fountain" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.05016326904297 + }, + "Y": { + "type": "float", + "value": 11.90936279296875 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 287 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -2.159843683242798 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This is the bench of contemplation. Often, battle weary arena combatants come here to sit and contemplate their day's performance. ", + "id": 68858 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68857 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 787 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x0_largebench" + }, + "TemplateResRef": { + "type": "resref", + "value": "largebench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 24.19608497619629 + }, + "Y": { + "type": "float", + "value": 15.69443607330322 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 102 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "ats_c_trash" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Place your unwanted items in here. \n\n** WARNING *** All items placed in here willl be destroyed forever." + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Trash Receptacle" + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "trash_can" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 460 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ATS_TRASH_CAN" + }, + "TemplateResRef": { + "type": "resref", + "value": "ats_trash_can" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.058643341064453 + }, + "Y": { + "type": "float", + "value": 24.64090538024902 + }, + "Z": { + "type": "float", + "value": 0.209996908903122 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 25 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14697 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Reset Score", + "id": 14684 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 383 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "PillarButton2" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_pllrbutton2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 70.67163848876953 + }, + "Y": { + "type": "float", + "value": 22.80295181274414 + }, + "Z": { + "type": "float", + "value": 0.001693248748779297 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 467 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 2.552533388137817 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "spawner" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Use this console menu to choose arena opponents and challenges. You can also use the options selection to activate and deactivate arena facilities.", + "id": 84584 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "The Arena Console", + "id": 84569 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "deactivator2" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "spawner_m3" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1003 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "spawner" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_mfdevice1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 53.65283203125 + }, + "Y": { + "type": "float", + "value": 33.4333381652832 + }, + "Z": { + "type": "float", + "value": 1.150001764297485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 147 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14584 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5790 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 505 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Butterflies" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_butterflies" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 30.23174476623535 + }, + "Y": { + "type": "float", + "value": 18.04396629333496 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 147 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14584 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5790 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 505 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Butterflies" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_butterflies" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 31.21005058288574 + }, + "Y": { + "type": "float", + "value": 10.17765045166016 + }, + "Z": { + "type": "float", + "value": 0.03000982850790024 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 147 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14584 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5790 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 505 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Butterflies" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_butterflies" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.39528465270996 + }, + "Y": { + "type": "float", + "value": 13.24930667877197 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1806 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811848 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS014" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers014" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 23.13893508911133 + }, + "Y": { + "type": "float", + "value": 13.43298149108887 + }, + "Z": { + "type": "float", + "value": 0.03000943548977375 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1805 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811844 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS012" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers012" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.68620109558106 + }, + "Y": { + "type": "float", + "value": 14.45494556427002 + }, + "Z": { + "type": "float", + "value": 0.03000945039093494 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1805 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811844 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS012" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers012" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 24.32720756530762 + }, + "Y": { + "type": "float", + "value": 13.65416812896729 + }, + "Z": { + "type": "float", + "value": 0.03000944666564465 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1811 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811836 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS008" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers008" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.2480354309082 + }, + "Y": { + "type": "float", + "value": 13.82735633850098 + }, + "Z": { + "type": "float", + "value": 0.03000962361693382 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1809 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811834 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS007" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers007" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.8027458190918 + }, + "Y": { + "type": "float", + "value": 14.81552886962891 + }, + "Z": { + "type": "float", + "value": 0.02999980933964253 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1812 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811840 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers010" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 24.94106674194336 + }, + "Y": { + "type": "float", + "value": 14.31278133392334 + }, + "Z": { + "type": "float", + "value": 0.03000942058861256 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1812 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811840 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers010" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.87010383605957 + }, + "Y": { + "type": "float", + "value": 15.87396717071533 + }, + "Z": { + "type": "float", + "value": 0.06000075489282608 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1812 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811840 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers010" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.05403900146484 + }, + "Y": { + "type": "float", + "value": 17.87587547302246 + }, + "Z": { + "type": "float", + "value": 0.3572150468826294 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1808 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811832 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS006" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers006" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.23336982727051 + }, + "Y": { + "type": "float", + "value": 17.61995887756348 + }, + "Z": { + "type": "float", + "value": 0.4849874377250671 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1808 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811832 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS006" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers006" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.08954238891602 + }, + "Y": { + "type": "float", + "value": 14.83310317993164 + }, + "Z": { + "type": "float", + "value": 0.02999983541667461 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1808 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811832 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS006" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers006" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.86198234558106 + }, + "Y": { + "type": "float", + "value": 13.90043163299561 + }, + "Z": { + "type": "float", + "value": 0.03000970743596554 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1804 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811828 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 24.59279441833496 + }, + "Y": { + "type": "float", + "value": 17.17571640014648 + }, + "Z": { + "type": "float", + "value": 0.03000925853848457 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1935 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810958 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811948 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GRASSTUFT001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.36543464660645 + }, + "Y": { + "type": "float", + "value": 17.84888458251953 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1807 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811838 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS009" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers009" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.53091812133789 + }, + "Y": { + "type": "float", + "value": 19.63430023193359 + }, + "Z": { + "type": "float", + "value": 0.03000972606241703 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1811 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811836 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS008" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers008" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.6580810546875 + }, + "Y": { + "type": "float", + "value": 19.3521728515625 + }, + "Z": { + "type": "float", + "value": 0.03000979870557785 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 467 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "When the going gets tough, the tough grit their teeth and strap on a bigger shield. Everyone else will reach for the nearest monster terminator.\n\n*** Terminates all monsters in the arena ***\n\n1. Will not work on PCs\n\n2. Kill rewards will be forfeited. \n\n3. All Bets will be forfeited.", + "id": 84584 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Monster Terminator", + "id": 84569 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "monster_bye" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1003 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_MFDEVICE1" + }, + "TemplateResRef": { + "type": "resref", + "value": "monster_terminat" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 45.05117797851563 + }, + "Y": { + "type": "float", + "value": 42.85010147094727 + }, + "Z": { + "type": "float", + "value": 0.1999997645616531 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 467 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141513824462891 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "When the going gets tough, the tough grit their teeth and strap on a bigger shield. Everyone else will reach for the nearest monster terminator.\n\n*** Terminates all monsters in the arena ***\n\n1. Will not work on PCs\n\n2. Kill rewards will be forfeited. \n\n3. All Bets will be forfeited.", + "id": 84584 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Monster Terminator", + "id": 84569 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "monster_bye" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1003 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_MFDEVICE1" + }, + "TemplateResRef": { + "type": "resref", + "value": "monster_terminat" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 44.94258880615234 + }, + "Y": { + "type": "float", + "value": 7.203896522521973 + }, + "Z": { + "type": "float", + "value": 0.1999997645616531 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 2325 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Instant Buffing Crystal\n=================\nImbues the user with the following buffs:\n\nBATTLETIDE\nAID\nEAGLE SPLEDOR\nAURA OF VITALITY\nBULLS STRENGTH\nDIVINE_FAVOR\nPRAYER\nDIVINE_POWER\nTRUE STRIKE", + "id": 16813899 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 3 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Power Crystal", + "id": 16811170 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "full_buff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "crystal2" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_crystal001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 55.01226043701172 + }, + "Y": { + "type": "float", + "value": 36.92757415771484 + }, + "Z": { + "type": "float", + "value": 1.149991393089294 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 2325 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Instant Buffing Crystal\n=================\nImbues the user with the following buffs:\n\nBATTLETIDE\nAID\nEAGLE SPLEDOR\nAURA OF VITALITY\nBULLS STRENGTH\nDIVINE_FAVOR\nPRAYER\nDIVINE_POWER\nTRUE STRIKE", + "id": 16813899 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 3 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Power Crystal", + "id": 16811170 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "full_buff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1007 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "crystal1" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_crystal001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 29.47442436218262 + }, + "Y": { + "type": "float", + "value": 36.95370101928711 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 22 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.141515970230103 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "crystal_enabled" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This lever toggles the Power Crystal [on / off]", + "id": 14632 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Power Crystal Switch", + "id": 14633 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "buff_talk" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 380 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "cr_lever" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_flrlever1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 24.47480010986328 + }, + "Y": { + "type": "float", + "value": 29.82289886474609 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 436 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 919 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 24.51059722900391 + }, + "Y": { + "type": "float", + "value": 29.85427093505859 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 22 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.141518354415894 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This lever toggles Restoration Fountains [on / off]", + "id": 14632 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Restoration Fountain Switch", + "id": 14633 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "fountain_switch" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 380 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "fount_lever" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_flrlever1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 26.80158233642578 + }, + "Y": { + "type": "float", + "value": 29.85006523132324 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 22 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141518354415894 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This lever toggles the Rejeuvenation Pools Crystal [on / off]", + "id": 14632 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Rejeuvination Pool Switch", + "id": 14633 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "r_pool_switch" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 380 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "pool_lever" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_flrlever1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.63647651672363 + }, + "Y": { + "type": "float", + "value": 29.85785675048828 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 442 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 925 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_7" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_7" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.67855453491211 + }, + "Y": { + "type": "float", + "value": 29.87560272216797 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 440 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 923 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_5" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_5" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 26.84130096435547 + }, + "Y": { + "type": "float", + "value": 29.85922622680664 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 105 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Ranged Weapons\n===============\n\nLongbow\nShortbow\nHeavy Crossbow\nLight Crossbow\n\nArrows & Bolts", + "id": 14752 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Ranged Weapons", + "id": 5748 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "bow_shop" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 463 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WeaponRack" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_weaponrack" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.48869323730469 + }, + "Y": { + "type": "float", + "value": 30.07440757751465 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 23 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This is the Arena gate override lever. The gate automatically locks at the beginning of a bout. This lever is for those who wish to see or join the fight after it has already began. This is a multiplayer facility.", + "id": 14634 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Gate Lock Override", + "id": 14633 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "gate_lever" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 381 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FloorLever2" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_flrlever2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.63615226745606 + }, + "Y": { + "type": "float", + "value": 21.11137771606445 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 443 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "rune", + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 926 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_8" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_8" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.72843742370606 + }, + "Y": { + "type": "float", + "value": 21.08780670166016 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 89 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Player Board\n==========\n\nThis is where players can check their own and other players' rank and score. It also shows the number of players in the arena.", + "id": 14717 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Player Board", + "id": 5732 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "player_sign" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 447 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Signpost3" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_signpost3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 1 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.11979866027832 + }, + "Y": { + "type": "float", + "value": 22.69702339172363 + }, + "Z": { + "type": "float", + "value": 0.2000102549791336 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 437 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141518354415894 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 920 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.08791971206665 + }, + "Y": { + "type": "float", + "value": 23.6994800567627 + }, + "Z": { + "type": "float", + "value": 0.209996908903122 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 437 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 920 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.155113220214844 + }, + "Y": { + "type": "float", + "value": 21.68702125549316 + }, + "Z": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1807 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811838 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS009" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers009" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.291865825653076 + }, + "Y": { + "type": "float", + "value": 23.80690574645996 + }, + "Z": { + "type": "float", + "value": 0.2606639862060547 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1806 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811848 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS014" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers014" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 6.844607830047607 + }, + "Y": { + "type": "float", + "value": 22.25447273254395 + }, + "Z": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1808 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811832 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS006" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers006" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.31341028213501 + }, + "Y": { + "type": "float", + "value": 21.58368492126465 + }, + "Z": { + "type": "float", + "value": 0.2274743169546127 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1935 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810958 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811948 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GRASSTUFT001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.452068328857422 + }, + "Y": { + "type": "float", + "value": 28.71106147766113 + }, + "Z": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1807 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811838 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS009" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers009" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 4.07785177230835 + }, + "Y": { + "type": "float", + "value": 26.40369987487793 + }, + "Z": { + "type": "float", + "value": 0.2300101518630981 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 287 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This bench is for spectators with weaker stomachs. Blood tends to spatter on the closer benches.", + "id": 68858 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68857 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 787 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "bench_sit" + }, + "TemplateResRef": { + "type": "resref", + "value": "largebench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 36.58331298828125 + }, + "Y": { + "type": "float", + "value": 35.00746536254883 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 287 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This bench is for spectators with weaker stomachs. Blood tends to spatter on the closer benches.", + "id": 68858 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68857 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 787 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "bench_sit" + }, + "TemplateResRef": { + "type": "resref", + "value": "largebench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 36.55671310424805 + }, + "Y": { + "type": "float", + "value": 14.86459064483643 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 351 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68960 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68959 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 767 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Window" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_window" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 6.175513744354248 + }, + "Y": { + "type": "float", + "value": 33.01482009887695 + }, + "Z": { + "type": "float", + "value": 0.8953237533569336 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 351 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68960 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68959 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 767 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Window" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_window" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 6.183033466339111 + }, + "Y": { + "type": "float", + "value": 30.98121643066406 + }, + "Z": { + "type": "float", + "value": 0.8792123794555664 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 233 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68833 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68832 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 755 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FallenTimber" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_fallentimber" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.571815967559815 + }, + "Y": { + "type": "float", + "value": 26.11666488647461 + }, + "Z": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 233 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68833 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68832 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 755 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FallenTimber" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_fallentimber" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.065580368041992 + }, + "Y": { + "type": "float", + "value": 28.60553741455078 + }, + "Z": { + "type": "float", + "value": 0.2036779075860977 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 232 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68955 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 66692 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 674 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "VaseFlower" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_vaseflower" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.583406925201416 + }, + "Y": { + "type": "float", + "value": 31.04967880249023 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 232 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68955 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 66692 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 674 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "VaseFlower" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_vaseflower" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 6.766246318817139 + }, + "Y": { + "type": "float", + "value": 31.09719657897949 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 175 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14743 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5818 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 533 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Throw Rug" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_throwrug" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.816819190979004 + }, + "Y": { + "type": "float", + "value": 38.50871658325195 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1935 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810958 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811948 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GRASSTUFT001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 3.299819231033325 + }, + "Y": { + "type": "float", + "value": 34.7159538269043 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1775 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813599 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812738 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_SHRUB041" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_shrub041" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 3.255177974700928 + }, + "Y": { + "type": "float", + "value": 35.52066802978516 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 233 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68833 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68832 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 755 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FallenTimber" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_fallentimber" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.842221736907959 + }, + "Y": { + "type": "float", + "value": 34.72397232055664 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 139 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 0.9817365407943726 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The power of knowledge can bring untold advantage to any warrior.", + "id": 14562 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "The Great Library", + "id": 14561 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 497 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MerchantsShingle2" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_billboard2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.314844131469727 + }, + "Y": { + "type": "float", + "value": 41.15810012817383 + }, + "Z": { + "type": "float", + "value": 0.2000104933977127 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 438 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 921 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_3" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 6.927541732788086 + }, + "Y": { + "type": "float", + "value": 22.70224571228027 + }, + "Z": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1805 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811844 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS012" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers012" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.33451461791992 + }, + "Y": { + "type": "float", + "value": 19.26323890686035 + }, + "Z": { + "type": "float", + "value": 0.01000047661364079 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1805 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 0.9817365407943726 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811844 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS012" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers012" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.32409286499023 + }, + "Y": { + "type": "float", + "value": 18.7636775970459 + }, + "Z": { + "type": "float", + "value": 0.01000047661364079 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1805 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.5890485644340515 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811844 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS012" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers012" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 23.01075553894043 + }, + "Y": { + "type": "float", + "value": 18.55209159851074 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1805 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.178097248077393 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811844 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS012" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers012" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.57269477844238 + }, + "Y": { + "type": "float", + "value": 18.4086799621582 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B2" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 50.01133346557617 + }, + "Y": { + "type": "float", + "value": 42.89738082885742 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141518354415894 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B10" + }, + "TemplateResRef": { + "type": "resref", + "value": "brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 50.01334381103516 + }, + "Y": { + "type": "float", + "value": 6.849867820739746 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B5" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 36.65939331054688 + }, + "Y": { + "type": "float", + "value": 17.52941131591797 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B6" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 36.62541580200195 + }, + "Y": { + "type": "float", + "value": 32.49236679077148 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.141518354415894 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B4" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 40.24563217163086 + }, + "Y": { + "type": "float", + "value": 6.93035888671875 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 2705 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141518354415894 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813927 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812532 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_lamp" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 507 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_OPOLLNTRN001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_opollntrn001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "YELLOW_15" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_pollntrn001" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 6.902841567993164 + }, + "Y": { + "type": "float", + "value": 22.75374984741211 + }, + "Z": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 2705 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141518354415894 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813927 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812532 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_lamp" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 507 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_OPOLLNTRN001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_opollntrn001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "YELLOW_15" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_pollntrn001" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.16339206695557 + }, + "Y": { + "type": "float", + "value": 19.64169120788574 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 2705 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813927 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812532 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_lamp" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 507 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_OPOLLNTRN001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_opollntrn001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "YELLOW_15" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_pollntrn001" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.73629570007324 + }, + "Y": { + "type": "float", + "value": 19.62417602539063 + }, + "Z": { + "type": "float", + "value": -2.980232238769531e-008 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 441 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 924 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_6" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_6" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.76169204711914 + }, + "Y": { + "type": "float", + "value": 19.65499687194824 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 441 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 924 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_6" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_6" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.20438575744629 + }, + "Y": { + "type": "float", + "value": 19.60597610473633 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 441 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 924 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_6" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_6" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.44919395446777 + }, + "Y": { + "type": "float", + "value": 10.35167694091797 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 441 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 924 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_6" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_6" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.50242614746094 + }, + "Y": { + "type": "float", + "value": 10.36607360839844 + }, + "Z": { + "type": "float", + "value": 5.960464477539063e-008 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 441 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 924 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_6" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_6" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 33.56866455078125 + }, + "Y": { + "type": "float", + "value": 41.3966064453125 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 441 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 924 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_6" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_6" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 23.62970352172852 + }, + "Y": { + "type": "float", + "value": 39.44537734985352 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 441 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 924 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_6" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_6" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 33.54382705688477 + }, + "Y": { + "type": "float", + "value": 15.58042430877686 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 2705 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813927 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812532 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_lamp" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 507 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_OPOLLNTRN001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_opollntrn001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "YELLOW_15" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_pollntrn001" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 33.52965545654297 + }, + "Y": { + "type": "float", + "value": 41.42621231079102 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 2705 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141518354415894 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813927 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812532 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_lamp" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 507 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_OPOLLNTRN001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_opollntrn001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "YELLOW_15" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_pollntrn001" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.40854740142822 + }, + "Y": { + "type": "float", + "value": 10.37918472290039 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 2705 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813927 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812532 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_lamp" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 507 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_OPOLLNTRN001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_opollntrn001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "YELLOW_15" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_pollntrn001" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.43449974060059 + }, + "Y": { + "type": "float", + "value": 10.38943481445313 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 2705 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813927 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812532 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_lamp" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 507 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_OPOLLNTRN001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_opollntrn001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "YELLOW_15" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_pollntrn001" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 23.59048652648926 + }, + "Y": { + "type": "float", + "value": 39.47483062744141 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B8" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 73.1810302734375 + }, + "Y": { + "type": "float", + "value": 20.13734817504883 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B7" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 73.42853546142578 + }, + "Y": { + "type": "float", + "value": 29.96648216247559 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 74.62440490722656 + }, + "Y": { + "type": "float", + "value": 37.66857528686523 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 74.56258392333984 + }, + "Y": { + "type": "float", + "value": 32.18724822998047 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 74.60231781005859 + }, + "Y": { + "type": "float", + "value": 17.57724189758301 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 74.59720611572266 + }, + "Y": { + "type": "float", + "value": 12.15398025512695 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2937 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813700 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812872 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2592 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 72.60218048095703 + }, + "Y": { + "type": "float", + "value": 24.86096954345703 + }, + "Z": { + "type": "float", + "value": 0.2017045021057129 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 91 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14732 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14536 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 449 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Statue - Stone" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_statue1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 74.01292419433594 + }, + "Y": { + "type": "float", + "value": 23.3029670715332 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1935 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810958 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811948 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GRASSTUFT001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.192144870758057 + }, + "Y": { + "type": "float", + "value": 17.68915176391602 + }, + "Z": { + "type": "float", + "value": 0.2099961936473846 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 436 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 919 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.8040828704834 + }, + "Y": { + "type": "float", + "value": 23.80629348754883 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 436 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141518354415894 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 919 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.15038681030273 + }, + "Y": { + "type": "float", + "value": 24.51906394958496 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 436 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 919 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.86738777160645 + }, + "Y": { + "type": "float", + "value": 25.18725204467773 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 436 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 919 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.52557945251465 + }, + "Y": { + "type": "float", + "value": 24.44472503662109 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 440 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 923 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_5" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_5" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.52267265319824 + }, + "Y": { + "type": "float", + "value": 25.18595123291016 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 436 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 919 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.52036285400391 + }, + "Y": { + "type": "float", + "value": 23.80472183227539 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 436 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141518354415894 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 919 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.15073776245117 + }, + "Y": { + "type": "float", + "value": 25.18132400512695 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 436 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 919 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.15637969970703 + }, + "Y": { + "type": "float", + "value": 23.80271339416504 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 144 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Master Crafter within. Upgrades, repairs and custom design.\n\n** Only availible in Campaign Manager Mode **", + "id": 14567 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Master Crafter", + "id": 14561 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 502 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MerchantsShingle7" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_billboard7" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 6.847692012786865 + }, + "Y": { + "type": "float", + "value": 14.01846599578857 + }, + "Z": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 233 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68833 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68832 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 755 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FallenTimber" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_fallentimber" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.316124439239502 + }, + "Y": { + "type": "float", + "value": 15.13614463806152 + }, + "Z": { + "type": "float", + "value": 0.2100001573562622 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 233 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68833 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68832 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 755 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FallenTimber" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_fallentimber" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.294693470001221 + }, + "Y": { + "type": "float", + "value": 19.99951362609863 + }, + "Z": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 233 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68833 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68832 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 755 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FallenTimber" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_fallentimber" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.747028350830078 + }, + "Y": { + "type": "float", + "value": 17.58726310729981 + }, + "Z": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1807 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.767142176628113 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811838 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS009" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers009" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 4.373945713043213 + }, + "Y": { + "type": "float", + "value": 19.64608001708984 + }, + "Z": { + "type": "float", + "value": 0.2400002628564835 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1808 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811832 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS006" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers006" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.40007495880127 + }, + "Y": { + "type": "float", + "value": 15.67544746398926 + }, + "Z": { + "type": "float", + "value": 0.3279135823249817 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2111 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810961 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811424 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_BLSSMTREE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_blssmtree001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 6.5588059425354 + }, + "Y": { + "type": "float", + "value": 17.4330005645752 + }, + "Z": { + "type": "float", + "value": 0.2099961936473846 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2480 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 1 + }, + "Hardness": { + "type": "byte", + "value": 1 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 1 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813524 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.12545204162598 + }, + "Y": { + "type": "float", + "value": 25.14502334594727 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2480 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 1 + }, + "Hardness": { + "type": "byte", + "value": 1 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 1 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813524 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.1446647644043 + }, + "Y": { + "type": "float", + "value": 23.8494815826416 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2480 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 1 + }, + "Hardness": { + "type": "byte", + "value": 1 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 1 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813524 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.51261711120606 + }, + "Y": { + "type": "float", + "value": 23.79413223266602 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2480 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 1 + }, + "Hardness": { + "type": "byte", + "value": 1 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 1 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813524 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.53822135925293 + }, + "Y": { + "type": "float", + "value": 25.13912391662598 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2483 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813593 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 1 + }, + "Hardness": { + "type": "byte", + "value": 1 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 1 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812390 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS003" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers003" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.89134788513184 + }, + "Y": { + "type": "float", + "value": 25.15738677978516 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2483 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813593 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 1 + }, + "Hardness": { + "type": "byte", + "value": 1 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 1 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812390 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS003" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers003" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.84221076965332 + }, + "Y": { + "type": "float", + "value": 23.79567718505859 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2482 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813593 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 1 + }, + "Hardness": { + "type": "byte", + "value": 1 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 1 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812566 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.12078857421875 + }, + "Y": { + "type": "float", + "value": 24.48709869384766 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2482 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813593 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 1 + }, + "Hardness": { + "type": "byte", + "value": 1 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 1 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812566 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_FLOWERS002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_flowers002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.53960037231445 + }, + "Y": { + "type": "float", + "value": 24.47922706604004 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 139 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.5890485644340515 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "sign_warehouse" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The Item warehouse. Every Item imaginable from the Campaigns.\n\n** Only availible in Campaign Manager Mode **", + "id": 14562 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "The Great Storeroom", + "id": 14561 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_startconv" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 497 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MerchantsShingle2" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_billboard2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 29.83238029479981 + }, + "Y": { + "type": "float", + "value": 43.60988616943359 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 31 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "portal" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14705 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14706 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "mag_chain" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 389 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "PullRopeChain" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_pullrope" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.51017761230469 + }, + "Y": { + "type": "float", + "value": 44.63685989379883 + }, + "Z": { + "type": "float", + "value": 0.2100001126527786 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 158 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14679 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14673 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 516 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Magic Sparks - White" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_magicwhite" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.47206687927246 + }, + "Y": { + "type": "float", + "value": 44.72366714477539 + }, + "Z": { + "type": "float", + "value": 0.2099963277578354 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 140 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Pull the chain and select the chapter of a campaign to be transported to.\n\n** Only availible in Campaign Manager Mode **", + "id": 14563 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Campaign Chooser", + "id": 14561 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 498 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MerchantsShingle3" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_billboard3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.688720703125 + }, + "Y": { + "type": "float", + "value": 44.69363784790039 + }, + "Z": { + "type": "float", + "value": 0.2000102549791336 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 320 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68894 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_ruglarge" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 16.63819313049316 + }, + "Y": { + "type": "float", + "value": 31.15153503417969 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2432 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141527414321899 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Welcome to the Arena of Champions!\n\nEntering the Arena\n===============\nFirst-time characters will be stripped of all gold and items. The arena has all of its own regulated items and a unique monetary system. Any external gold or items would imbalance the challenge. That is why this is in place. New players will be given an Arena of Champions (AOC) membership card. All players who posess this card will not be stripped upon re-entry to the arena.\n\n\nThe Character Builder\n==================\nUsing Starfall, you can recieve or take levels, change your alignment and remove items and gold from your character. The primary purpose of this mod is to facilitate the building of characters in the pursuit of perfecting the art of character building. The arena is particularly well suited to uber builds and should challenge them well. The secondary purpose of this mod is to provide a challenging and fun single player arena (never done before, I believe).\n\nItems:\nThere is a range of standard items availible. If you wish to upgrade them, you will have to earn arena tokens and use the awesome 'Eye of Amaterasu' to do so. This will be further explained in the appropriate sections of this user guide.\n\n\nThe Arena\n=========\nThe arena has been designed for level 40 characters only. If you can last more than 30 seconds with a lower level character, please send me the build details. \n\nAlignment:\nIf you choose a good or neutral alignment, Starfall will be your host and you will face 10 champions of darkness in the arena. If you choose an evil alignment, Mephisto will be your host and you will face 10 champions of light in the arena. The champions of light are more difficult than the champions of darkness. So when you have defeated all of the bad guys, try going up against the good guys.\n\n\nGame Modes\n===========\n\nCharacter Manager Mode:\n-----------------------------------------\nIn this game mode, you will have access to a range of character management options via talking to Starfall. Engaging this mode will also unlock the doors to the blacksmith and the store room. The blacksmith will be able to imbue your weapons with a few properties necessary for the neverwinter official campaigns. The storeroom will give you access to unlimited gold and every item in all of the 3 bioware campaigns. Once you enter this mode, you will no longer be permitted to compete in the arena.This is to prevent cheating.\n\nDeathmatch Mode:\n--------------------------------\nThis will be the primary mode of play in the single player arena game until you gain a few ranks and start imbuing your items with the appropriate powers. The monsters you can duel will become availible for selection after you defeat their predecessors. The arena gate will be locked upon the initiation of a deathmatch. \n\nDeathmatch Tombs:\nEach time you defeat an opponent, there is an 80% chance that they will drop a tomb, providing you don't already have the same one. These tombs are the key to success in this arena. There are 2 tombs for each enemy. Tombs I will reveal your opponent's strengths, and thus, what to protect against, and tombs II will reveal your enemy's weakness i.e. how to kill them! Your opponens will only drop tombs pertaining to themselves and the enemy directly after them in the list.\n\nOther Drops:\nEnemies will always drop gold in Deathmatch mode.\n\nArena Challenge Mode\n==================\nThis mode is like a tounament where the player fights a string of enemies. The arena gate will be locked upon initiation of any one of the challenges. The difficulty of the challenges will vary in the following ways:\n\n1. healing and recharching pools will vary in availibility\n2. The power crystal will vary in availibility\n3. The number of lives granted will vary\n4. The number of consecutive opponents will vary\n5. Bonus lives will be granted at various stages in harder challenges\n\nReward chests:\nThese chests will appear upon completion of an arena challenge. These chests will only appear once. The value of the rewards inside the chests will be greater as you complete more difficult challenges. Such rewards will comprise Arena Tokens and Magic Items.\n\nLives:\nLives will be granted at the start of the challenge. When you die, you lose one life. If your lives run out, you fail the challenge. Lives are only utilised in Arena Challenge Mode.\n\nnote: it is not recommended to attempt arena challenges without first training in deathmatch mode and learning how to defeat the various enemies.\n\n\nDuel Mode\n=========\nWhen you have defeated all of the arena champions, you will gain a new option in your host's (Starfall or Mephisto) conversation. This will be [Duel]. If you think you are up to it, try defeating them. But be warned. Their CRs are in the thousands :P\n\n\nThe Ranking System\n=================\n\nWhen you first enter the arena (module) you are given the lowest rank. As you defeat more enemies, you will be promoted to higher ranks, which come with both greater prestige and ability bonuses. Your ability bonus gains will be sent to your message window. These gains will include:\n\n1. AC bonus\n2. Attack Bonus\n3. Damage Bonus\n4. Speed bonus\n\nWhen you defeat an opponent, you will also gain an extra 500 gold pieces for each rank that you hold. This is your Rank Purse Bonus.\n\nThere are 18 possible ranks. Your rank is calculated by the total number of kills minus half of your deaths i.e. Rank = Kills - (Deaths/2). This means that if you die too many times, you will be demoted and lose whichever ability bonusus were associated with the rank you just lost.\n\nHint: if you know you can't possibly win a bout - head straight for the monster terminator!\n\nArena Tokens\n============\nThe arena tokens can be bought from Starfall using the gold earned from deathmatch bouts. Using the 'Eye of Amaterasu' you can imbue a range of powers onto all of your items. These powers will be essential for your offensive and devensive strategies. \n\nFor more details on using the 'Eye of Amaterasu' please examine it. \n\n\nMonster Terminators\n=================\n\nIf at any point you feel that you are going to lose a bout for sure, or you just wish to cancel an Arena Challenge, just click on the monster terminator. This will kill all monsters in the area, re-enable the pools and unlock the arena gate.\n\nPower Crystal\n===========\n\nThis crystal can be activated from the arena console or by using the lever in the character building area. Once activated, clicking on it will buff the player with a number of battle buffs. Examine the crystals to discover which buffs are afforded.\n\nRejeuvination Pools\n=================\n\nUsing these pools will effectively rest the player. This means that all spells memorised and all special abilities will be availible again. You can block access to these pools using the arena console or the levers in the character building area. This is more for multiplayer duelling where players want to remove the temptation of cheating by heading for these pools to deny their opponent victory.\n\nRestoration Fountains\n===================\n\nThese fountains work the same way as the rejeuvination pools, only they give the player greater restoration. Disabling them works the same way as the rejeuvination pools.\n\n\nThe Arena Console\n================\nThis is where you initiate all arena challenges. Instructions are provided when you use it. You can also control various arena facilities from the menu within.\n\n\n------------------------------------------------\nHint: examine any object to discover its purpose and how to use it.\n\n\n\n\nFinally - Good luck and above all, have fun iplaying:\n\n***The Arena of Champions ***\n", + "id": 16813650 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Welcome to The Arena of Champions", + "id": 16811674 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "examine_me" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 480 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "rule_post" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_drcncplac006" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.38668155670166 + }, + "Y": { + "type": "float", + "value": 18.40621376037598 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 441 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 924 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_6" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_6" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.40992069244385 + }, + "Y": { + "type": "float", + "value": 18.46341133117676 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2305 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The Eye of Amaterasu\n==================\n\nGreybane the wizard discovered the stone of Amaterasu in a smouldering crater only minutes after a huge meteor struck the earth. When he went to store it in a chest full of his adventuring treasures, a strange reaction took place which resulted in all of the gold and silver coins in his chest to dissapear. What was stranger was that all of the other items in the chest glowed briefly and then transformed into powerful items. After many years of experimentation, Greybane finally discovered how to harness and control the stone's incredible powers. He smoothed the stone into a perfect sphere and set it on a special pedestal. Placing an item on the pedestal along with a carefully weighted piece of silver or gold will activate the stone. The stone, once activated, probes the mind of the giver and after discovering the property which he/she most desires to have imbued into their item, magically brings it to be. This mystical and powerful contraption is known as the eye of Amaterasu.\n\nAmaterasu\n=========\n\nAmaterasu is the Japanese sun godess, most powerful of the Shinto gods. It is believed that they who give honour to Amaterasu will be blessed with prosperity and health.\n\n\nInstructions\n=========\n\n1. Place an item and one Arena Token inside. Then simply select the imbuement that you desire.\n\n2. Gold Tokens afford the most powerful imbuements, but only work on armour, amulets and weapons.\n\n3. Silver Tokens afford a multitude of damage umbuements for weapons and ammunition.\n\n4. Bronze Tokens affort a range of feats, skills and lesser damage imbuements for all items and weapons.\n\n\n5. You can purchase Arena Tokens from your game host (either Starfall or Mephisto depending on your alignment)\n\n6. The Eye of Amaterasu is the key to success in the arena. Study your opponents strengths and weaknesses and imbue your items accordingly. \n ", + "id": 16813637 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "The Eye of Amaterasu", + "id": 16811016 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "item_modder8" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_lamp_wt" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2548 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "eyeofamaterasu" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_crysorb003" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.86104011535645 + }, + "Y": { + "type": "float", + "value": 24.49607086181641 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 467 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14153003692627 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "When the going gets tough, the tough grit their teeth and strap on a bigger shield. Everyone else will reach for the nearest monster terminator.\n\n*** Terminates all monsters in the arena ***\n\n1. Will not work on PCs\n\n2. Kill rewards will be forfeited. \n\n3. All Bets will be forfeited.", + "id": 84584 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Monster Terminator", + "id": 84569 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "monster_bye" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1003 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_MFDEVICE1" + }, + "TemplateResRef": { + "type": "resref", + "value": "monster_terminat" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 54.88166427612305 + }, + "Y": { + "type": "float", + "value": 7.488999366760254 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 467 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14153003692627 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "When the going gets tough, the tough grit their teeth and strap on a bigger shield. Everyone else will reach for the nearest monster terminator.\n\n*** Terminates all monsters in the arena ***\n\n1. Will not work on PCs\n\n2. Kill rewards will be forfeited. \n\n3. All Bets will be forfeited.", + "id": 84584 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Monster Terminator", + "id": 84569 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "monster_bye" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1003 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_MFDEVICE1" + }, + "TemplateResRef": { + "type": "resref", + "value": "monster_terminat" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 65.12531280517578 + }, + "Y": { + "type": "float", + "value": 7.228002548217773 + }, + "Z": { + "type": "float", + "value": 0.1999997645616531 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 467 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "When the going gets tough, the tough grit their teeth and strap on a bigger shield. Everyone else will reach for the nearest monster terminator.\n\n*** Terminates all monsters in the arena ***\n\n1. Will not work on PCs\n\n2. Kill rewards will be forfeited. \n\n3. All Bets will be forfeited.", + "id": 84584 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Monster Terminator", + "id": 84569 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "monster_bye" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1003 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_MFDEVICE1" + }, + "TemplateResRef": { + "type": "resref", + "value": "monster_terminat" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 55.12393951416016 + }, + "Y": { + "type": "float", + "value": 42.60813140869141 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 467 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "When the going gets tough, the tough grit their teeth and strap on a bigger shield. Everyone else will reach for the nearest monster terminator.\n\n*** Terminates all monsters in the arena ***\n\n1. Will not work on PCs\n\n2. Kill rewards will be forfeited. \n\n3. All Bets will be forfeited.", + "id": 84584 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Monster Terminator", + "id": 84569 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "monster_bye" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1003 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_MFDEVICE1" + }, + "TemplateResRef": { + "type": "resref", + "value": "monster_terminat" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 65.14466094970703 + }, + "Y": { + "type": "float", + "value": 42.88272094726563 + }, + "Z": { + "type": "float", + "value": 0.2000000029802322 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Bench", + "id": 5821 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "sit_bench" + }, + "TemplateResRef": { + "type": "resref", + "value": "bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.44994354248047 + }, + "Y": { + "type": "float", + "value": 11.03031921386719 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Bench", + "id": 5821 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "sit_bench" + }, + "TemplateResRef": { + "type": "resref", + "value": "bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.48720550537109 + }, + "Y": { + "type": "float", + "value": 14.80934429168701 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Bench", + "id": 5821 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "sit_bench" + }, + "TemplateResRef": { + "type": "resref", + "value": "bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.50703048706055 + }, + "Y": { + "type": "float", + "value": 18.73111343383789 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Bench", + "id": 5821 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "sit_bench" + }, + "TemplateResRef": { + "type": "resref", + "value": "bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 67.19982147216797 + }, + "Y": { + "type": "float", + "value": 11.21439456939697 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Bench", + "id": 5821 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "bench" + }, + "TemplateResRef": { + "type": "resref", + "value": "bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.42799758911133 + }, + "Y": { + "type": "float", + "value": 31.28118324279785 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Bench", + "id": 5821 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "bench" + }, + "TemplateResRef": { + "type": "resref", + "value": "bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.41207122802734 + }, + "Y": { + "type": "float", + "value": 35.23123931884766 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Bench", + "id": 5821 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "SF_BENCH" + }, + "TemplateResRef": { + "type": "resref", + "value": "bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.43059921264648 + }, + "Y": { + "type": "float", + "value": 38.89882659912109 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Bench", + "id": 5821 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "sit_bench" + }, + "TemplateResRef": { + "type": "resref", + "value": "bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 67.22102355957031 + }, + "Y": { + "type": "float", + "value": 18.8268928527832 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Bench", + "id": 5821 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "sit_bench" + }, + "TemplateResRef": { + "type": "resref", + "value": "bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 67.20574951171875 + }, + "Y": { + "type": "float", + "value": 14.84441947937012 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Bench", + "id": 5821 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "sit_bench" + }, + "TemplateResRef": { + "type": "resref", + "value": "bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 67.41367340087891 + }, + "Y": { + "type": "float", + "value": 31.11215019226074 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Bench", + "id": 5821 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "sit_bench" + }, + "TemplateResRef": { + "type": "resref", + "value": "bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 67.44488525390625 + }, + "Y": { + "type": "float", + "value": 34.86978530883789 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Bench", + "id": 5821 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "pc_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "PC_BENCH" + }, + "TemplateResRef": { + "type": "resref", + "value": "bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 67.46875 + }, + "Y": { + "type": "float", + "value": 38.76705551147461 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 316 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68896 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 750 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugOriental" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_rugoriental" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 37.49674224853516 + }, + "Y": { + "type": "float", + "value": 25.0939826965332 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14153003692627 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Dynamic Brazier", + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B14" + }, + "TemplateResRef": { + "type": "resref", + "value": "brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 60.02468490600586 + }, + "Y": { + "type": "float", + "value": 6.797611713409424 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Dynamic Brazier", + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B11" + }, + "TemplateResRef": { + "type": "resref", + "value": "brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 73.40985107421875 + }, + "Y": { + "type": "float", + "value": 10.18320369720459 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Dynamic Brazier", + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B12" + }, + "TemplateResRef": { + "type": "resref", + "value": "brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 72.93241119384766 + }, + "Y": { + "type": "float", + "value": 39.65407180786133 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Dynamic Brazier", + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B9" + }, + "TemplateResRef": { + "type": "resref", + "value": "brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 59.96980667114258 + }, + "Y": { + "type": "float", + "value": 43.06268310546875 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.14153003692627 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Dynamic Brazier", + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B3" + }, + "TemplateResRef": { + "type": "resref", + "value": "brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 69.76844787597656 + }, + "Y": { + "type": "float", + "value": 7.238402366638184 + }, + "Z": { + "type": "float", + "value": 0.2000000029802322 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14579 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Dynamic Brazier", + "id": 5699 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 415 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "B13" + }, + "TemplateResRef": { + "type": "resref", + "value": "brazier" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 69.65864562988281 + }, + "Y": { + "type": "float", + "value": 42.93036270141602 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.14153003692627 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.31060028076172 + }, + "Y": { + "type": "float", + "value": 44.59561538696289 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.14153003692627 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 47.7587890625 + }, + "Y": { + "type": "float", + "value": 44.61048126220703 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14153003692627 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 62.34661102294922 + }, + "Y": { + "type": "float", + "value": 44.60589599609375 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14153003692627 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 67.73174285888672 + }, + "Y": { + "type": "float", + "value": 44.65673065185547 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 67.63399505615234 + }, + "Y": { + "type": "float", + "value": 5.364644527435303 + }, + "Z": { + "type": "float", + "value": 0.1999998837709427 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 62.27857971191406 + }, + "Y": { + "type": "float", + "value": 5.36883544921875 + }, + "Z": { + "type": "float", + "value": 0.1999997645616531 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 47.67534637451172 + }, + "Y": { + "type": "float", + "value": 5.400070667266846 + }, + "Z": { + "type": "float", + "value": 0.1999997645616531 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.21612548828125 + }, + "Y": { + "type": "float", + "value": 5.382779121398926 + }, + "Z": { + "type": "float", + "value": 0.1999997645616531 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2937 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14153003692627 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813700 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812872 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2592 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 55.10039138793945 + }, + "Y": { + "type": "float", + "value": 42.66893768310547 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2937 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813700 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812872 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2592 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 54.91137313842773 + }, + "Y": { + "type": "float", + "value": 7.417542934417725 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2942 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813731 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812920 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2597 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES023" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues023" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 57.39273071289063 + }, + "Y": { + "type": "float", + "value": 4.503067970275879 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2942 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813731 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812920 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2597 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES023" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues023" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 52.45950698852539 + }, + "Y": { + "type": "float", + "value": 4.550670146942139 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2942 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.14153003692627 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813731 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812920 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2597 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES023" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues023" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 52.28035354614258 + }, + "Y": { + "type": "float", + "value": 45.54056549072266 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2942 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14153003692627 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813731 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812920 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2597 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES023" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues023" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 57.66348648071289 + }, + "Y": { + "type": "float", + "value": 45.53207397460938 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 157 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14662 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5800 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_lamp_wt" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 515 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "InvisibleObject" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_invisobj" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 54.96628952026367 + }, + "Y": { + "type": "float", + "value": 25.01220703125 + }, + "Z": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 437 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 920 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 28.01120567321777 + }, + "Y": { + "type": "float", + "value": 29.84312438964844 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 22 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141533851623535 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This lever initiates an arena cleanup. Such a cleanup will remove corpses and their inventories and any items on the ground. Certain plot items will not be removed if on the ground or in an inventory.", + "id": 14632 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Arena Cleaner", + "id": 14633 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "clean_arena" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 380 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FloorLever1" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_flrlever1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 27.97997283935547 + }, + "Y": { + "type": "float", + "value": 29.82596778869629 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 10 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141534805297852 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Arena Token Refunder\n==================\n\nNeed a refund?\nNo one buying tokens?\nSimply put them in the chest and whalla! Your $$ refunded.\n\n\n*** Hint: Sell Gold Tokens to buy Silver ones and vica versa! ***", + "id": 14597 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Token Refunder", + "id": 5348 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "token_refund" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 368 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Chest4" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_chest4" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 11.37145519256592 + }, + "Y": { + "type": "float", + "value": 19.00294303894043 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 10 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141536474227905 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Item Dulplicator\n============\n\nMainly for two weapon fighters who wish to have a pair without having to fight a ridiculous number of bouts to get them. Also for duellers who wish to settle disputes using the same weapon so as to prevent weapon advantage over character advantage.\n\nCost: 1 Gold Arena Token per item.\n\n* Only one item at a time may be duplicated. \n\n* Don't even bother trying to duplicate rings or tokens.\n\n* Arrows and Bolts do not require a token.", + "id": 14597 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Duplicator", + "id": 5348 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "copy_item4" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 368 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Chest4" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_chest4" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 13.37379550933838 + }, + "Y": { + "type": "float", + "value": 19.0229549407959 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 7 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14594 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Storage Chest", + "id": 5348 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 365 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "tomb_chest" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_chest1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 52.42067337036133 + }, + "Y": { + "type": "float", + "value": 44.37960052490234 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 7 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14594 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Storage Chest", + "id": 5348 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 365 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "tomb_chest2" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_chest1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 57.60383987426758 + }, + "Y": { + "type": "float", + "value": 44.36692047119141 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2427 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The Rank Registry\n===============\n\nClick on this registry to store your rank, deity (if you selected one here), hit%, average damage, deaths/kills, your progress in the arena and export your character. When you next return, these stats will be retained.", + "id": 16813650 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "AOC Player Registry", + "id": 16811674 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "storescore" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 480 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "rankregistry" + }, + "TemplateResRef": { + "type": "resref", + "value": "rankregistry" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.283751487731934 + }, + "Y": { + "type": "float", + "value": 20.7349967956543 + }, + "Z": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 437 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84175 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84166 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 920 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_RUNEP_2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_runep_2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.351223945617676 + }, + "Y": { + "type": "float", + "value": 20.70700836181641 + }, + "Z": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 467 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Use this console to toggle between the scoring modes.\n\nModes\n=====\n\nArena Mode: scoreboard will display the player's name, kills/deaths and rank.\n\nHoly War Mode: scoreboard will display the standings between heaven and hell. \n\n", + "id": 84584 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Score Console", + "id": 84569 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "score_switch" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1003 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "scoreswitch" + }, + "TemplateResRef": { + "type": "resref", + "value": "debuggingconsol" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 72.47637939453125 + }, + "Y": { + "type": "float", + "value": 24.81918716430664 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 143 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This board will display the damage taken and dealt by each member of the army of darkness. You need to unlock the [Holy War] feature in order to use this board. \n\nDefeat the final challenger in [Deathmatch Mode] to unlock the [Holy War] feature. ", + "id": 14566 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Scoreboard of Darkness", + "id": 14561 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "monster_damage" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 501 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MerchantsShingle6" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_billboard6" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 73.26435089111328 + }, + "Y": { + "type": "float", + "value": 15.00307273864746 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 143 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This board will display the damage taken and dealt by each member of the army of light. You need to unlock the [Holy War] feature in order to use this board. \n\nDefeat the final challenger in [Deathmatch Mode] to unlock the [Holy War] feature. ", + "id": 14566 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Scoreboard of Light", + "id": 14561 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "hero_damage" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 501 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MerchantsShingle6" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_billboard6" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 73.29512023925781 + }, + "Y": { + "type": "float", + "value": 34.98576736450195 + }, + "Z": { + "type": "float", + "value": 0.201693058013916 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 49 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Here you can get replacement data tickets if you accidently purge them from your inventory.", + "id": 14555 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Ticket Barrel", + "id": 5691 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "ticket_refund" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 407 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_Barrel" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_barrel" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 3.724418878555298 + }, + "Y": { + "type": "float", + "value": 24.45952606201172 + }, + "Z": { + "type": "float", + "value": 0.2100000232458115 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 45 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14543 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14541 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 403 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_altrneutral" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 39.19219207763672 + }, + "Y": { + "type": "float", + "value": 44.73356628417969 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 45 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14543 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14541 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 403 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_altrneutral" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 37.4894905090332 + }, + "Y": { + "type": "float", + "value": 44.66445922851563 + }, + "Z": { + "type": "float", + "value": 0.2000001221895218 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 45 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14543 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14541 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 403 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_altrneutral" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 36.3017578125 + }, + "Y": { + "type": "float", + "value": 44.66169738769531 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2386 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14156699180603 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813669 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811072 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 488 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_SIGN001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_sign001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 37.68849182128906 + }, + "Y": { + "type": "float", + "value": 48.00022506713867 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2386 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813669 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811072 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 488 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_SIGN001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_sign001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 38.88787078857422 + }, + "Y": { + "type": "float", + "value": 47.99384689331055 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2964 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810985 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812770 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 480 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_ORISIGN002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_orisign002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 36.07866668701172 + }, + "Y": { + "type": "float", + "value": 44.30345153808594 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2964 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810985 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812770 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 480 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_ORISIGN002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_orisign002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 39.69828033447266 + }, + "Y": { + "type": "float", + "value": 44.35256576538086 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 140 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Welcome to the Arena of Champions Tote. Place your bets with our bookie or purchase an AOC life insurance policy. Refunds availible.\n\nWe reserve the right not to be held responsible for loss of capital due to gambling. Thankyou for your business and have a nice day.", + "id": 14563 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "AOC Tote", + "id": 14561 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 498 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MerchantsShingle3" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_billboard3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 38.85953903198242 + }, + "Y": { + "type": "float", + "value": 47.61261367797852 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2972 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This board displays a player's gambling statistics.", + "id": 16810855 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Gambler's Board", + "id": 16812398 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "gamble_board" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_NOTICEBRD001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_noticebrd001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 36.12313461303711 + }, + "Y": { + "type": "float", + "value": 39.66365432739258 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2498 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810921 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811198 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2421 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_BOOK003" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_book003" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 38.02058029174805 + }, + "Y": { + "type": "float", + "value": 44.71344375610352 + }, + "Z": { + "type": "float", + "value": 1.255873084068298 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2335 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 50 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810937 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 50 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812676 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2639 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_SAFE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_safe001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMIOPEN" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 37.53153610229492 + }, + "Y": { + "type": "float", + "value": 48.02326583862305 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 2225 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813798 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812688 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "dynamic_braz3" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2409 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_SCONCE002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_sconce002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "YELLOW_10" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_osconce002" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 39.76259231567383 + }, + "Y": { + "type": "float", + "value": 45.98706817626953 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2504 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 2 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 0 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 2 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811356 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "zep_torchspawn" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_torch" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CANDLE03" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_candle03" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "ORANGE_5" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_ocandle03" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 37.32566452026367 + }, + "Y": { + "type": "float", + "value": 44.56475830078125 + }, + "Z": { + "type": "float", + "value": 1.234167695045471 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2504 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 2 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 0 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 2 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811356 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "zep_torchspawn" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_torch" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CANDLE03" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_candle03" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "ORANGE_5" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_ocandle03" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 38.69768142700195 + }, + "Y": { + "type": "float", + "value": 44.5819206237793 + }, + "Z": { + "type": "float", + "value": 1.253565073013306 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 320 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68894 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_ruglarge" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.23008537292481 + }, + "Y": { + "type": "float", + "value": 36.87550735473633 + }, + "Z": { + "type": "float", + "value": 4.76837158203125e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2344 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.374445199966431 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810848 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813526 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 516 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_LIGHTSHFT007" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_lightshft007" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.87742233276367 + }, + "Y": { + "type": "float", + "value": 24.64043235778809 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 300 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68964 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Heavy Grate", + "id": 68963 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "grate_port" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 760 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "aoc_grate" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_woodgrate" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.81325912475586 + }, + "Y": { + "type": "float", + "value": 43.30056381225586 + }, + "Z": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 138 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The Underground Shrine\n===================\n\nThis is a sacred place where arena challengers often retreat to pay their respects to their deity. The shrine was built from a celestial rock that fell from the heavens and is believed to posess a supernatural power that magnifies thought, and thus enables a greater connection between the user and their deity.", + "id": 14560 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "The Underground Shrine", + "id": 14561 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 496 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MerchantsShingle1" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_billboard1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 22.82246971130371 + }, + "Y": { + "type": "float", + "value": 44.71663284301758 + }, + "Z": { + "type": "float", + "value": 0.209996908903122 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 447 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "As you gaze into the mirror, you are astonished as you look not only at yourself, but inside yourself as well.", + "id": 84186 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 10 + }, + "Hardness": { + "type": "byte", + "value": 0 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Enchanted Mirror", + "id": 83444 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "examine_self" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 930 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "mirrorofseeing" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_mirror" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 29.46745109558106 + }, + "Y": { + "type": "float", + "value": 35.70315170288086 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 1000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 500 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67813 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 20.0 + }, + "MinDistance": { + "type": "float", + "value": 2.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp4" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "crowd_4" + }, + "TemplateResRef": { + "type": "resref", + "value": "cheerscommonergr" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 56.28916549682617 + }, + "YPosition": { + "type": "float", + "value": 24.96824645996094 + }, + "ZPosition": { + "type": "float", + "value": 1.50001072883606 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 1200 + }, + "IntervalVrtn": { + "type": "dword", + "value": 600 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67814 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_cheeringm1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_cheeringm2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_cheeringm3" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "crowd_2" + }, + "TemplateResRef": { + "type": "resref", + "value": "cheersmenoutside" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 55.91877746582031 + }, + "YPosition": { + "type": "float", + "value": 23.81323051452637 + }, + "ZPosition": { + "type": "float", + "value": 1.50001072883606 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 3.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 2000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 1000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67815 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 20.0 + }, + "MinDistance": { + "type": "float", + "value": 2.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp4" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "crowd_3" + }, + "TemplateResRef": { + "type": "resref", + "value": "cheersnoblegroup" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 53.09829330444336 + }, + "YPosition": { + "type": "float", + "value": 25.09109306335449 + }, + "ZPosition": { + "type": "float", + "value": 3.00001072883606 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 3000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 2000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67876 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 20.0 + }, + "MinDistance": { + "type": "float", + "value": 2.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_laughingm1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_laughingm2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_laughingm3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_laughingm4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_laughingm5" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "crowd_1" + }, + "TemplateResRef": { + "type": "resref", + "value": "laughsmen" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 56.75098037719727 + }, + "YPosition": { + "type": "float", + "value": 23.03056716918945 + }, + "ZPosition": { + "type": "float", + "value": 1.50001072883606 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67805 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_bushmove1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_bushmove2" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "BushRustles" + }, + "TemplateResRef": { + "type": "resref", + "value": "bushrustles" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 26.0793514251709 + }, + "YPosition": { + "type": "float", + "value": 13.94359493255615 + }, + "ZPosition": { + "type": "float", + "value": 1.500009536743164 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68020 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_waterpool1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WaterPoolSmall" + }, + "TemplateResRef": { + "type": "resref", + "value": "waterpoolsmall" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 18.43977928161621 + }, + "YPosition": { + "type": "float", + "value": 18.13614845275879 + }, + "ZPosition": { + "type": "float", + "value": 1.49999988079071 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68020 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_waterpool1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WaterPoolSmall" + }, + "TemplateResRef": { + "type": "resref", + "value": "waterpoolsmall" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 18.23728561401367 + }, + "YPosition": { + "type": "float", + "value": 11.32890892028809 + }, + "ZPosition": { + "type": "float", + "value": 1.49999988079071 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68012 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_drips1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WaterDrippingLoop" + }, + "TemplateResRef": { + "type": "resref", + "value": "waterdrippingloo" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 18.47976875305176 + }, + "YPosition": { + "type": "float", + "value": 18.05723762512207 + }, + "ZPosition": { + "type": "float", + "value": 1.5 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68012 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_drips1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WaterDrippingLoop" + }, + "TemplateResRef": { + "type": "resref", + "value": "waterdrippingloo" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 17.97808837890625 + }, + "YPosition": { + "type": "float", + "value": 11.60664176940918 + }, + "ZPosition": { + "type": "float", + "value": 1.50000011920929 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68033 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_wt_gustsoft1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WindGustSoft" + }, + "TemplateResRef": { + "type": "resref", + "value": "windgustsoft" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 25.09760665893555 + }, + "YPosition": { + "type": "float", + "value": 14.3228759765625 + }, + "ZPosition": { + "type": "float", + "value": 1.5 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "FireSmolder" + }, + "TemplateResRef": { + "type": "resref", + "value": "firesmolder" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 33.45240783691406 + }, + "YPosition": { + "type": "float", + "value": 29.97380447387695 + }, + "ZPosition": { + "type": "float", + "value": 1.5 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "FireSmolder" + }, + "TemplateResRef": { + "type": "resref", + "value": "firesmolder" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 33.14265441894531 + }, + "YPosition": { + "type": "float", + "value": 19.2674503326416 + }, + "ZPosition": { + "type": "float", + "value": 1.5 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67895 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 6.0 + }, + "MinDistance": { + "type": "float", + "value": 0.6000000238418579 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_mg_crystalgd1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "gcsound2" + }, + "TemplateResRef": { + "type": "resref", + "value": "mcgood" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 55.12485122680664 + }, + "YPosition": { + "type": "float", + "value": 12.94838905334473 + }, + "ZPosition": { + "type": "float", + "value": 2.649991512298584 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67895 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 5.0 + }, + "MinDistance": { + "type": "float", + "value": 0.5 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_mg_crystalgd1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "MagicCrystalGood" + }, + "TemplateResRef": { + "type": "resref", + "value": "magiccrystalgood" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 29.8333740234375 + }, + "YPosition": { + "type": "float", + "value": 37.16923141479492 + }, + "ZPosition": { + "type": "float", + "value": 1.499999761581421 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 4000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 2000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67953 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 6.0 + }, + "MinDistance": { + "type": "float", + "value": 0.6000000238418579 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_cv_sewermisc1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_cv_sewermisc2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_cv_sewermisc3" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "SewerGloops" + }, + "TemplateResRef": { + "type": "resref", + "value": "sewergloops001" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 36.887451171875 + }, + "YPosition": { + "type": "float", + "value": 29.9146785736084 + }, + "ZPosition": { + "type": "float", + "value": 1.5 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 4000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 2000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "smallgloop", + "id": 67953 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 6.0 + }, + "MinDistance": { + "type": "float", + "value": 0.6000000238418579 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_cv_sewermisc1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_cv_sewermisc2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_cv_sewermisc3" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "smallgloop" + }, + "TemplateResRef": { + "type": "resref", + "value": "sewergloops001" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 36.6879997253418 + }, + "YPosition": { + "type": "float", + "value": 20.12179565429688 + }, + "ZPosition": { + "type": "float", + "value": 1.500009536743164 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 2000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 1000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68033 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 4.0 + }, + "MinDistance": { + "type": "float", + "value": 0.4000000059604645 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_wt_gustsoft1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WindGustSoft" + }, + "TemplateResRef": { + "type": "resref", + "value": "windgustsoft001" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 55.13314437866211 + }, + "YPosition": { + "type": "float", + "value": 35.01506423950195 + }, + "ZPosition": { + "type": "float", + "value": 2.250322341918945 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 2000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 1000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "smallwind", + "id": 68033 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 4.0 + }, + "MinDistance": { + "type": "float", + "value": 0.4000000059604645 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_wt_gustsoft1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "smallwind" + }, + "TemplateResRef": { + "type": "resref", + "value": "windgustsoft001" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 55.04361343383789 + }, + "YPosition": { + "type": "float", + "value": 14.88783264160156 + }, + "ZPosition": { + "type": "float", + "value": 2.249998092651367 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68012 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_drips1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WaterDrippingLoop" + }, + "TemplateResRef": { + "type": "resref", + "value": "waterdrippingloo" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 70.31964111328125 + }, + "YPosition": { + "type": "float", + "value": 28.00557899475098 + }, + "ZPosition": { + "type": "float", + "value": 1.501693248748779 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68012 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_drips1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WaterDrippingLoop" + }, + "TemplateResRef": { + "type": "resref", + "value": "waterdrippingloo" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 70.11998748779297 + }, + "YPosition": { + "type": "float", + "value": 21.59701728820801 + }, + "ZPosition": { + "type": "float", + "value": 1.501693248748779 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B2" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire001" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 49.97402572631836 + }, + "YPosition": { + "type": "float", + "value": 42.95740509033203 + }, + "ZPosition": { + "type": "float", + "value": 1.701693058013916 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B10" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire002" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 49.86869049072266 + }, + "YPosition": { + "type": "float", + "value": 6.93720817565918 + }, + "ZPosition": { + "type": "float", + "value": 1.701693058013916 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B4" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire003" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 40.15546798706055 + }, + "YPosition": { + "type": "float", + "value": 6.987895011901856 + }, + "ZPosition": { + "type": "float", + "value": 1.701693058013916 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B5" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire004" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 36.69103240966797 + }, + "YPosition": { + "type": "float", + "value": 17.39643478393555 + }, + "ZPosition": { + "type": "float", + "value": 1.5 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B6" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire005" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 36.62102890014648 + }, + "YPosition": { + "type": "float", + "value": 32.50600051879883 + }, + "ZPosition": { + "type": "float", + "value": 1.5 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67895 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 6.0 + }, + "MinDistance": { + "type": "float", + "value": 0.6000000238418579 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_mg_crystalgd1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "gcsound" + }, + "TemplateResRef": { + "type": "resref", + "value": "mcgood" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 55.01322937011719 + }, + "YPosition": { + "type": "float", + "value": 36.79261016845703 + }, + "ZPosition": { + "type": "float", + "value": 2.649991512298584 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B7" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire006" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 73.24196624755859 + }, + "YPosition": { + "type": "float", + "value": 29.92918395996094 + }, + "ZPosition": { + "type": "float", + "value": 1.701693058013916 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B8" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire007" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 73.2022705078125 + }, + "YPosition": { + "type": "float", + "value": 20.08493423461914 + }, + "ZPosition": { + "type": "float", + "value": 1.701693058013916 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 266305 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "bell" + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.1000000014901161 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_cv_belltower3" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "bell" + }, + "TemplateResRef": { + "type": "resref", + "value": "bell" + }, + "Times": { + "type": "byte", + "value": 0 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 22.61784934997559 + }, + "YPosition": { + "type": "float", + "value": 24.83196449279785 + }, + "ZPosition": { + "type": "float", + "value": 0.9999998807907105 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67899 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 4.0 + }, + "MinDistance": { + "type": "float", + "value": 0.4000000059604645 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_mg_sourceston" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "MagicCrystalSourcestone" + }, + "TemplateResRef": { + "type": "resref", + "value": "magiccrystals001" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 18.84431457519531 + }, + "YPosition": { + "type": "float", + "value": 24.57673645019531 + }, + "ZPosition": { + "type": "float", + "value": 1.500009536743164 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B9" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire002" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 59.99477005004883 + }, + "YPosition": { + "type": "float", + "value": 42.79270935058594 + }, + "ZPosition": { + "type": "float", + "value": 1.699999928474426 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B3" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire002" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 69.81623840332031 + }, + "YPosition": { + "type": "float", + "value": 7.349164009094238 + }, + "ZPosition": { + "type": "float", + "value": 1.700000047683716 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B11" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire002" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 73.18414306640625 + }, + "YPosition": { + "type": "float", + "value": 10.03699684143066 + }, + "ZPosition": { + "type": "float", + "value": 1.701693058013916 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B12" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire002" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 72.78257751464844 + }, + "YPosition": { + "type": "float", + "value": 39.61481094360352 + }, + "ZPosition": { + "type": "float", + "value": 1.701693058013916 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B13" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire002" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 69.69065856933594 + }, + "YPosition": { + "type": "float", + "value": 42.76525115966797 + }, + "ZPosition": { + "type": "float", + "value": 1.701693058013916 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67858 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_firesmldr1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "B14" + }, + "TemplateResRef": { + "type": "resref", + "value": "fire002" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 59.95661926269531 + }, + "YPosition": { + "type": "float", + "value": 6.90048360824585 + }, + "ZPosition": { + "type": "float", + "value": 1.701693058013916 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 2000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 1000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67813 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp4" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "crowd_5" + }, + "TemplateResRef": { + "type": "resref", + "value": "cheerscommonergr" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 52.85297393798828 + }, + "YPosition": { + "type": "float", + "value": 25.77049064636231 + }, + "ZPosition": { + "type": "float", + "value": 1.50001072883606 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 2000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 1000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67813 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp4" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "crowd_6" + }, + "TemplateResRef": { + "type": "resref", + "value": "cheerscommonergr" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 56.91513824462891 + }, + "YPosition": { + "type": "float", + "value": 24.87962532043457 + }, + "ZPosition": { + "type": "float", + "value": 1.50001072883606 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 2000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 1000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67813 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp4" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "crowd_7" + }, + "TemplateResRef": { + "type": "resref", + "value": "cheerscommonergr" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 54.23602676391602 + }, + "YPosition": { + "type": "float", + "value": 23.23095512390137 + }, + "ZPosition": { + "type": "float", + "value": 1.50001072883606 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 2000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 1000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67813 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp4" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "crowd_8" + }, + "TemplateResRef": { + "type": "resref", + "value": "cheerscommonergr" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 53.68125534057617 + }, + "YPosition": { + "type": "float", + "value": 24.2413444519043 + }, + "ZPosition": { + "type": "float", + "value": 1.50001072883606 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 3.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 2000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 1000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67815 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp4" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "crowd_9" + }, + "TemplateResRef": { + "type": "resref", + "value": "cheersnoblegroup" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 56.18497467041016 + }, + "YPosition": { + "type": "float", + "value": 26.46155166625977 + }, + "ZPosition": { + "type": "float", + "value": 3.00001072883606 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 3.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 3000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 2000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67815 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp4" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "crowd_11" + }, + "TemplateResRef": { + "type": "resref", + "value": "cheersnoblegroup" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 55.42696762084961 + }, + "YPosition": { + "type": "float", + "value": 25.63890075683594 + }, + "ZPosition": { + "type": "float", + "value": 3.00001072883606 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 2000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 1000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67813 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_comyaygrp4" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "crowd_0" + }, + "TemplateResRef": { + "type": "resref", + "value": "cheerscommonergr" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 55.32859802246094 + }, + "YPosition": { + "type": "float", + "value": 24.39291763305664 + }, + "ZPosition": { + "type": "float", + "value": 1.50001072883606 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 3.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 3000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 2000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67815 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_nobyaygrp4" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "crowd_10" + }, + "TemplateResRef": { + "type": "resref", + "value": "cheersnoblegroup" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 54.18935775756836 + }, + "YPosition": { + "type": "float", + "value": 26.89736747741699 + }, + "ZPosition": { + "type": "float", + "value": 3.00001072883606 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 20 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 94 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 20 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 94 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Battle Plate", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 1 + }, + "Metal2Color": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 3 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 3 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 14 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 156 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 14 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 210 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 45 + }, + "Cost": { + "type": "dword", + "value": 158909 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13776 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 44 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Breastplate", + "id": 91014 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_MAARCL040" + }, + "TemplateResRef": { + "type": "resref", + "value": "maarcl041" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 17 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 153 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 156 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 17 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 8 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 153 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 11 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 8 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 98209 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13776 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 22 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Scale Mail", + "id": 91050 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_MDROWAR021" + }, + "TemplateResRef": { + "type": "resref", + "value": "mdrowar022" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 10 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 16 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 112 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 16 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 14 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 44 + }, + "Cloth2Color": { + "type": "byte", + "value": 44 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13776 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 44 + }, + "Leather2Color": { + "type": "byte", + "value": 44 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Holy Plate", + "id": 91021 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_MAARCL048" + }, + "TemplateResRef": { + "type": "resref", + "value": "maarcl049" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 111 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 18 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 16 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 18 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 11 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 16 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 21 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13776 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dark Plate", + "id": 91021 + } + }, + "Metal1Color": { + "type": "byte", + "value": 3 + }, + "Metal2Color": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 62 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_MAARCL048" + }, + "TemplateResRef": { + "type": "resref", + "value": "maarcl050" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 16 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 154 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 16 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 14 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 32 + }, + "Cloth2Color": { + "type": "byte", + "value": 32 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13776 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Crusader Plate", + "id": 91021 + } + }, + "Metal1Color": { + "type": "byte", + "value": 12 + }, + "Metal2Color": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_MAARCL048" + }, + "TemplateResRef": { + "type": "resref", + "value": "maarcl051" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 93 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 122 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 93 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "War Plate", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 3 + }, + "Metal2Color": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 13 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 10 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 157 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 84 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 14 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 10 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 157 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 162 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 84 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 14 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 21 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 45 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 109880 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Axemaster Plate", + "id": 109879 + } + }, + "Metal1Color": { + "type": "byte", + "value": 15 + }, + "Metal2Color": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "BloodPlate" + }, + "TemplateResRef": { + "type": "resref", + "value": "bloodplate001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 151 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 161 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 154 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 155 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 162 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 18 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 151 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 161 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 154 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 155 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 7 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 115 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 162 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 18 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 14 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Heratic Plate ", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 151 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 161 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 154 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 3 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 162 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 18 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 121 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 151 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 161 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 154 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 7 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 112 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 162 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 18 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 14 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Executioner's Plate ", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 151 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 156 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 157 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 3 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 162 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 151 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 156 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 157 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 170 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 162 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 14 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Samurai Plate ", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 150 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 112 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Damage Master's Plate", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 12, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 150 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Matriarch Plate", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 63 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 150 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 65 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 13, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 17 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 113 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 17 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 20 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 44 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Mage Plate", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 14, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 12 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 156 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 12 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 210 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 10 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 19598 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13776 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 50 + }, + "Leather2Color": { + "type": "byte", + "value": 50 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Elite Guard", + "id": 62385 + } + }, + "Metal1Color": { + "type": "byte", + "value": 10 + }, + "Metal2Color": { + "type": "byte", + "value": 10 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_MAARCL016" + }, + "TemplateResRef": { + "type": "resref", + "value": "maarcl017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "armour_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 10.44106483459473 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.66428756713867 + }, + "ZPosition": { + "type": "float", + "value": 9.059906005859375e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 80 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58523 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13803 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Cloak", + "id": 90864 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MCLOAK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mcloak006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "cloak_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 12.32102203369141 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.72086334228516 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 159 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 162 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 82 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 160 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 159 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 159 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 162 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 82 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 160 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 173 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 2 + }, + "Cloth2Color": { + "type": "byte", + "value": 11 + }, + "Cost": { + "type": "dword", + "value": 158760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16807796 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 15 + }, + "Leather2Color": { + "type": "byte", + "value": 3 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Habit", + "id": 16807594 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_MONK" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_monk" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 161 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 14 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 13 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 8 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 161 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 14 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 13 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 155 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 158760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Ninja's Garb", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 3 + }, + "Metal2Color": { + "type": "byte", + "value": 2 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth016" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 112 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 22 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 8 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 22 + }, + "Cloth2Color": { + "type": "byte", + "value": 22 + }, + "Cost": { + "type": "dword", + "value": 158760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Crusader", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 35 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 151 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 158 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 112 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 25 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 158 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 16 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 6 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 45 + }, + "Cost": { + "type": "dword", + "value": 158760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 8 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Shogun's Warsuit", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 12 + }, + "Metal2Color": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 150 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth018" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 10 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 12 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 112 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 12 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 157 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 22 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 158760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Fighter's Garb", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 1 + }, + "Metal2Color": { + "type": "byte", + "value": 2 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth021" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 153 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 156 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 82 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 160 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 159 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 156 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 82 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 6 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 160 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 119 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 45 + }, + "Cost": { + "type": "dword", + "value": 158760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Pilgrim Combat Robe", + "id": 41002 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "COMCL001" + }, + "TemplateResRef": { + "type": "resref", + "value": "comcl002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 82 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 160 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 159 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 82 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 160 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 173 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 44 + }, + "Cost": { + "type": "dword", + "value": 158760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13855 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Pale Habit", + "id": 95070 + } + }, + "Metal1Color": { + "type": "byte", + "value": 25 + }, + "Metal2Color": { + "type": "byte", + "value": 24 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 34 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "darklordsrobes" + }, + "TemplateResRef": { + "type": "resref", + "value": "mcloth010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 152 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 11 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 112 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 8 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 11 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 163 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 44 + }, + "Cost": { + "type": "dword", + "value": 158760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "White Armour", + "id": 12913 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 62 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH012" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth025" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 14 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 14 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 150 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 28 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 14 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 170 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 14 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 11 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 176 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 45 + }, + "Cost": { + "type": "dword", + "value": 158760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13855 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Heratic Robe", + "id": 95070 + } + }, + "Metal1Color": { + "type": "byte", + "value": 25 + }, + "Metal2Color": { + "type": "byte", + "value": 24 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 62 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "darklordsrobes" + }, + "TemplateResRef": { + "type": "resref", + "value": "mcloth011" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 156 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 164 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 3 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 84 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 113 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 24 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 156 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 164 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 8 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 84 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 5 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 158760 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Disciple's Robe", + "id": 107943 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "q3_deva_robes" + }, + "TemplateResRef": { + "type": "resref", + "value": "q3_deva_robes001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 156 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 3 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 3 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 84 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 121 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 24 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 156 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 7 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 112 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 84 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 5 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 158760 + }, + "Cursed": { + "type": "byte", + "value": 1 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Executioner's Suit", + "id": 107943 + } + }, + "Metal1Color": { + "type": "byte", + "value": 1 + }, + "Metal2Color": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "q3_deva_robes" + }, + "TemplateResRef": { + "type": "resref", + "value": "q3_deva_robes002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 17 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 113 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 17 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 20 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 6 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 158760 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Mage Robes", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 6 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "robe_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 14.07292747497559 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.74497985839844 + }, + "ZPosition": { + "type": "float", + "value": 9.059906005859375e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "close" + }, + "ResRef": { + "type": "resref", + "value": "belts_boots" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 34929 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67472 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Boots of the Sun Soul", + "id": 67471 + } + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS022" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mboots022" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 36001 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Agility Belt", + "id": 90830 + } + }, + "ModelPart1": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MBELT003" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mbelt003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5761 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13323 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Strength Belt", + "id": 13333 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBELT008" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbelt008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 25101 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67778 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "War Boots", + "id": 67780 + } + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "ModelPart2": { + "type": "byte", + "value": 21 + }, + "ModelPart3": { + "type": "byte", + "value": 31 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS017" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots020" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "boot_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 16.17108917236328 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.69680404663086 + }, + "ZPosition": { + "type": "float", + "value": 0.01000047661364079 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "close" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 5339 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Steel Circlet", + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 6 + }, + "Metal2Color": { + "type": "byte", + "value": 1 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_armhe010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 5339 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Iron Circlet", + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 3 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 25 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_armhe010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 36 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12961 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67782 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Strength Gloves", + "id": 67783 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBRACER013" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbracer013" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 78 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 6813 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13351 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Bracers of Armor", + "id": 90846 + } + }, + "ModelPart1": { + "type": "byte", + "value": 5 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MBRACER001" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mbracer001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 78 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12961 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13349 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Bracers of Dexterity", + "id": 90851 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MBRACER006" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mbracer006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 36 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 40641 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67481 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Monk's Gloves", + "id": 90875 + } + }, + "ModelPart1": { + "type": "byte", + "value": 55 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MGLOVE007" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mglove008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 52 + }, + "Cost": { + "type": "dword", + "value": 362 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Black Hood", + "id": 90531 + } + }, + "Metal1Color": { + "type": "byte", + "value": 24 + }, + "Metal2Color": { + "type": "byte", + "value": 24 + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adahelm" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adahelm002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "helm_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 17.62189865112305 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.53383636474609 + }, + "ZPosition": { + "type": "float", + "value": 9.059906005859375e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "close" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12321 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13381 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Amulet of Natural Armor", + "id": 90916 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK021" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mneck021" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 23041 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13393 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Periapt of Wisdom", + "id": 90901 + } + }, + "ModelPart1": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mneck006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 23041 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13393 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Periapt of Charisma", + "id": 90901 + } + }, + "ModelPart1": { + "type": "byte", + "value": 2 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mneck008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 23041 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13393 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Periapt of Intelligence", + "id": 90901 + } + }, + "ModelPart1": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mneck007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 16699 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Charisma Ring", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 104 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring025" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 16699 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dexterity Ring", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 89 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring027" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 16699 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Strength Ring", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 123 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 16699 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Wisdom Ring", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 72 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring024" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 16699 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Constitution Ring", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 61 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring028" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 23041 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13393 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Periapt of Constitution", + "id": 90901 + } + }, + "ModelPart1": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MNECK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mneck009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 498 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 16699 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Intelligence Ring", + "id": 13485 + } + }, + "ModelPart1": { + "type": "byte", + "value": 63 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING023" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring274" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "ring_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 19.59521102905273 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.61485290527344 + }, + "ZPosition": { + "type": "float", + "value": 9.059906005859375e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 219 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_ashmto004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 67 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 51 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 55 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 54 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 59 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 62 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 63 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 74 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 85 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 87 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 12, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 104 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 13, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 105 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 14, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 106 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 15, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 109 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 14 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 134 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 14 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 17, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 118 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 14 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 18, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 122 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 14 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 19, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 151 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 14 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 20, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 193 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 20 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 21, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 192 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 20 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 22, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 194 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 20 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 23, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 205 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 20 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 24, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 196 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 20 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 25, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19548 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield", + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 229 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 24 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 26, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 56 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58572 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 1550 + } + }, + "ModelPart1": { + "type": "byte", + "value": 142 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 24 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHLW001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashlw002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 27, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 56 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58572 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 1550 + } + }, + "ModelPart1": { + "type": "byte", + "value": 200 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 24 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHLW001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashlw002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 28, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 56 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58572 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 1550 + } + }, + "ModelPart1": { + "type": "byte", + "value": 253 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 24 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHLW001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashlw002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 29, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 56 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58572 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 1550 + } + }, + "ModelPart1": { + "type": "byte", + "value": 230 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 24 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHLW001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashlw002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "shield_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 21.47542762756348 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.72039031982422 + }, + "ZPosition": { + "type": "float", + "value": 0.001693248748779297 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 51 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242040 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Rapier", + "id": 91278 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMRP004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmrp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 40 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242004 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Kama", + "id": 91238 + } + }, + "ModelPart1": { + "type": "byte", + "value": 12 + }, + "ModelPart2": { + "type": "byte", + "value": 14 + }, + "ModelPart3": { + "type": "byte", + "value": 14 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSPMKA004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wspmka006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 0 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242020 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14403 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Short Sword", + "id": 91286 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 42 + }, + "ModelPart3": { + "type": "byte", + "value": 61 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMSS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmss005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 42 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242016 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Kukri", + "id": 91242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 12 + }, + "ModelPart2": { + "type": "byte", + "value": 12 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSPMKU004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wspmku004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 60 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242012 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Sickle", + "id": 91246 + } + }, + "ModelPart1": { + "type": "byte", + "value": 12 + }, + "ModelPart2": { + "type": "byte", + "value": 12 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSPMSC004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wspmsc004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 111 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242002 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90996 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Whip", + "id": 90995 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_WPMWHIP_H" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_wpmwhip_h" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 22 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242004 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dagger", + "id": 91255 + } + }, + "ModelPart1": { + "type": "byte", + "value": 213 + }, + "ModelPart2": { + "type": "byte", + "value": 223 + }, + "ModelPart3": { + "type": "byte", + "value": 222 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMDG004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wswmdg004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 47 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242016 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Morningstar", + "id": 91143 + } + }, + "ModelPart1": { + "type": "byte", + "value": 14 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WBLMMS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wblmms004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 38 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242012 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13931 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Handaxe", + "id": 91111 + } + }, + "ModelPart1": { + "type": "byte", + "value": 44 + }, + "ModelPart2": { + "type": "byte", + "value": 41 + }, + "ModelPart3": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WAXMHN004" + }, + "TemplateResRef": { + "type": "resref", + "value": "waxmhn005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "light_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 9.295697212219238 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 36.23161697387695 + }, + "ZPosition": { + "type": "float", + "value": 9.179115295410156e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "nordock_med_w" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 1 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242030 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Longsword", + "id": 91270 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 62 + }, + "ModelPart3": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMLS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmls005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 41 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242080 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Katana", + "id": 91264 + } + }, + "ModelPart1": { + "type": "byte", + "value": 251 + }, + "ModelPart2": { + "type": "byte", + "value": 244 + }, + "ModelPart3": { + "type": "byte", + "value": 252 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMKA004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmka005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 3 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242070 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Bastard Sword", + "id": 91250 + } + }, + "ModelPart1": { + "type": "byte", + "value": 44 + }, + "ModelPart2": { + "type": "byte", + "value": 182 + }, + "ModelPart3": { + "type": "byte", + "value": 153 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMBS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmbs005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 108 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242060 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dwarven Waraxe", + "id": 91216 + } + }, + "ModelPart1": { + "type": "byte", + "value": 62 + }, + "ModelPart2": { + "type": "byte", + "value": 54 + }, + "ModelPart3": { + "type": "byte", + "value": 72 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WMDWRAXE008" + }, + "TemplateResRef": { + "type": "resref", + "value": "wmdwraxe009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 316 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 252965 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 16807436 + } + }, + "ModelPart1": { + "type": "byte", + "value": 111 + }, + "ModelPart2": { + "type": "byte", + "value": 111 + }, + "ModelPart3": { + "type": "byte", + "value": 111 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_XSWFA_001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_xswfa_001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 9 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2010 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Mace", + "id": 91139 + } + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WBLMML004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wblmml004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 53 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242030 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Scimitar", + "id": 91282 + } + }, + "ModelPart1": { + "type": "byte", + "value": 52 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMSC004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wswmsc004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 4 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242016 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Light Flail", + "id": 91123 + } + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WBLMFL004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wblmfl004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 28 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242002 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Club", + "id": 91115 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 14 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WBLMCL004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wblmcl004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "med_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 9.23476505279541 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 34.01830291748047 + }, + "ZPosition": { + "type": "float", + "value": 9.179115295410156e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 13 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Greatsword ", + "id": 91260 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 42 + }, + "ModelPart3": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMGS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmgs005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 13 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 16807816 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16807816 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Nodachi", + "id": 16807608 + } + }, + "ModelPart1": { + "type": "byte", + "value": 191 + }, + "ModelPart2": { + "type": "byte", + "value": 191 + }, + "ModelPart3": { + "type": "byte", + "value": 191 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_NODACHI" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_nodachi001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 318 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 443706 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maul", + "id": 16807582 + } + }, + "ModelPart1": { + "type": "byte", + "value": 182 + }, + "ModelPart2": { + "type": "byte", + "value": 141 + }, + "ModelPart3": { + "type": "byte", + "value": 152 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_XBLMA_003" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_xblma_005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 35 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242030 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Heavy Flail", + "id": 91119 + } + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 31 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WBLMFH004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wblmfh004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 18 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242040 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Greataxe", + "id": 91107 + } + }, + "ModelPart1": { + "type": "byte", + "value": 42 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 32 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WAXMGR004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_waxmgr004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 2 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242020 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Battleaxe", + "id": 91103 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 42 + }, + "ModelPart3": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WAXMBT004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_waxmbt004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 5 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242024 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Warhammer", + "id": 91133 + } + }, + "ModelPart1": { + "type": "byte", + "value": 14 + }, + "ModelPart2": { + "type": "byte", + "value": 14 + }, + "ModelPart3": { + "type": "byte", + "value": 132 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WBLMHW004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wblmhw004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 32 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242080 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dire Mace", + "id": 91177 + } + }, + "ModelPart1": { + "type": "byte", + "value": 14 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 32 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WDBMMA004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wdbmma004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 33 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242060 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Double Axe", + "id": 91173 + } + }, + "ModelPart1": { + "type": "byte", + "value": 114 + }, + "ModelPart2": { + "type": "byte", + "value": 122 + }, + "ModelPart3": { + "type": "byte", + "value": 113 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WDBMAX004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wdbmax004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 50 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242002 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Quarterstaff", + "id": 91181 + } + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "ModelPart2": { + "type": "byte", + "value": 14 + }, + "ModelPart3": { + "type": "byte", + "value": 234 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WDBMQS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wdbmqs004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 12 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242200 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maul Sabre", + "id": 91189 + } + }, + "ModelPart1": { + "type": "byte", + "value": 24 + }, + "ModelPart2": { + "type": "byte", + "value": 114 + }, + "ModelPart3": { + "type": "byte", + "value": 253 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WDBMSW004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wdbmsw004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 12 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242200 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Jedi Sabre", + "id": 91189 + } + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 252 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WDBMSW004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wdbmsw004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 12, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 12 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242200 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Two-Bladed Sword", + "id": 91189 + } + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 142 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WDBMSW004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wdbmsw004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 13, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 12 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242200 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Flange Polearm", + "id": 91189 + } + }, + "ModelPart1": { + "type": "byte", + "value": 132 + }, + "ModelPart2": { + "type": "byte", + "value": 152 + }, + "ModelPart3": { + "type": "byte", + "value": 242 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WDBMSW004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wdbmsw004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 14, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 10 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242020 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Halberd", + "id": 91226 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 252 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 10 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WPLMHB004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wplmhb004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 15, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 55 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242036 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Scythe", + "id": 91230 + } + }, + "ModelPart1": { + "type": "byte", + "value": 24 + }, + "ModelPart2": { + "type": "byte", + "value": 252 + }, + "ModelPart3": { + "type": "byte", + "value": 34 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 15 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WPLMSC004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wplmsc004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 58 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 242002 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Archilles Spear", + "id": 91234 + } + }, + "ModelPart1": { + "type": "byte", + "value": 252 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WPLMSS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wplmss004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "heavy_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 306 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 9.245750427246094 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 31.6008186340332 + }, + "ZPosition": { + "type": "float", + "value": 9.179115295410156e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 72 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 54 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 53 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPDVSCR102" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_spdvscr102" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1008 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6139 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 792 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 86 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPDVSCR404" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_spdvscr404" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 960 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 3858 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 3857 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 455 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPDVSCR501" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_spdvscr501" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 216 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6097 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 751 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 7 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPDVSCR201" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_spdvscr201" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 540 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6227 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 883 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 211 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPDVSCR312" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_spdvscr312" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 72 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 509 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 55 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 346 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPARSCR104" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_sparscr104" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 3277 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6538 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 6338 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 321 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPDVSCR701" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_spdvscr701" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 540 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 3770 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 3769 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 512 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPARSCR304" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_sparscr304" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 960 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 3854 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 3853 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 454 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPARSCR501" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_sparscr501" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 4322 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 1489 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 382 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 354 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPDVSCR803" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_spdvscr803" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 540 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6107 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 761 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 20 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPDVSCR307" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_spdvscr307" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2377 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6110 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13618 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR607" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr607" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 12, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 540 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6155 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13576 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 108 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR309" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr309" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 13, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1008 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6158 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 811 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 115 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPDVSCR403" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_spdvscr403" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 14, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2377 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 2376 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 66671 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 379 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPARSCR603" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_sparscr603" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 15, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 540 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6198 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13577 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 164 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR310" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr310" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5510 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13647 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 187 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR906" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr906" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 17, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 216 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6260 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13657 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 254 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPDVSCR204" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_spdvscr204" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 18, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 216 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6523 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13553 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 281 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR204" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr204" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 19, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 216 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6212 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13551 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 184 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR202" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr202" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 20, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 540 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 3870 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 3869 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 461 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPARSCR301" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_sparscr301" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 21, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2377 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6096 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13614 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR603" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr603" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 22, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 24 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 1496 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 383 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 355 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPARSCR002" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_sparscr002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "scroll_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.13169860839844 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.27727890014648 + }, + "ZPosition": { + "type": "float", + "value": 9.179115295410156e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 72 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 1064 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 340 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 352 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 7 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPDVSCR107" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_spdvscr107" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2377 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6535 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 6335 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 311 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPARSCR503" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_sparscr503" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 72 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 521 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 58 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 349 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPDVSCR103" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_spdvscr103" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1621 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6498 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13619 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 195 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR608" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr608" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 216 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6217 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13557 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 192 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR208" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr208" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2377 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6162 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13612 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 121 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR601" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr601" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 3277 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 2371 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 2364 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 374 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPDVSCR602" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_spdvscr602" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5510 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6170 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13653 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 130 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR912" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr912" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2377 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6171 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13624 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 131 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR613" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr613" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10807 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 2681 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 2682 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 410 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPARSCR303" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_sparscr303" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 23774 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6176 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 829 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 139 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPDVSCR605" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_spdvscr605" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10087 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6185 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13589 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 149 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR408" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr408" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 12, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5403 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6188 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 841 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 152 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 7 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPDVSCR310" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_spdvscr310" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 13, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 723 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6199 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13541 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 167 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR104" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr104" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 14, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5403 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6494 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13569 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 286 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR302" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr302" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 15, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5403 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 3772 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 3771 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 481 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPDVSCR304" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_spdvscr304" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10087 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 2673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 2674 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 386 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 7 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPDVSCR402" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_spdvscr402" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 17, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 43221 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6211 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 864 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 183 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPDVSCR801" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_spdvscr801" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 18, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 9604 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 3875 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 3874 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 463 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPDVSCR502" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_spdvscr502" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 19, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 43221 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6228 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13640 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR808" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr808" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 20, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 723 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6791 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13539 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 284 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR102" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr102" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 21, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5403 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6239 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13658 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 229 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPDVSCR301" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_spdvscr301" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 22, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5403 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6240 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13583 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 230 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR402" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr402" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 23, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 32778 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6247 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13664 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 239 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPDVSCR702" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_spdvscr702" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 24, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 32778 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6253 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 910 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 246 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPARSCR703" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_sparscr703" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 25, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 723 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 513 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 57 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 348 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPARSCR103" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_sparscr103" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 26, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 723 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 2665 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 2666 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 381 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X1_IT_SPDVSCR105" + }, + "TemplateResRef": { + "type": "resref", + "value": "x1_it_spdvscr105" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 27, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 16210 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6261 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 918 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 255 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPDVSCR507" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_spdvscr507" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 28, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10087 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 6265 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13584 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_SPARSCR403" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_sparscr403" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 29, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 75 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 960 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 3872 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 3871 + } + }, + "ModelPart1": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 462 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_SPARSCR502" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_sparscr502" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "defscroll_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 29.18549728393555 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.11242294311523 + }, + "ZPosition": { + "type": "float", + "value": 9.179115295410156e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 180 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "close" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 5000 + }, + "BaseItem": { + "type": "int", + "value": 44 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 30313 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14173 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Rod of the Phantom", + "id": 14174 + } + }, + "ModelPart1": { + "type": "byte", + "value": 12 + }, + "ModelPart2": { + "type": "byte", + "value": 24 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 196 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WMGRD002" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wmgrd002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 5000 + }, + "BaseItem": { + "type": "int", + "value": 44 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 22297 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14171 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14172 + } + }, + "ModelPart1": { + "type": "byte", + "value": 41 + }, + "ModelPart2": { + "type": "byte", + "value": 21 + }, + "ModelPart3": { + "type": "byte", + "value": 31 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 84 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 123 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WMGMRD005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wmgmrd005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 44 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 30713 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14165 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14166 + } + }, + "ModelPart1": { + "type": "byte", + "value": 21 + }, + "ModelPart2": { + "type": "byte", + "value": 41 + }, + "ModelPart3": { + "type": "byte", + "value": 21 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 239 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WMGMRD002" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wmgmrd002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 45 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 2512516 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 16807875 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16807874 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 16807416 + } + }, + "ModelPart1": { + "type": "byte", + "value": 181 + }, + "ModelPart2": { + "type": "byte", + "value": 181 + }, + "ModelPart3": { + "type": "byte", + "value": 181 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 16 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 150 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_DRAGONCLAWF" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_dragonclawf" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 45 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 2512516 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 16807875 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16807874 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 16807418 + } + }, + "ModelPart1": { + "type": "byte", + "value": 181 + }, + "ModelPart2": { + "type": "byte", + "value": 194 + }, + "ModelPart3": { + "type": "byte", + "value": 181 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 16 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 150 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_DRAGONCLAWM" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_dragonclawm" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 45 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 2701366 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 16807882 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16807867 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 16807472 + } + }, + "ModelPart1": { + "type": "byte", + "value": 253 + }, + "ModelPart2": { + "type": "byte", + "value": 251 + }, + "ModelPart3": { + "type": "byte", + "value": 253 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 16 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 530 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GNARLEDSTAFF" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_gnarledstaff" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 45 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 260126 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 24988 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Matriarch Staff", + "id": 24989 + } + }, + "ModelPart1": { + "type": "byte", + "value": 44 + }, + "ModelPart2": { + "type": "byte", + "value": 224 + }, + "ModelPart3": { + "type": "byte", + "value": 234 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 350 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 183 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 150 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 65 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "M1Q5A09Staff" + }, + "TemplateResRef": { + "type": "resref", + "value": "wmgst002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 45 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 290501 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14175 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Mage Staff", + "id": 14176 + } + }, + "ModelPart1": { + "type": "byte", + "value": 254 + }, + "ModelPart2": { + "type": "byte", + "value": 254 + }, + "ModelPart3": { + "type": "byte", + "value": 251 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 476 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 183 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WMGST002" + }, + "TemplateResRef": { + "type": "resref", + "value": "wmgst005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "wand_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 30.81963539123535 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 33.81245422363281 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5604 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Divine Water" + } + }, + "ModelPart1": { + "type": "byte", + "value": 58 + }, + "ModelPart2": { + "type": "byte", + "value": 42 + }, + "ModelPart3": { + "type": "byte", + "value": 62 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 86 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "failthdrink" + }, + "TemplateResRef": { + "type": "resref", + "value": "faithdrink" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1202 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13440 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13441 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION016" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion016" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 3002 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13420 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13421 + } + }, + "ModelPart1": { + "type": "byte", + "value": 31 + }, + "ModelPart2": { + "type": "byte", + "value": 12 + }, + "ModelPart3": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 204 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION006" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 802 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13418 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13419 + } + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "ModelPart2": { + "type": "byte", + "value": 33 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 402 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13426 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13427 + } + }, + "ModelPart1": { + "type": "byte", + "value": 21 + }, + "ModelPart2": { + "type": "byte", + "value": 12 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 11 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION009" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1202 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13438 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13439 + } + }, + "ModelPart1": { + "type": "byte", + "value": 42 + }, + "ModelPart2": { + "type": "byte", + "value": 73 + }, + "ModelPart3": { + "type": "byte", + "value": 72 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 15 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION015" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion015" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1202 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13436 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13437 + } + }, + "ModelPart1": { + "type": "byte", + "value": 72 + }, + "ModelPart2": { + "type": "byte", + "value": 13 + }, + "ModelPart3": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 25 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION014" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1202 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13422 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13423 + } + }, + "ModelPart1": { + "type": "byte", + "value": 23 + }, + "ModelPart2": { + "type": "byte", + "value": 33 + }, + "ModelPart3": { + "type": "byte", + "value": 22 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 46 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION007" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1202 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13428 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13429 + } + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "ModelPart2": { + "type": "byte", + "value": 12 + }, + "ModelPart3": { + "type": "byte", + "value": 22 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 288 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1202 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13434 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13435 + } + }, + "ModelPart1": { + "type": "byte", + "value": 12 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 21 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 95 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION013" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion013" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1202 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13442 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13443 + } + }, + "ModelPart1": { + "type": "byte", + "value": 52 + }, + "ModelPart2": { + "type": "byte", + "value": 52 + }, + "ModelPart3": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 294 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION017" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 13208 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13432 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13433 + } + }, + "ModelPart1": { + "type": "byte", + "value": 31 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 139 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION012" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion012" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 12, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 13208 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13432 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13433 + } + }, + "ModelPart1": { + "type": "byte", + "value": 31 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 139 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION012" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion012" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 13, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 13208 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13432 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13433 + } + }, + "ModelPart1": { + "type": "byte", + "value": 31 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 139 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION012" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion012" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 14, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 13208 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13432 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13433 + } + }, + "ModelPart1": { + "type": "byte", + "value": 31 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 139 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION012" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion012" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 15, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1202 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13424 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13425 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 21 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 151 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION008" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 402 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90919 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90918 + } + }, + "ModelPart1": { + "type": "byte", + "value": 62 + }, + "ModelPart2": { + "type": "byte", + "value": 21 + }, + "ModelPart3": { + "type": "byte", + "value": 31 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 460 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MPOTION001" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mpotion001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 17, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1202 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13430 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13431 + } + }, + "ModelPart1": { + "type": "byte", + "value": 31 + }, + "ModelPart2": { + "type": "byte", + "value": 13 + }, + "ModelPart3": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 159 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION011" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion011" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 18, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1202 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13444 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13445 + } + }, + "ModelPart1": { + "type": "byte", + "value": 62 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 22 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 291 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION018" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion018" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 19, + "AddCost": { + "type": "dword", + "value": 6 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 6 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 52940 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Ale", + "id": 13451 + } + }, + "ModelPart1": { + "type": "byte", + "value": 42 + }, + "ModelPart2": { + "type": "byte", + "value": 41 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 332 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION022" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion022" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 20, + "AddCost": { + "type": "dword", + "value": 4 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 4 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 52941 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13452 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "ModelPart2": { + "type": "byte", + "value": 31 + }, + "ModelPart3": { + "type": "byte", + "value": 61 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 331 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION023" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion023" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 21, + "AddCost": { + "type": "dword", + "value": 2 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Spirits", + "id": 13450 + } + }, + "ModelPart1": { + "type": "byte", + "value": 45 + }, + "ModelPart2": { + "type": "byte", + "value": 21 + }, + "ModelPart3": { + "type": "byte", + "value": 41 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 330 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION021" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mpotion021" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 22, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 3002 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13416 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13417 + } + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 137 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MPOTION004" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mpotion005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 39 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1720 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13365 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 80 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MEDKIT004" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_medkit004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 314 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13702 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_TRAP036" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_trap036" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1960 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13682 + } + }, + "ModelPart1": { + "type": "byte", + "value": 2 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_TRAP016" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_trap016" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 6351 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13690 + } + }, + "ModelPart1": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_TRAP024" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_trap024" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 3842 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13686 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_TRAP020" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_trap020" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 314 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13698 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_TRAP032" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_trap032" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12251 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13694 + } + }, + "ModelPart1": { + "type": "byte", + "value": 5 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_TRAP028" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_trap028" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 490 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13674 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_TRAP008" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_trap008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 490 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13710 + } + }, + "ModelPart1": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_TRAP044" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_trap044" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 9, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 314 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13706 + } + }, + "ModelPart1": { + "type": "byte", + "value": 8 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 2 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_TRAP040" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_trap040" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 10, + "AddCost": { + "type": "dword", + "value": 4000 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 4079 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13670 + } + }, + "ModelPart1": { + "type": "byte", + "value": 9 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_TRAP004" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_trap004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 11, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 961 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13678 + } + }, + "ModelPart1": { + "type": "byte", + "value": 10 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_TRAP012" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_trap012" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 12, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 25402 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90983 + } + }, + "ModelPart1": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_TRAP001" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_trap001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 13, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 15367 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90984 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_TRAP002" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_trap002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 14, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1255 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90985 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 4 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_TRAP003" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_trap003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 15, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 64 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1255 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90986 + } + }, + "ModelPart1": { + "type": "byte", + "value": 8 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 17 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 70 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 5 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_TRAP004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_trap004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "potion_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 30.90303993225098 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 31.66511344909668 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "shop" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "shop" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 6 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 98100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Heavy Crossbow", + "id": 91165 + } + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "ModelPart2": { + "type": "byte", + "value": 12 + }, + "ModelPart3": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WBWMXH004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wbwmxh004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 7 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 98070 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Light Crossbow ", + "id": 91169 + } + }, + "ModelPart1": { + "type": "byte", + "value": 42 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WBWMXL004" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wbwmxl004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 8 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 98150 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Longbow ", + "id": 91147 + } + }, + "ModelPart1": { + "type": "byte", + "value": 42 + }, + "ModelPart2": { + "type": "byte", + "value": 64 + }, + "ModelPart3": { + "type": "byte", + "value": 34 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WBWMLN006" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wbwmln006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 11 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 98060 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Shortbow ", + "id": 91155 + } + }, + "ModelPart1": { + "type": "byte", + "value": 52 + }, + "ModelPart2": { + "type": "byte", + "value": 44 + }, + "ModelPart3": { + "type": "byte", + "value": 34 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WBWMSH006" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wbwmsh006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 20 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12432 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Arrows", + "id": 91097 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 21 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 99 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WAMMAR013" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_wammar013" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 25 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Bolts", + "id": 1519 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 9 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 99 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WAMBO001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wambo001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 2, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 65569 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Poison", + "id": 65570 + } + }, + "ModelPart1": { + "type": "byte", + "value": 24 + }, + "ModelPart2": { + "type": "byte", + "value": 51 + }, + "ModelPart3": { + "type": "byte", + "value": 22 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 335 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "poisonpotion" + }, + "TemplateResRef": { + "type": "resref", + "value": "poisonpotion" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 49 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 65569 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Cyanide", + "id": 65570 + } + }, + "ModelPart1": { + "type": "byte", + "value": 36 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 335 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 10 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "deathpotion" + }, + "TemplateResRef": { + "type": "resref", + "value": "deathpotion" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "bow_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 306 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 9.179293632507324 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 29.57095336914063 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 1 + }, + "IdentifyPrice": { + "type": "int", + "value": -1 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "arena_merch" + } + }, + "MarkDown": { + "type": "int", + "value": 100 + }, + "MarkUp": { + "type": "int", + "value": 100 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "arena_merch2" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 15000 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 15000 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Gold Arena Token" + } + }, + "ModelPart1": { + "type": "byte", + "value": 105 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "coin1" + }, + "TemplateResRef": { + "type": "resref", + "value": "coin003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10000 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10000 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Silver Arena Token" + } + }, + "ModelPart1": { + "type": "byte", + "value": 133 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "coin2" + }, + "TemplateResRef": { + "type": "resref", + "value": "coin005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 5000 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5000 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Bronze Arena Token" + } + }, + "ModelPart1": { + "type": "byte", + "value": 120 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "pearl" + }, + "TemplateResRef": { + "type": "resref", + "value": "pearl002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "arena_merch" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 11.3291826248169 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 15.17332649230957 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 25 + }, + "IdentifyPrice": { + "type": "int", + "value": -1 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "divine_ammo" + } + }, + "MarkDown": { + "type": "int", + "value": 100 + }, + "MarkUp": { + "type": "int", + "value": 100 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "divine_ammo" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 20 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 4460708 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Divine Arrows", + "id": 1517 + } + }, + "ModelPart1": { + "type": "byte", + "value": 34 + }, + "ModelPart2": { + "type": "byte", + "value": 24 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 99 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "q6arrow" + }, + "TemplateResRef": { + "type": "resref", + "value": "q6arrow001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 25 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5439570 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12432 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Divine Bolts", + "id": 40586 + } + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "ModelPart2": { + "type": "byte", + "value": 24 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 99 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WAMMBO008" + }, + "TemplateResRef": { + "type": "resref", + "value": "q7_wammbo014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "divine_ammo" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 17.65710067749023 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 14.70877265930176 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 1 + }, + "IdentifyPrice": { + "type": "int", + "value": -1 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "arena_merch2" + } + }, + "MarkDown": { + "type": "int", + "value": 100 + }, + "MarkUp": { + "type": "int", + "value": 100 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "arena_merch2" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 15000 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 15000 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Gold Arena Token" + } + }, + "ModelPart1": { + "type": "byte", + "value": 105 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "coin1" + }, + "TemplateResRef": { + "type": "resref", + "value": "coin003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10000 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10000 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Silver Arena Token" + } + }, + "ModelPart1": { + "type": "byte", + "value": 133 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "coin2" + }, + "TemplateResRef": { + "type": "resref", + "value": "coin005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 5000 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5000 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Bronze Arena Token" + } + }, + "ModelPart1": { + "type": "byte", + "value": 120 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "pearl" + }, + "TemplateResRef": { + "type": "resref", + "value": "pearl002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "arena_merch2" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 10.16237354278565 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 15.16244316101074 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Nordock_bb" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "close" + }, + "ResRef": { + "type": "resref", + "value": "belts_boots" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 64161 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67472 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 67471 + } + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS022" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mboots022" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 100001 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67773 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90830 + } + }, + "ModelPart1": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 75 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MBELT003" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mbelt003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 36001 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13323 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13333 + } + }, + "ModelPart1": { + "type": "byte", + "value": 4 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBELT008" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbelt008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 25101 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67778 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Boots of Hardiness +3", + "id": 67780 + } + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "ModelPart2": { + "type": "byte", + "value": 21 + }, + "ModelPart3": { + "type": "byte", + "value": 31 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS017" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots020" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2690 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67769 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 67768 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 18 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 9 + }, + "Param1Value": { + "type": "byte", + "value": 2 + }, + "PropertyName": { + "type": "word", + "value": 44 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 7 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "nw_it_mbelt015" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbelt015" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 21 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 46513 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67769 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 67771 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 18 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 9 + }, + "Param1Value": { + "type": "byte", + "value": 2 + }, + "PropertyName": { + "type": "word", + "value": 44 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 14 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 17 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "nw_it_mbelt017" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbelt017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12251 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67778 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Boots of Crippling Speed", + "id": 67780 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 31 + }, + "ModelPart3": { + "type": "byte", + "value": 34 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 21 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 27 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 1 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS017" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots021" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "n_boot_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.60918140411377 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.6810417175293 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "nordock med weap" + } + }, + "MarkDown": { + "type": "int", + "value": 1 + }, + "MarkUp": { + "type": "int", + "value": 1 + }, + "MaxBuyPrice": { + "type": "int", + "value": -1 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "nordock_med_w" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 41 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 539640 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Katana of the Dragons", + "id": 91264 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 22 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 25 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMKA004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmka005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 53 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 157560 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Scimitar of Flashing Light", + "id": 66650 + } + }, + "ModelPart1": { + "type": "byte", + "value": 52 + }, + "ModelPart2": { + "type": "byte", + "value": 52 + }, + "ModelPart3": { + "type": "byte", + "value": 31 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_WSWMSC002" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmsc004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 1 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 124850 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Blade of the Spider Queen", + "id": 66646 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 52 + }, + "ModelPart3": { + "type": "byte", + "value": 82 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 10 + }, + "Param1Value": { + "type": "byte", + "value": 2 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 19 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_WSWMLS002" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmls006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 1 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 150974 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Longsword of the Eminent Tactician", + "id": 66646 + } + }, + "ModelPart1": { + "type": "byte", + "value": 71 + }, + "ModelPart2": { + "type": "byte", + "value": 81 + }, + "ModelPart3": { + "type": "byte", + "value": 51 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 67 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 25 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_WSWMLS002" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmls007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 108 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 120960 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Giblet Maker", + "id": 91214 + } + }, + "ModelPart1": { + "type": "byte", + "value": 51 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 62 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WMDWRAXE006" + }, + "TemplateResRef": { + "type": "resref", + "value": "wmdwraxe007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 108 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 249374 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Mighty Dwarven Paladin's War Axe ", + "id": 91214 + } + }, + "ModelPart1": { + "type": "byte", + "value": 12 + }, + "ModelPart2": { + "type": "byte", + "value": 12 + }, + "ModelPart3": { + "type": "byte", + "value": 62 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 36 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 25 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 18 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 65 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WMDWRAXE006" + }, + "TemplateResRef": { + "type": "resref", + "value": "wmdwraxe008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "nordock_med_w" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [ + { + "__struct_id": 97869, + "BaseItem": { + "type": "int", + "value": 323 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 9.247401237487793 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 34.72320556640625 + }, + "ZPosition": { + "type": "float", + "value": 9.179115295410156e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": -1 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "n_jewellery" + } + }, + "MarkDown": { + "type": "int", + "value": 0 + }, + "MarkUp": { + "type": "int", + "value": 150 + }, + "MaxBuyPrice": { + "type": "int", + "value": 0 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "gems" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19449 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 75028 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 75028 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Amulet of The Turtle", + "id": 75027 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Q2_AMULET_OF_ASCALHRON" + }, + "TemplateResRef": { + "type": "resref", + "value": "amuletofascalhor" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 36001 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13393 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13397 + } + }, + "ModelPart1": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MNECK011" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mneck011" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 37516 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13391 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13405 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 40 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MNECK019" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mneck019" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19141 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13389 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13388 + } + }, + "ModelPart1": { + "type": "byte", + "value": 2 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 15 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 13 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 13 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 13 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 13 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 13 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 13 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 3 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MNECK005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mneck005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12251 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67520 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 67521 + } + }, + "ModelPart1": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MNECK036" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mneck036" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 19 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 73274 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67520 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Crafted Smooth Shadow Ideal Emerald Amulet", + "id": 67521 + } + }, + "ModelPart1": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 40 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 62 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 62 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 5 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MNECK036" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mneck037" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 35269 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Ring of Extreme Strength", + "id": 13483 + } + }, + "ModelPart1": { + "type": "byte", + "value": 31 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING021" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring022" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 7, + "AddCost": { + "type": "dword", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 52 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 78530 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Crafted Smooth Mithral Ideal Ruby Ring", + "id": 13483 + } + }, + "ModelPart1": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 10 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 11 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 18 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 9 + }, + "Param1Value": { + "type": "byte", + "value": 6 + }, + "PropertyName": { + "type": "word", + "value": 44 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 40 + }, + "Subtype": { + "type": "word", + "value": 11 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 7 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MRING021" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mring023" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "n_jewellery" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 19.10831260681152 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.52477645874023 + }, + "ZPosition": { + "type": "float", + "value": 9.059906005859375e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 100 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "blank" + } + }, + "MarkDown": { + "type": "int", + "value": 0 + }, + "MarkUp": { + "type": "int", + "value": 150 + }, + "MaxBuyPrice": { + "type": "int", + "value": 0 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "blank" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 13 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 172150 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Greatsword of Chaotic Energy", + "id": 66642 + } + }, + "ModelPart1": { + "type": "byte", + "value": 24 + }, + "ModelPart2": { + "type": "byte", + "value": 42 + }, + "ModelPart3": { + "type": "byte", + "value": 22 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_WSWMGS002" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmgs003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "n_heavy_shop" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 9.29456901550293 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 32.31691741943359 + }, + "ZPosition": { + "type": "float", + "value": 9.179115295410156e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 100 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "blank" + } + }, + "MarkDown": { + "type": "int", + "value": 0 + }, + "MarkUp": { + "type": "int", + "value": 150 + }, + "MaxBuyPrice": { + "type": "int", + "value": 0 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "blank" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0 + }, + { + "__struct_id": 4, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 51 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 100150 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "6 Fingered", + "id": 66648 + } + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "ModelPart2": { + "type": "byte", + "value": 32 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_WSWMRP002" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmrp003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "n_light" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 9.344833374023438 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 37.08670806884766 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 100 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "blank" + } + }, + "MarkDown": { + "type": "int", + "value": 0 + }, + "MarkUp": { + "type": "int", + "value": 150 + }, + "MaxBuyPrice": { + "type": "int", + "value": 0 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "blank" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 19 + }, + "Cloth2Color": { + "type": "byte", + "value": 16 + }, + "Cost": { + "type": "dword", + "value": 19407 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 12860 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 8 + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 41 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ARMHE010" + }, + "TemplateResRef": { + "type": "resref", + "value": "armhe011" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 45 + }, + "Cost": { + "type": "dword", + "value": 128412 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90515 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Illithid Bane", + "id": 90514 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 8 + }, + "ModelPart1": { + "type": "byte", + "value": 24 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 22 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 275 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_helm_004" + }, + "TemplateResRef": { + "type": "resref", + "value": "helm_005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 78 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 36001 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13349 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Bracers of Nimbleness", + "id": 13355 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 21 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 27 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBRACER006" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_mbracer006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 36 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 46377 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 48882 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Gauntlet of The High Ogre", + "id": 48881 + } + }, + "ModelPart1": { + "type": "byte", + "value": 2 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 21 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 27 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 21 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 27 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_IT_MGLOVE005" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mglove006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "n_helm" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 18.10128974914551 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.43255615234375 + }, + "ZPosition": { + "type": "float", + "value": 9.059906005859375e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 100 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "blank" + } + }, + "MarkDown": { + "type": "int", + "value": 0 + }, + "MarkUp": { + "type": "int", + "value": 150 + }, + "MaxBuyPrice": { + "type": "int", + "value": 0 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "blank" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 15 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 6 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 15 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 6 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 37 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 50 + }, + "Cloth2Color": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 477176 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13776 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 50 + }, + "Leather2Color": { + "type": "byte", + "value": 50 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Armour Of Creator", + "id": 66096 + } + }, + "Metal1Color": { + "type": "byte", + "value": 8 + }, + "Metal2Color": { + "type": "byte", + "value": 8 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 10 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 11 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 75 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 25 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_armor_002" + }, + "TemplateResRef": { + "type": "resref", + "value": "armor_003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 3 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 13 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 20 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 13 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 11 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 20 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 63 + }, + "Cloth2Color": { + "type": "byte", + "value": 45 + }, + "Cost": { + "type": "dword", + "value": 20948 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 83073 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 63 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 83072 + } + }, + "Metal1Color": { + "type": "byte", + "value": 63 + }, + "Metal2Color": { + "type": "byte", + "value": 3 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 62 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 62 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "q2_blackarmor" + }, + "TemplateResRef": { + "type": "resref", + "value": "q2_blackarmor001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 10 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 15 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 19 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 15 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 19 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 53 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 44 + }, + "Cloth2Color": { + "type": "byte", + "value": 45 + }, + "Cost": { + "type": "dword", + "value": 155818 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13776 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 44 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Full Plate of the Master Tactician", + "id": 66096 + } + }, + "Metal1Color": { + "type": "byte", + "value": 3 + }, + "Metal2Color": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 75 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 25 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_armor_002" + }, + "TemplateResRef": { + "type": "resref", + "value": "armor_004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 10 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 14 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 37 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 10 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 14 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 7 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 42 + }, + "Cloth2Color": { + "type": "byte", + "value": 42 + }, + "Cost": { + "type": "dword", + "value": 121221 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 42 + }, + "Leather2Color": { + "type": "byte", + "value": 42 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Blurred Robes of Death", + "id": 12928 + } + }, + "Metal1Color": { + "type": "byte", + "value": 20 + }, + "Metal2Color": { + "type": "byte", + "value": 16 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 75 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH027" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth276" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 10 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 19 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 19 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 26 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 52 + }, + "Cloth2Color": { + "type": "byte", + "value": 52 + }, + "Cost": { + "type": "dword", + "value": 27294 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13782 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 37 + }, + "Leather2Color": { + "type": "byte", + "value": 37 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13781 + } + }, + "Metal1Color": { + "type": "byte", + "value": 24 + }, + "Metal2Color": { + "type": "byte", + "value": 25 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAARCL039" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_maarcl039" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 15 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 17 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 15 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 17 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 10 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 23 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 52 + }, + "Cloth2Color": { + "type": "byte", + "value": 52 + }, + "Cost": { + "type": "dword", + "value": 40687 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13760 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 52 + }, + "Leather2Color": { + "type": "byte", + "value": 52 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13759 + } + }, + "Metal1Color": { + "type": "byte", + "value": 25 + }, + "Metal2Color": { + "type": "byte", + "value": 24 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 10 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 11 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAARCL027" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_maarcl027" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "n_plate" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 11.10099792480469 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.70125579833984 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 100 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "blank" + } + }, + "MarkDown": { + "type": "int", + "value": 0 + }, + "MarkUp": { + "type": "int", + "value": 150 + }, + "MaxBuyPrice": { + "type": "int", + "value": 0 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "blank" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 80 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58523 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13803 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90864 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MCLOAK006" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mcloak006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 80 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 110987 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67588 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90863 + } + }, + "ModelPart1": { + "type": "byte", + "value": 9 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 40 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MCLOAK005" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_mcloak005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 80 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 36001 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13768 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13847 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAARCL095" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_maarcl095" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 80 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 30251 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 66554 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 66553 + } + }, + "ModelPart1": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 62 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_MAARCL035" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_maarcl035" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 80 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 655873 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 90861 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Mantle of Evocation", + "id": 90860 + } + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 54 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MCLOAK003" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mcloak004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 80 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12321 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13803 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13842 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAARCL090" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_maarcl090" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 80 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19449 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13803 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13843 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAARCL091" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_maarcl091" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "n_cloak" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 12.8351640701294 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.69349670410156 + }, + "ZPosition": { + "type": "float", + "value": 9.059906005859375e-006 + } + }, + { + "__struct_id": 11, + "BlackMarket": { + "type": "byte", + "value": 0 + }, + "BM_MarkDown": { + "type": "int", + "value": 0 + }, + "IdentifyPrice": { + "type": "int", + "value": 100 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "blank" + } + }, + "MarkDown": { + "type": "int", + "value": 0 + }, + "MarkUp": { + "type": "int", + "value": 150 + }, + "MaxBuyPrice": { + "type": "int", + "value": 0 + }, + "OnOpenStore": { + "type": "resref", + "value": "" + }, + "OnStoreClosed": { + "type": "resref", + "value": "" + }, + "ResRef": { + "type": "resref", + "value": "blank" + }, + "StoreGold": { + "type": "int", + "value": -1 + }, + "StoreList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 56 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 125714 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Miracle Shield of the Holy", + "id": 1550 + } + }, + "ModelPart1": { + "type": "byte", + "value": 21 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 4 + }, + "Subtype": { + "type": "word", + "value": 24 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 18 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 9 + }, + "Param1Value": { + "type": "byte", + "value": 6 + }, + "PropertyName": { + "type": "word", + "value": 44 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHLW001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashlw004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 44455 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Exceptionally Crafted Gold Tower Shield", + "id": 1551 + } + }, + "ModelPart1": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 9 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHTO001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashto004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 155351 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Shield of the Master Tactician", + "id": 1551 + } + }, + "ModelPart1": { + "type": "byte", + "value": 41 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 75 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 18 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 9 + }, + "Param1Value": { + "type": "byte", + "value": 3 + }, + "PropertyName": { + "type": "word", + "value": 44 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 25 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 4 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHTO001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashto005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 3, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 179928 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tower Shield of the High Priest", + "id": 1551 + } + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 18 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 9 + }, + "Param1Value": { + "type": "byte", + "value": 6 + }, + "PropertyName": { + "type": "word", + "value": 44 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 6 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHTO001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashto006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 56 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 179878 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Shield of the Holy Warrior", + "id": 1550 + } + }, + "ModelPart1": { + "type": "byte", + "value": 42 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 4 + }, + "Subtype": { + "type": "word", + "value": 24 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 18 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 9 + }, + "Param1Value": { + "type": "byte", + "value": 6 + }, + "PropertyName": { + "type": "word", + "value": 44 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHLW001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashlw005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 5, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 56 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 121215 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Shield of the Wall", + "id": 1550 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 18 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 9 + }, + "Param1Value": { + "type": "byte", + "value": 6 + }, + "PropertyName": { + "type": "word", + "value": 44 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 41 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 25 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHLW001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashlw006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 6, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 56 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 129326 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Infinite": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dimunitive Shield of the Cleric", + "id": 1550 + } + }, + "ModelPart1": { + "type": "byte", + "value": 22 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 1 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 0 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 12 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 25 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 8 + }, + "Repos_Posy": { + "type": "word", + "value": 3 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHLW001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashlw007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + } + }, + { + "__struct_id": 4 + }, + { + "__struct_id": 2 + }, + { + "__struct_id": 3 + }, + { + "__struct_id": 1 + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "n_shield" + }, + "WillNotBuy": { + "type": "list", + "value": [] + }, + "WillOnlyBuy": { + "type": "list", + "value": [] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 21.01357078552246 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.65604019165039 + }, + "ZPosition": { + "type": "float", + "value": 9.179115295410156e-006 + } + } + ] + }, + "TriggerList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -26.97525978088379 + }, + "PointY": { + "type": "float", + "value": -35.24245452880859 + }, + "PointZ": { + "type": "float", + "value": 0.2228006422519684 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.670478820800781 + }, + "PointY": { + "type": "float", + "value": -35.24134826660156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.651744842529297 + }, + "PointY": { + "type": "float", + "value": -33.55937957763672 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.1738853454589844 + }, + "PointY": { + "type": "float", + "value": -33.55981063842773 + }, + "PointZ": { + "type": "float", + "value": 0.02499988116323948 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.1738853454589844 + }, + "PointY": { + "type": "float", + "value": -29.12574195861816 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.043312072753906 + }, + "PointY": { + "type": "float", + "value": -29.21268463134766 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.043312072753906 + }, + "PointY": { + "type": "float", + "value": -24.95250129699707 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": -24.95250129699707 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": -19.8228931427002 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.217193603515625 + }, + "PointY": { + "type": "float", + "value": -19.8228931427002 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.217193603515625 + }, + "PointY": { + "type": "float", + "value": -14.08468627929688 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.08694076538085938 + }, + "PointY": { + "type": "float", + "value": -14.08468627929688 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.08694076538085938 + }, + "PointY": { + "type": "float", + "value": -9.302848815917969 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.30413818359375 + }, + "PointY": { + "type": "float", + "value": -9.302845001220703 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.30413818359375 + }, + "PointY": { + "type": "float", + "value": -4.694892883300781 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.08694076538085938 + }, + "PointY": { + "type": "float", + "value": -4.607952117919922 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.02500000037252903 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.086944580078125 + }, + "PointY": { + "type": "float", + "value": -0.1738853454589844 + }, + "PointZ": { + "type": "float", + "value": 0.02499988116323948 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.851032257080078 + }, + "PointY": { + "type": "float", + "value": -0.06890106201171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.4649085998535156 + }, + "PointY": { + "type": "float", + "value": 1.057319641113281 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -26.62802124023438 + }, + "PointY": { + "type": "float", + "value": 1.057319641113281 + }, + "PointZ": { + "type": "float", + "value": 0.2249998152256012 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "pvp", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "pvp_set2" + }, + "ScriptOnExit": { + "type": "resref", + "value": "pvp_exit" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "GenericTrigger" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 33.69948577880859 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 42.08891677856445 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "X2_WM_ENCOUNTERTABLE" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "Misc" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "X2_WM_AREA_LISTENCHECK" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 50 + } + } + ] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "test_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 70.73509216308594 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 24.75122833251953 + }, + "ZPosition": { + "type": "float", + "value": 0.001693248748779297 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "s_duel_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 54.99228286743164 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 14.8340368270874 + }, + "ZPosition": { + "type": "float", + "value": 0.7499980926513672 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "p_duel_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -8.12133148428984e-005 + }, + "XPosition": { + "type": "float", + "value": 55.05354690551758 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 34.99841690063477 + }, + "ZPosition": { + "type": "float", + "value": 0.7501602172851563 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "monster_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.05239486694336 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 14.49285507202148 + }, + "ZPosition": { + "type": "float", + "value": 0.7499980926513672 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "duel_effect" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 14.94796657562256 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 14.79632186889648 + }, + "ZPosition": { + "type": "float", + "value": 9.083069016924128e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "big_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 54.97928619384766 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 18.88440322875977 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "starfall_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 14.97665405273438 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 14.98705863952637 + }, + "ZPosition": { + "type": "float", + "value": 9.083069016924128e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "wpfire1" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.06460571289063 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 5.610839366912842 + }, + "ZPosition": { + "type": "float", + "value": 6.305355072021484 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "wpfire2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 54.93651580810547 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 44.23862457275391 + }, + "ZPosition": { + "type": "float", + "value": 6.339829921722412 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "safe_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 70.93974304199219 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 24.79319000244141 + }, + "ZPosition": { + "type": "float", + "value": 0.001693248748779297 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "big_wp2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 3.758271122933365e-005 + }, + "XPosition": { + "type": "float", + "value": 55.0258903503418 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 30.99421501159668 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "monster_wp2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 3.758271122933365e-005 + }, + "XPosition": { + "type": "float", + "value": 55.05956649780273 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 35.17356109619141 + }, + "ZPosition": { + "type": "float", + "value": 0.7499980926513672 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "star_friend" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 43.84856033325195 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 38.84009552001953 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "death_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 70.20706176757813 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 24.77142906188965 + }, + "ZPosition": { + "type": "float", + "value": 0.001693248748779297 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Waypoint", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "starfall_cswp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 44.92587661743164 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 25.01254653930664 + }, + "ZPosition": { + "type": "float", + "value": -2.477318048477173e-007 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "pc_cswp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 48.88285446166992 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 25.01264381408691 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "love_wp1" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 51.74753189086914 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 25.02166938781738 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "fw_portal_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 51.25919723510742 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 31.3153133392334 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "fw_portal_wpa" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 51.26259613037109 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 31.55218124389648 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "center_arena" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 54.98297119140625 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 25.13307571411133 + }, + "ZPosition": { + "type": "float", + "value": 7.059425115585327e-007 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "arena_home" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.02995586395264 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 11.44799518585205 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "trap_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 22.84086990356445 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 41.91693115234375 + }, + "ZPosition": { + "type": "float", + "value": 0.2120072990655899 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "crystal_pvp_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.11260223388672 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 12.91178321838379 + }, + "ZPosition": { + "type": "float", + "value": 1.149991393089294 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "mc_facing" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 14.9536771774292 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 19.20935821533203 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "The AOC Tote", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "reaper" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 38.07992935180664 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 46.45298767089844 + }, + "ZPosition": { + "type": "float", + "value": 0.2000099420547485 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "The Arena Scoreboard", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAPNOTE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 70.00108337402344 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 26.91142845153809 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "The Arena Consle", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAPNOTE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 54.11229705810547 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 33.55309295654297 + }, + "ZPosition": { + "type": "float", + "value": 0.7500004768371582 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "Player Board & AOC Rank Registry", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAPNOTE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 7.549416542053223 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 21.75022506713867 + }, + "ZPosition": { + "type": "float", + "value": 0.200009822845459 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "Trash Recepticle", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAPNOTE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 6.981488704681397 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 25.24647903442383 + }, + "ZPosition": { + "type": "float", + "value": 0.2000002413988113 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "Token Refunder & Item Duplicator", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAPNOTE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 12.49782562255859 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 19.3497486114502 + }, + "ZPosition": { + "type": "float", + "value": -5.960464477539063e-008 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "The AOC Arena Host", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAPNOTE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 14.98825454711914 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 15.77273845672607 + }, + "ZPosition": { + "type": "float", + "value": -2.384185791015625e-007 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "Master Crafter's Shop", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAPNOTE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 6.434998512268066 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 11.74931335449219 + }, + "ZPosition": { + "type": "float", + "value": 0.2000001221895218 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "The Great Library", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAPNOTE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 6.051732063293457 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 38.24594879150391 + }, + "ZPosition": { + "type": "float", + "value": 0.1999997645616531 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "The Campaign Chooser", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAPNOTE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 16.98370552062988 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 44.07073974609375 + }, + "ZPosition": { + "type": "float", + "value": 0.2099998444318771 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "Character Equipment Area", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAPNOTE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 19.57934761047363 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 33.73030090332031 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "The Warehouse", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAPNOTE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 28.15066337585449 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 45.90361785888672 + }, + "ZPosition": { + "type": "float", + "value": 0.2100000530481339 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14814 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": { + "0": "The Eye of Amaterasu", + "id": 14815 + } + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MAPNOTE001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_mapnote001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 18.66439437866211 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 24.3863525390625 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + } + ] + } +} diff --git a/_module/git/desolateanddespa.git.json b/_module/git/desolateanddespa.git.json new file mode 100644 index 0000000..2e5eb64 --- /dev/null +++ b/_module/git/desolateanddespa.git.json @@ -0,0 +1,8196 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 103 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 82 + }, + "AmbientSndNight": { + "type": "int", + "value": 103 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 82 + }, + "EnvAudio": { + "type": "int", + "value": 51 + }, + "MusicBattle": { + "type": "int", + "value": 73 + }, + "MusicDay": { + "type": "int", + "value": 68 + }, + "MusicDelay": { + "type": "int", + "value": 54000 + }, + "MusicNight": { + "type": "int", + "value": 68 + } + } + }, + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 37 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 0.3333333432674408 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 10 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 5 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12439 + } + }, + "Dex": { + "type": "byte", + "value": 11 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 70 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13230 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12441 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 5 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 5 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 175 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_herbivore" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 24 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 10 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_DEERSTAG" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_deerstag" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 20.76999473571777 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 19.48442077636719 + }, + "ZPosition": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 37 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 0.3333333432674408 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 10 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 5 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12439 + } + }, + "Dex": { + "type": "byte", + "value": 11 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 70 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13230 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12441 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 5 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 5 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 175 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_herbivore" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 24 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 10 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_DEERSTAG" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_deerstag" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 29.05035018920898 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 49.75520706176758 + }, + "ZPosition": { + "type": "float", + "value": 5.021541595458984 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 37 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 0.3333333432674408 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 10 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 5 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12439 + } + }, + "Dex": { + "type": "byte", + "value": 11 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 70 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13230 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12441 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 5 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 5 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 175 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_herbivore" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 24 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 10 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_DEERSTAG" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_deerstag" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 71.75108337402344 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 53.92094421386719 + }, + "ZPosition": { + "type": "float", + "value": 5.033013820648193 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 37 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 0.3333333432674408 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 10 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 5 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12439 + } + }, + "Dex": { + "type": "byte", + "value": 11 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 70 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13230 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12441 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 5 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 5 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 175 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_herbivore" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 24 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 10 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_DEERSTAG" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_deerstag" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 36.24361419677734 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 6.99939775466919 + }, + "ZPosition": { + "type": "float", + "value": 0.08137589693069458 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 94 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 6 + }, + "ChallengeRating": { + "type": "float", + "value": 2.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 3 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 15 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 16 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12429 + } + }, + "Dex": { + "type": "byte", + "value": 19 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 3124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13253 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS021" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps021" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13101 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 54 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEM081" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_creitem081" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 57919 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 16 + }, + "Int": { + "type": "byte", + "value": 13 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 22 + }, + "NaturalAC": { + "type": "byte", + "value": 2 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 164 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 19 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 16 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_CRAGCAT" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_cragcat" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 37.59464263916016 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 47.08803558349609 + }, + "ZPosition": { + "type": "float", + "value": 10.02328968048096 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 94 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 6 + }, + "ChallengeRating": { + "type": "float", + "value": 2.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 3 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 15 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 16 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12429 + } + }, + "Dex": { + "type": "byte", + "value": 19 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 3124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13253 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS021" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps021" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13101 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 54 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEM081" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_creitem081" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 57919 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 16 + }, + "Int": { + "type": "byte", + "value": 13 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 22 + }, + "NaturalAC": { + "type": "byte", + "value": 2 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 164 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 19 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 16 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_CRAGCAT" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_cragcat" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 39.93610382080078 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 70.35720825195313 + }, + "ZPosition": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 184 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 5.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 23 + }, + "ClassLevel": { + "type": "short", + "value": 6 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 16 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 33 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12817 + } + }, + "Dex": { + "type": "byte", + "value": 13 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13074 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEM026" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_creitem026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Winter Wolf", + "id": 12818 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 4 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 33 + }, + "Int": { + "type": "byte", + "value": 9 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 51 + }, + "NaturalAC": { + "type": "byte", + "value": 5 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 320 + }, + "Race": { + "type": "byte", + "value": 19 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 7 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 105 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 230 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 6 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 230 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 6 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 230 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 6 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 18 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_WOLFWINT" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wolfwint" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 13 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 75.99844360351563 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 50.68719863891602 + }, + "ZPosition": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 103 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 5.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 24 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 10 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 4 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The inner core of your being, that which gives you your psionic powers.", + "id": 12420 + } + }, + "Dex": { + "type": "byte", + "value": 11 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Inner Core", + "id": 12421 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 4 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 4 + }, + "Int": { + "type": "byte", + "value": 6 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 100 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 4 + }, + "NaturalAC": { + "type": "byte", + "value": 4 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 171 + }, + "Race": { + "type": "byte", + "value": 20 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "innercore_rest" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 2 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 1 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 3 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 1 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 3 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 1 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 3 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 1 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 3 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 1 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 3 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 1 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 3 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 222 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 222 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 222 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 222 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 222 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 222 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 3 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLANTERN" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_clantern" + }, + "WalkRate": { + "type": "int", + "value": 1 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 11 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 9.901997566223145 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 69.86968994140625 + }, + "ZPosition": { + "type": "float", + "value": 0.6000000238418579 + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 1 + }, + "Appearance": { + "type": "dword", + "value": 68 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794820785523 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Breach" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_27" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 77.01000213623047 + }, + "Y": { + "type": "float", + "value": 12.88000011444092 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 28 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "A portal glows softly before you. You wonder where it leads.", + "id": 14533 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Genesis Exit Portal", + "id": 5670 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "psi_gen_exit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 386 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "GenesisExit02" + }, + "TemplateResRef": { + "type": "resref", + "value": "genesisexit" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 39.69971084594727 + }, + "Y": { + "type": "float", + "value": 49.18886566162109 + }, + "Z": { + "type": "float", + "value": 10.00000286102295 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68030 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_wt_gustchasm1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WindGustChasm" + }, + "TemplateResRef": { + "type": "resref", + "value": "windgustchasm" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 35.77315521240234 + }, + "YPosition": { + "type": "float", + "value": 28.92969131469727 + }, + "ZPosition": { + "type": "float", + "value": -1.899999856948853 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68030 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_wt_gustchasm1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WindGustChasm" + }, + "TemplateResRef": { + "type": "resref", + "value": "windgustchasm" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 2.996747970581055 + }, + "YPosition": { + "type": "float", + "value": 34.84434509277344 + }, + "ZPosition": { + "type": "float", + "value": 1.588324546813965 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68034 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_wt_guststrng1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WindGustStrong" + }, + "TemplateResRef": { + "type": "resref", + "value": "windguststrong" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 66.09418487548828 + }, + "YPosition": { + "type": "float", + "value": 74.35420989990234 + }, + "ZPosition": { + "type": "float", + "value": 6.703686237335205 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 10000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91312 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.300000011920929 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb10" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb5" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb6" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb7" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb8" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb9" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "IceCrumbling" + }, + "TemplateResRef": { + "type": "resref", + "value": "icecrumbling" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 39.02038192749023 + }, + "YPosition": { + "type": "float", + "value": 8.978778839111328 + }, + "ZPosition": { + "type": "float", + "value": 1.0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 10000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91312 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.300000011920929 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb10" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb5" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb6" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb7" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb8" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb9" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "IceCrumbling" + }, + "TemplateResRef": { + "type": "resref", + "value": "icecrumbling" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 45.81055450439453 + }, + "YPosition": { + "type": "float", + "value": 55.63458633422852 + }, + "ZPosition": { + "type": "float", + "value": 11.29591751098633 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 10000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91311 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.300000011920929 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak10" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak5" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak6" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak7" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak8" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak9" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "IceCracking" + }, + "TemplateResRef": { + "type": "resref", + "value": "icecracking" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 7.411387443542481 + }, + "YPosition": { + "type": "float", + "value": 46.72670745849609 + }, + "ZPosition": { + "type": "float", + "value": 0.9999999403953552 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 10000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91311 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.300000011920929 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak10" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak5" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak6" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak7" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak8" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak9" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "IceCracking" + }, + "TemplateResRef": { + "type": "resref", + "value": "icecracking" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 37.93146514892578 + }, + "YPosition": { + "type": "float", + "value": 72.40705871582031 + }, + "ZPosition": { + "type": "float", + "value": 6.000000953674316 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67845 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_mg_entrmyst1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "EntranceMysterious" + }, + "TemplateResRef": { + "type": "resref", + "value": "entrancemysterio" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 73.24169158935547 + }, + "YPosition": { + "type": "float", + "value": 13.41970634460449 + }, + "ZPosition": { + "type": "float", + "value": 1.500000238418579 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67903 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_mg_portal2" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "MagicPortalWater" + }, + "TemplateResRef": { + "type": "resref", + "value": "magicportalwater" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 9.90831470489502 + }, + "YPosition": { + "type": "float", + "value": 69.70172882080078 + }, + "ZPosition": { + "type": "float", + "value": 2.099999904632568 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/ey_dpcon_erewood.git.json b/_module/git/ey_dpcon_erewood.git.json new file mode 100644 index 0000000..2883ed0 --- /dev/null +++ b/_module/git/ey_dpcon_erewood.git.json @@ -0,0 +1,8262 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 53 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 32 + }, + "AmbientSndNight": { + "type": "int", + "value": 53 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 32 + }, + "EnvAudio": { + "type": "int", + "value": 15 + }, + "MusicBattle": { + "type": "int", + "value": 35 + }, + "MusicDay": { + "type": "int", + "value": 3 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 3 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 51 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.018872022628784 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14557 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14558 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 409 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "BedBeddingRolls" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_bedrolls" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 43.72515106201172 + }, + "Y": { + "type": "float", + "value": 7.315659523010254 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 58 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 0.5154173374176025 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14586 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5700 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 416 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Campfire" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_campfr" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.82106781005859 + }, + "Y": { + "type": "float", + "value": 9.7994384765625 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 40.3640022277832 + }, + "Y": { + "type": "float", + "value": 7.260047912597656 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 101 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14747 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 459 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Autumn" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_treeautumn" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 37.41852569580078 + }, + "Y": { + "type": "float", + "value": 9.084003448486328 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 101 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14747 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 459 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Autumn" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_treeautumn" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 37.77213287353516 + }, + "Y": { + "type": "float", + "value": 12.39786338806152 + }, + "Z": { + "type": "float", + "value": -1.937150955200195e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 43.51470565795898 + }, + "Y": { + "type": "float", + "value": 14.01102447509766 + }, + "Z": { + "type": "float", + "value": 0.04150157049298286 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 101 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14747 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 459 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Autumn" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_treeautumn" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.63576126098633 + }, + "Y": { + "type": "float", + "value": 13.1573600769043 + }, + "Z": { + "type": "float", + "value": -0.005504768341779709 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 187 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66885 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 52998 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 550 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Boulder" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_boulder" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 38.5255241394043 + }, + "Y": { + "type": "float", + "value": 43.9696159362793 + }, + "Z": { + "type": "float", + "value": 2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 95 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14736 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5738 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 453 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Stones" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_stones" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 39.49908065795898 + }, + "Y": { + "type": "float", + "value": 42.78000640869141 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 176 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14750 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5819 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 534 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "WaterDrip" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_waterdrip" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 44.82220077514648 + }, + "Y": { + "type": "float", + "value": 8.010405540466309 + }, + "Z": { + "type": "float", + "value": -4.76837158203125e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 148 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14609 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5791 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 506 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Dust Plume" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_dustplume" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 23.31093406677246 + }, + "Y": { + "type": "float", + "value": 6.334214210510254 + }, + "Z": { + "type": "float", + "value": 0.0429927408695221 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 46 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.8590286374092102 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14540 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Focus", + "id": 14541 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "ey_dpcon_med" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 404 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "AltarShrineEvil" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_altrevil" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 41.14682006835938 + }, + "Y": { + "type": "float", + "value": 41.42173385620117 + }, + "Z": { + "type": "float", + "value": 0.08515427261590958 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 165 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14677 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14673 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 523 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Magic Sparks - Purple" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_magicpurple" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 40.90617370605469 + }, + "Y": { + "type": "float", + "value": 41.20880126953125 + }, + "Z": { + "type": "float", + "value": 1.001358032226563e-005 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 147 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14584 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5790 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 505 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Butterflies" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_butterflies" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.25651454925537 + }, + "Y": { + "type": "float", + "value": 13.30093288421631 + }, + "Z": { + "type": "float", + "value": 0.4138407707214356 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 81 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14649 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14650 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 439 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Plant Growth - Grass Tufts" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_grasstuft" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 37.20438003540039 + }, + "Y": { + "type": "float", + "value": 31.95298194885254 + }, + "Z": { + "type": "float", + "value": 2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 299 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68872 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9188 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_mushrooms" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_mushrooms" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 27.46503829956055 + }, + "Y": { + "type": "float", + "value": 25.76974487304688 + }, + "Z": { + "type": "float", + "value": 0.3609549999237061 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 335 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68871 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9207 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 681 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Moss" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_moss" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 27.54284286499023 + }, + "Y": { + "type": "float", + "value": 25.75577354431152 + }, + "Z": { + "type": "float", + "value": 0.3354043960571289 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 82 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 67632 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5725 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 440 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PlantGrowthShrubs" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_shrub" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 27.71881675720215 + }, + "Y": { + "type": "float", + "value": 24.61386680603027 + }, + "Z": { + "type": "float", + "value": 0.3464046120643616 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 433 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84172 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 83426 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_HOLE_S" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_hole_s" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.4328727722168 + }, + "Y": { + "type": "float", + "value": 37.45115661621094 + }, + "Z": { + "type": "float", + "value": 0.0183146595954895 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 58 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14586 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5700 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 416 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Campfire" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_campfr" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.39583396911621 + }, + "Y": { + "type": "float", + "value": 37.53082656860352 + }, + "Z": { + "type": "float", + "value": 0.0144386887550354 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5821 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "BenchPew" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.88762187957764 + }, + "Y": { + "type": "float", + "value": 39.42445755004883 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 178 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.816232323646545 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14559 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5821 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 536 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "BenchPew" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_bench" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.667524337768555 + }, + "Y": { + "type": "float", + "value": 36.83750915527344 + }, + "Z": { + "type": "float", + "value": 1.001358032226563e-005 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 101 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14747 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 459 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Autumn" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_treeautumn" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.995330810546875 + }, + "Y": { + "type": "float", + "value": 40.45883941650391 + }, + "Z": { + "type": "float", + "value": 1.192092895507813e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 101 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14747 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 459 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Autumn" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_treeautumn" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 9.184167861938477 + }, + "Y": { + "type": "float", + "value": 43.67095565795898 + }, + "Z": { + "type": "float", + "value": -2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.758848667144775 + }, + "Y": { + "type": "float", + "value": 42.22009658813477 + }, + "Z": { + "type": "float", + "value": -2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 45.83562850952148 + }, + "Y": { + "type": "float", + "value": 25.5269947052002 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 43.54978561401367 + }, + "Y": { + "type": "float", + "value": 40.94205093383789 + }, + "Z": { + "type": "float", + "value": 2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 101 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14747 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 459 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Autumn" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_treeautumn" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 29.97814559936523 + }, + "Y": { + "type": "float", + "value": 38.62451171875 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 31.14458847045898 + }, + "Y": { + "type": "float", + "value": 27.79216766357422 + }, + "Z": { + "type": "float", + "value": 0.1395587921142578 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 101 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14747 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 459 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Autumn" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_treeautumn" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.15593719482422 + }, + "Y": { + "type": "float", + "value": 31.77992057800293 + }, + "Z": { + "type": "float", + "value": -5.960464477539063e-008 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 340 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68852 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9208 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 779 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Ivy" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_ivy" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 30.83228302001953 + }, + "Y": { + "type": "float", + "value": 4.831344127655029 + }, + "Z": { + "type": "float", + "value": 1.402871608734131 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 176 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14750 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5819 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 534 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "WaterDrip" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_waterdrip" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 29.47326850891113 + }, + "Y": { + "type": "float", + "value": 5.476925373077393 + }, + "Z": { + "type": "float", + "value": 0.04131236672401428 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 28 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "A portal glows softly before you. You wonder where it leads.", + "id": 14533 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Genesis Exit Portal", + "id": 5670 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "psi_gen_exit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 386 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "GenesisExit01" + }, + "TemplateResRef": { + "type": "resref", + "value": "genesisexit" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.85512161254883 + }, + "Y": { + "type": "float", + "value": 11.55957317352295 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67806 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 8.0 + }, + "MinDistance": { + "type": "float", + "value": 0.800000011920929 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_cv_firecamp1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "Campfire" + }, + "TemplateResRef": { + "type": "resref", + "value": "campfire" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 42.78046035766602 + }, + "YPosition": { + "type": "float", + "value": 9.796939849853516 + }, + "ZPosition": { + "type": "float", + "value": 1.5 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67978 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_steamlg1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "SteamSmallLoop" + }, + "TemplateResRef": { + "type": "resref", + "value": "steamsmallloop" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 34.60498046875 + }, + "YPosition": { + "type": "float", + "value": 20.61979675292969 + }, + "ZPosition": { + "type": "float", + "value": 0.9752120971679688 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68014 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_waterfall2" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WaterfallLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "waterfalllarge" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 36.21855545043945 + }, + "YPosition": { + "type": "float", + "value": 36.72332382202148 + }, + "ZPosition": { + "type": "float", + "value": 2.400820016860962 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68007 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 1 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_twigsnap1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_twigsnap2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_twigsnap3" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "TwigSnaps" + }, + "TemplateResRef": { + "type": "resref", + "value": "twigsnaps" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 14.50231838226318 + }, + "YPosition": { + "type": "float", + "value": 30.95841979980469 + }, + "ZPosition": { + "type": "float", + "value": 1.553110957145691 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67886 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 6.0 + }, + "MinDistance": { + "type": "float", + "value": 0.6000000238418579 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 1 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_leafmove1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_leafmove2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_leafmove3" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "LeafRustles" + }, + "TemplateResRef": { + "type": "resref", + "value": "leafrustles" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 22.1506290435791 + }, + "YPosition": { + "type": "float", + "value": 43.13840103149414 + }, + "ZPosition": { + "type": "float", + "value": 1.500010013580322 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67845 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_mg_entrmyst1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "EntranceMysterious" + }, + "TemplateResRef": { + "type": "resref", + "value": "entrancemysterio" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 20.66150856018066 + }, + "YPosition": { + "type": "float", + "value": 11.34990882873535 + }, + "ZPosition": { + "type": "float", + "value": 1.50374698638916 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "_AREASTART_EreWood" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 20.94911575317383 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 11.40368461608887 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + } + ] + } +} diff --git a/_module/git/frostedpits.git.json b/_module/git/frostedpits.git.json new file mode 100644 index 0000000..4e61823 --- /dev/null +++ b/_module/git/frostedpits.git.json @@ -0,0 +1,16452 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 103 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 82 + }, + "AmbientSndNight": { + "type": "int", + "value": 103 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 82 + }, + "EnvAudio": { + "type": "int", + "value": 51 + }, + "MusicBattle": { + "type": "int", + "value": 73 + }, + "MusicDay": { + "type": "int", + "value": 68 + }, + "MusicDelay": { + "type": "int", + "value": 54000 + }, + "MusicNight": { + "type": "int", + "value": 68 + } + } + }, + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 14 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 6 + }, + "ChallengeRating": { + "type": "float", + "value": 6.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 8 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 19 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 36 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12388 + } + }, + "Dex": { + "type": "byte", + "value": 13 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13270 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13270 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 4500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13249 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 19 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS017" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12389 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 36 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 68 + }, + "NaturalAC": { + "type": "byte", + "value": 5 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 149 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 7 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 7 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 27 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_BEARPOLAR" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_bearpolar" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 4.053074836730957 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 70.16854858398438 + }, + "ZPosition": { + "type": "float", + "value": 5.003868103027344 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 14 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 6 + }, + "ChallengeRating": { + "type": "float", + "value": 6.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 8 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 19 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 36 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12388 + } + }, + "Dex": { + "type": "byte", + "value": 13 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13270 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13270 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 4500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13249 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 19 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS017" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12389 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 36 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 68 + }, + "NaturalAC": { + "type": "byte", + "value": 5 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 149 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 7 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 7 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 27 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_BEARPOLAR" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_bearpolar" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 6.238808631896973 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 9.337347030639648 + }, + "ZPosition": { + "type": "float", + "value": 10.01521682739258 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 14 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 6 + }, + "ChallengeRating": { + "type": "float", + "value": 6.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 8 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 19 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 36 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12388 + } + }, + "Dex": { + "type": "byte", + "value": 13 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13270 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13270 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 4500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13249 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 19 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS017" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12389 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 36 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 68 + }, + "NaturalAC": { + "type": "byte", + "value": 5 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 149 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 7 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 7 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 27 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_BEARPOLAR" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_bearpolar" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 67.69664001464844 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 11.91598606109619 + }, + "ZPosition": { + "type": "float", + "value": 9.999999046325684 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 14 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 6 + }, + "ChallengeRating": { + "type": "float", + "value": 6.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 8 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 19 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 36 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12388 + } + }, + "Dex": { + "type": "byte", + "value": 13 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13270 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13270 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 4500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13249 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 19 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS017" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12389 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 36 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 68 + }, + "NaturalAC": { + "type": "byte", + "value": 5 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 149 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 7 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 7 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 27 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_BEARPOLAR" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_bearpolar" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 50.54922866821289 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 71.91645812988281 + }, + "ZPosition": { + "type": "float", + "value": 4.999993801116943 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 184 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 5.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 23 + }, + "ClassLevel": { + "type": "short", + "value": 6 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 16 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 33 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12817 + } + }, + "Dex": { + "type": "byte", + "value": 13 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13074 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEM026" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_creitem026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12818 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 4 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 33 + }, + "Int": { + "type": "byte", + "value": 9 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 51 + }, + "NaturalAC": { + "type": "byte", + "value": 5 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 320 + }, + "Race": { + "type": "byte", + "value": 19 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 7 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 105 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 230 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 6 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 230 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 6 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 230 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 6 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 18 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_WOLFWINT" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wolfwint" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 13 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 39.93544006347656 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 68.47137451171875 + }, + "ZPosition": { + "type": "float", + "value": 10.0 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 184 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 5.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 23 + }, + "ClassLevel": { + "type": "short", + "value": 6 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 16 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 33 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12817 + } + }, + "Dex": { + "type": "byte", + "value": 13 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13074 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEM026" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_creitem026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12818 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 4 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 33 + }, + "Int": { + "type": "byte", + "value": 9 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 51 + }, + "NaturalAC": { + "type": "byte", + "value": 5 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 320 + }, + "Race": { + "type": "byte", + "value": 19 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 7 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 105 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 230 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 6 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 230 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 6 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 230 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 6 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 18 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_WOLFWINT" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wolfwint" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 13 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 12.07069492340088 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 2.657718181610107 + }, + "ZPosition": { + "type": "float", + "value": 15.00350952148438 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 184 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 5.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 23 + }, + "ClassLevel": { + "type": "short", + "value": 6 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 16 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 33 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12817 + } + }, + "Dex": { + "type": "byte", + "value": 13 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13242 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS010" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13074 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEM026" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_creitem026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12818 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 4 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 33 + }, + "Int": { + "type": "byte", + "value": 9 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 51 + }, + "NaturalAC": { + "type": "byte", + "value": 5 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 320 + }, + "Race": { + "type": "byte", + "value": 19 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 7 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 105 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 230 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 6 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 230 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 6 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 230 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 6 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 18 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_WOLFWINT" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wolfwint" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 13 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 77.75867462158203 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 45.96895599365234 + }, + "ZPosition": { + "type": "float", + "value": 5.238701820373535 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 94 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 6 + }, + "ChallengeRating": { + "type": "float", + "value": 2.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 3 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 15 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 16 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12429 + } + }, + "Dex": { + "type": "byte", + "value": 19 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 3124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13253 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS021" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps021" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13101 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 54 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEM081" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_creitem081" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 57919 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 16 + }, + "Int": { + "type": "byte", + "value": 13 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 22 + }, + "NaturalAC": { + "type": "byte", + "value": 2 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 164 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 19 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 16 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_CRAGCAT" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_cragcat" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 59.94933700561523 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 77.38079071044922 + }, + "ZPosition": { + "type": "float", + "value": 9.999999046325684 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 94 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 6 + }, + "ChallengeRating": { + "type": "float", + "value": 2.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 3 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 15 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 16 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12429 + } + }, + "Dex": { + "type": "byte", + "value": 19 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 3124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13253 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS021" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps021" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13101 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 54 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEM081" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_creitem081" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 57919 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 16 + }, + "Int": { + "type": "byte", + "value": 13 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 22 + }, + "NaturalAC": { + "type": "byte", + "value": 2 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 164 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 19 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 16 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_CRAGCAT" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_cragcat" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 1.767436027526856 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.20157623291016 + }, + "ZPosition": { + "type": "float", + "value": 4.999994277954102 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 94 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 6 + }, + "ChallengeRating": { + "type": "float", + "value": 2.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 3 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 15 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 16 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12429 + } + }, + "Dex": { + "type": "byte", + "value": 19 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 3124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13253 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS021" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps021" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13101 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 54 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEM081" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_creitem081" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 57919 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 16 + }, + "Int": { + "type": "byte", + "value": 13 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 22 + }, + "NaturalAC": { + "type": "byte", + "value": 2 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 164 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 19 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 16 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_CRAGCAT" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_cragcat" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 30.12269401550293 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 10.23370361328125 + }, + "ZPosition": { + "type": "float", + "value": 4.999995231628418 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 37 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 0.3333333432674408 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 10 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 5 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12439 + } + }, + "Dex": { + "type": "byte", + "value": 11 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 70 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13230 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12441 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 5 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 5 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 175 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_herbivore" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 24 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 10 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_DEERSTAG" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_deerstag" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 44.25854873657227 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 22.75637054443359 + }, + "ZPosition": { + "type": "float", + "value": 0.02256107330322266 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 37 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 0.3333333432674408 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 10 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 5 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12439 + } + }, + "Dex": { + "type": "byte", + "value": 11 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 70 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13230 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12441 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 5 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 5 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 175 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_herbivore" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 24 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 10 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_DEERSTAG" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_deerstag" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 60.17918014526367 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 54.45359802246094 + }, + "ZPosition": { + "type": "float", + "value": 9.573996067047119e-006 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 37 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 0.3333333432674408 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 10 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 5 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12439 + } + }, + "Dex": { + "type": "byte", + "value": 11 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 70 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13230 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12441 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 5 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 5 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 175 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_herbivore" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 24 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 10 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_DEERSTAG" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_deerstag" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 29.31690406799316 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 46.4936408996582 + }, + "ZPosition": { + "type": "float", + "value": 9.715557098388672e-006 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 37 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 0.3333333432674408 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 10 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 5 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12439 + } + }, + "Dex": { + "type": "byte", + "value": 11 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 70 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13230 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12441 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 5 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 5 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 175 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_herbivore" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 24 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 10 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_DEERSTAG" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_deerstag" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 10.04544448852539 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 30.9926872253418 + }, + "ZPosition": { + "type": "float", + "value": 9.715557098388672e-006 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 37 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 0.3333333432674408 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 10 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 5 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12439 + } + }, + "Dex": { + "type": "byte", + "value": 11 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 70 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13230 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpp005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12441 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 5 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 5 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 175 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "ambient_hb" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_herbivore" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 3 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 24 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 10 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_DEERSTAG" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_deerstag" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 18.15827751159668 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 77.56260681152344 + }, + "ZPosition": { + "type": "float", + "value": 10.24908447265625 + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 1 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.14158821105957 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "CaveExit" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_12" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.259999752044678 + }, + "Y": { + "type": "float", + "value": 5.510000228881836 + }, + "Z": { + "type": "float", + "value": 9.560000419616699 + } + }, + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 1 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "CaveExit" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_12" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 4.739999771118164 + }, + "Y": { + "type": "float", + "value": 74.48999786376953 + }, + "Z": { + "type": "float", + "value": 4.559999942779541 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 28 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "A portal glows softly before you. You wonder where it leads.", + "id": 14533 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Genesis Exit Portal", + "id": 5670 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "psi_gen_exit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 386 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "GenesisExit03" + }, + "TemplateResRef": { + "type": "resref", + "value": "genesisexit" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.457512855529785 + }, + "Y": { + "type": "float", + "value": 6.232297897338867 + }, + "Z": { + "type": "float", + "value": 9.679788589477539 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68026 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 2 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_wt_gustcavrn1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WindCaveLoop" + }, + "TemplateResRef": { + "type": "resref", + "value": "windcaveloop" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 3.724879741668701 + }, + "YPosition": { + "type": "float", + "value": 72.83248138427734 + }, + "ZPosition": { + "type": "float", + "value": 6.558197021484375 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68026 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 2 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_wt_gustcavrn1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WindCaveLoop" + }, + "TemplateResRef": { + "type": "resref", + "value": "windcaveloop" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 5.801910400390625 + }, + "YPosition": { + "type": "float", + "value": 6.903106689453125 + }, + "ZPosition": { + "type": "float", + "value": 11.45095634460449 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68027 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 2 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_wt_gustchasm1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WindChasmLoop" + }, + "TemplateResRef": { + "type": "resref", + "value": "windchasmloop" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 37.14417266845703 + }, + "YPosition": { + "type": "float", + "value": 40.06641387939453 + }, + "ZPosition": { + "type": "float", + "value": 1.499998569488525 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 10000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91311 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.300000011920929 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak10" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak5" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak6" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak7" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak8" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak9" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "IceCracking" + }, + "TemplateResRef": { + "type": "resref", + "value": "icecracking" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 50.90689849853516 + }, + "YPosition": { + "type": "float", + "value": 75.14443969726563 + }, + "ZPosition": { + "type": "float", + "value": 5.999999523162842 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 10000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91311 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.300000011920929 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak10" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak5" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak6" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak7" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak8" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrak9" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "IceCracking" + }, + "TemplateResRef": { + "type": "resref", + "value": "icecracking" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 41.52766418457031 + }, + "YPosition": { + "type": "float", + "value": 3.519330024719238 + }, + "ZPosition": { + "type": "float", + "value": 11.08508682250977 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 10000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91312 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.300000011920929 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb10" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb5" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb6" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb7" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb8" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb9" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "IceCrumbling" + }, + "TemplateResRef": { + "type": "resref", + "value": "icecrumbling" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 10.31266021728516 + }, + "YPosition": { + "type": "float", + "value": 50.02861022949219 + }, + "ZPosition": { + "type": "float", + "value": 1.0 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 10000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91312 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.300000011920929 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb10" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb5" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb6" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb7" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb8" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_na_x2iccrmb9" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "IceCrumbling" + }, + "TemplateResRef": { + "type": "resref", + "value": "icecrumbling" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 76.26280212402344 + }, + "YPosition": { + "type": "float", + "value": 31.39634704589844 + }, + "ZPosition": { + "type": "float", + "value": 6.099337100982666 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67895 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_mg_crystalgd1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "MagicCrystalGood" + }, + "TemplateResRef": { + "type": "resref", + "value": "magiccrystalgood" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 19.8398551940918 + }, + "YPosition": { + "type": "float", + "value": 39.80170059204102 + }, + "ZPosition": { + "type": "float", + "value": 2.100000143051148 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67894 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_mg_crystalev1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "MagicCrystalEvil" + }, + "TemplateResRef": { + "type": "resref", + "value": "magiccrystalevil" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 59.01568603515625 + }, + "YPosition": { + "type": "float", + "value": 39.53620529174805 + }, + "ZPosition": { + "type": "float", + "value": 1.799998044967651 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68036 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_bearwolf1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_bearwolf2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_bearwolf3" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WolfBearCaveGrunts" + }, + "TemplateResRef": { + "type": "resref", + "value": "wolfbearcavegrun" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 4.173910617828369 + }, + "YPosition": { + "type": "float", + "value": 73.39936065673828 + }, + "ZPosition": { + "type": "float", + "value": 6.351634025573731 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68036 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_bearwolf1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_bearwolf2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_bearwolf3" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WolfBearCaveGrunts" + }, + "TemplateResRef": { + "type": "resref", + "value": "wolfbearcavegrun" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 6.16208553314209 + }, + "YPosition": { + "type": "float", + "value": 6.651600360870361 + }, + "ZPosition": { + "type": "float", + "value": 11.42726707458496 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67839 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 1 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark5" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark6" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark7" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogsbark1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogsbark2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogsbark3" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "DogBarks" + }, + "TemplateResRef": { + "type": "resref", + "value": "dogbarks" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 15.50753593444824 + }, + "YPosition": { + "type": "float", + "value": 8.092945098876953 + }, + "ZPosition": { + "type": "float", + "value": 12.21456909179688 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67839 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 1 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark5" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark6" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogbark7" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogsbark1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogsbark2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_dogsbark3" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "DogBarks" + }, + "TemplateResRef": { + "type": "resref", + "value": "dogbarks" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 2.63873291015625 + }, + "YPosition": { + "type": "float", + "value": 8.733558654785156 + }, + "ZPosition": { + "type": "float", + "value": 11.88608932495117 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 5000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 2000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67809 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 1 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_catscrech1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_an_catscrech2" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "CatScreeches" + }, + "TemplateResRef": { + "type": "resref", + "value": "catscreeches" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 60.30273818969727 + }, + "YPosition": { + "type": "float", + "value": 73.92276000976563 + }, + "ZPosition": { + "type": "float", + "value": 6.762356281280518 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.3460960388183594 + }, + "PointY": { + "type": "float", + "value": -13.18122100830078 + }, + "PointZ": { + "type": "float", + "value": 0.02500003017485142 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 10.10875701904297 + }, + "PointY": { + "type": "float", + "value": -12.62993621826172 + }, + "PointZ": { + "type": "float", + "value": 0.3294300138950348 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 10.02248382568359 + }, + "PointY": { + "type": "float", + "value": -1.512523651123047 + }, + "PointZ": { + "type": "float", + "value": 0.3294300138950348 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.0005492072086781263 + }, + "PointY": { + "type": "float", + "value": -0.02091973647475243 + }, + "PointZ": { + "type": "float", + "value": 0.02500003017485142 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Temptation", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_temp_ent" + }, + "ScriptOnExit": { + "type": "resref", + "value": "prc_temp_exit" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "Temptation" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 54.11525726318359 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 47.01245880126953 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -9.353228569030762 + }, + "PointY": { + "type": "float", + "value": -0.04742050170898438 + }, + "PointZ": { + "type": "float", + "value": 0.3250000178813934 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.035675048828125 + }, + "PointY": { + "type": "float", + "value": 0.1060066223144531 + }, + "PointZ": { + "type": "float", + "value": 0.3250000178813934 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.3249999582767487 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01214790344238281 + }, + "PointY": { + "type": "float", + "value": 9.008190155029297 + }, + "PointZ": { + "type": "float", + "value": 0.3249999582767487 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -8.777863502502441 + }, + "PointY": { + "type": "float", + "value": 8.927845001220703 + }, + "PointZ": { + "type": "float", + "value": 0.3250000178813934 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Compassion", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_comp_ent" + }, + "ScriptOnExit": { + "type": "resref", + "value": "prc_comp_exit" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "Compassion" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 24.13382339477539 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 35.56645584106445 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Compassion", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "prc_compassion" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.9987953901290894 + }, + "XPosition": { + "type": "float", + "value": 19.87619972229004 + }, + "YOrientation": { + "type": "float", + "value": 0.04906884208321571 + }, + "YPosition": { + "type": "float", + "value": 39.88788604736328 + }, + "ZPosition": { + "type": "float", + "value": 0.599992573261261 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Temptation", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "prc_temptation" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -0.9972904920578003 + }, + "XPosition": { + "type": "float", + "value": 59.26678848266602 + }, + "YOrientation": { + "type": "float", + "value": -0.07356434315443039 + }, + "YPosition": { + "type": "float", + "value": 39.8704948425293 + }, + "ZPosition": { + "type": "float", + "value": 0.3000001609325409 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "TempToCompassion", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "prc_runrunrun" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -0.9987953901290894 + }, + "XPosition": { + "type": "float", + "value": 23.06696701049805 + }, + "YOrientation": { + "type": "float", + "value": 0.04906848445534706 + }, + "YPosition": { + "type": "float", + "value": 39.79159164428711 + }, + "ZPosition": { + "type": "float", + "value": 0.3000019192695618 + } + } + ] + } +} diff --git a/_module/git/frozentimes.git.json b/_module/git/frozentimes.git.json new file mode 100644 index 0000000..cb3e977 --- /dev/null +++ b/_module/git/frozentimes.git.json @@ -0,0 +1,18564 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 103 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 82 + }, + "AmbientSndNight": { + "type": "int", + "value": 103 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 82 + }, + "EnvAudio": { + "type": "int", + "value": 51 + }, + "MusicBattle": { + "type": "int", + "value": 73 + }, + "MusicDay": { + "type": "int", + "value": 68 + }, + "MusicDelay": { + "type": "int", + "value": 54000 + }, + "MusicNight": { + "type": "int", + "value": 68 + } + } + }, + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 50 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 14 + }, + "ChallengeRating": { + "type": "float", + "value": 20.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 18 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 23 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 195 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12496 + } + }, + "Dex": { + "type": "byte", + "value": 10 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2000 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13274 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP015" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp015" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 2000 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13274 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP015" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp015" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 4500 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13249 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 19 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS017" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13185 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEMDRU" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_creitemdru" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12499 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 195 + }, + "Int": { + "type": "byte", + "value": 14 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 4 + }, + "BaseItem": { + "type": "int", + "value": 79 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58571 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Dropable": { + "type": "byte", + "value": 1 + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13499 + } + }, + "ModelPart1": { + "type": "byte", + "value": 47 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC17" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc17" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 375 + }, + "NaturalAC": { + "type": "byte", + "value": 29 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 200 + }, + "Race": { + "type": "byte", + "value": 11 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "nw_c2_default1" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_dropin9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 25 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 29 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 412 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 237 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 237 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 237 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 33 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_DRGWHITE003" + }, + "Tail": { + "type": "byte", + "value": 205 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_drgwhite003" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 205 + }, + "Wis": { + "type": "byte", + "value": 15 + }, + "XOrientation": { + "type": "float", + "value": 0.09801898896694183 + }, + "XPosition": { + "type": "float", + "value": 60.32331466674805 + }, + "YOrientation": { + "type": "float", + "value": -0.9951845407485962 + }, + "YPosition": { + "type": "float", + "value": 59.82872772216797 + }, + "ZPosition": { + "type": "float", + "value": 5.599997520446777 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 350 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 11 + }, + "ChallengeRating": { + "type": "float", + "value": 9.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 22 + }, + "ClassLevel": { + "type": "short", + "value": 14 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 21 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": -2 + }, + "CurrentHitPoints": { + "type": "short", + "value": 63 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 40608 + } + }, + "Dex": { + "type": "byte", + "value": 9 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 15 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 3 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 12 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 6 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 15 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 36 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 2 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Leather1Color": { + "type": "byte", + "value": 2 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 12844 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_AARCL012" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_aarcl012" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 5 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 24 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 178 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WBLHW001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_wblhw001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13074 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEM026" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_creitem026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 2 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12560 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 63 + }, + "Int": { + "type": "byte", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 1 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 133 + }, + "NaturalAC": { + "type": "byte", + "value": 9 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 606 + }, + "Race": { + "type": "byte", + "value": 18 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "nw_c2_default1" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 306 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 29 + }, + "Subrace": { + "type": "cexostring", + "value": "Frost Giant" + }, + "Tag": { + "type": "cexostring", + "value": "X0_GNTFROSTFEM" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_gntfrostfem" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 10 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 32.63839721679688 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 34.8922233581543 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 1 + }, + "Appearance": { + "type": "dword", + "value": 57 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "CaveExit" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_12" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 54.7400016784668 + }, + "Y": { + "type": "float", + "value": 44.4900016784668 + }, + "Z": { + "type": "float", + "value": -0.4399999976158142 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 451 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84192 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 83445 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_o2_dead" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_act" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 934 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_CRYSTAL" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_crystal" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 41.7271614074707 + }, + "Y": { + "type": "float", + "value": 17.66576385498047 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 308 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68828 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68827 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "DragonSkull" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_dragonskull" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 56.248046875 + }, + "Y": { + "type": "float", + "value": 35.25865173339844 + }, + "Z": { + "type": "float", + "value": -7.450580596923828e-008 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 49.08445358276367 + }, + "Y": { + "type": "float", + "value": 66.03533172607422 + }, + "Z": { + "type": "float", + "value": 4.999999523162842 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 47.95262145996094 + }, + "Y": { + "type": "float", + "value": 64.00995635986328 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 46.8934326171875 + }, + "Y": { + "type": "float", + "value": 61.60863494873047 + }, + "Z": { + "type": "float", + "value": 4.868855953216553 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 50.71347808837891 + }, + "Y": { + "type": "float", + "value": 63.52807998657227 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 49.41516494750977 + }, + "Y": { + "type": "float", + "value": 61.46741104125977 + }, + "Z": { + "type": "float", + "value": 4.999999523162842 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 48.54387283325195 + }, + "Y": { + "type": "float", + "value": 60.10503768920898 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 50.68542098999023 + }, + "Y": { + "type": "float", + "value": 60.95910263061523 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 46.88002014160156 + }, + "Y": { + "type": "float", + "value": 59.2713623046875 + }, + "Z": { + "type": "float", + "value": 4.994723320007324 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 46.68419647216797 + }, + "Y": { + "type": "float", + "value": 64.84496307373047 + }, + "Z": { + "type": "float", + "value": 4.994669914245606 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 47.84859085083008 + }, + "Y": { + "type": "float", + "value": 67.10862731933594 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 60.74097061157227 + }, + "Y": { + "type": "float", + "value": 72.38359069824219 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 58.79701232910156 + }, + "Y": { + "type": "float", + "value": 73.17123413085938 + }, + "Z": { + "type": "float", + "value": 5.151451587677002 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 62.89883041381836 + }, + "Y": { + "type": "float", + "value": 70.36428070068359 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 60.01786422729492 + }, + "Y": { + "type": "float", + "value": 73.53015899658203 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 57.73852157592773 + }, + "Y": { + "type": "float", + "value": 71.81344604492188 + }, + "Z": { + "type": "float", + "value": 5.172584056854248 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 58.82275772094727 + }, + "Y": { + "type": "float", + "value": 70.51148223876953 + }, + "Z": { + "type": "float", + "value": 4.999993324279785 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 61.04131317138672 + }, + "Y": { + "type": "float", + "value": 69.34561157226563 + }, + "Z": { + "type": "float", + "value": 5.553660869598389 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 64.64189910888672 + }, + "Y": { + "type": "float", + "value": 71.84975433349609 + }, + "Z": { + "type": "float", + "value": 5.059110164642334 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 50.08037567138672 + }, + "Y": { + "type": "float", + "value": 72.41670227050781 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 50.43076324462891 + }, + "Y": { + "type": "float", + "value": 69.24464416503906 + }, + "Z": { + "type": "float", + "value": 4.999995231628418 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 46.66476821899414 + }, + "Y": { + "type": "float", + "value": 72.38181304931641 + }, + "Z": { + "type": "float", + "value": 5.11177921295166 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 46.8150749206543 + }, + "Y": { + "type": "float", + "value": 68.96302795410156 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 55.77278518676758 + }, + "Y": { + "type": "float", + "value": 70.99416351318359 + }, + "Z": { + "type": "float", + "value": 5.025306701660156 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 52.44454956054688 + }, + "Y": { + "type": "float", + "value": 68.77835083007813 + }, + "Z": { + "type": "float", + "value": 4.999995231628418 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 54.10591888427734 + }, + "Y": { + "type": "float", + "value": 70.72537231445313 + }, + "Z": { + "type": "float", + "value": 4.999993324279785 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 70.84790802001953 + }, + "Y": { + "type": "float", + "value": 72.56570434570313 + }, + "Z": { + "type": "float", + "value": 5.000926017761231 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 67.52745819091797 + }, + "Y": { + "type": "float", + "value": 72.30512237548828 + }, + "Z": { + "type": "float", + "value": 5.382365226745606 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 70.10343170166016 + }, + "Y": { + "type": "float", + "value": 69.20662689208984 + }, + "Z": { + "type": "float", + "value": 4.999993324279785 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 66.91497039794922 + }, + "Y": { + "type": "float", + "value": 68.45700073242188 + }, + "Z": { + "type": "float", + "value": 4.999995231628418 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 73.58152770996094 + }, + "Y": { + "type": "float", + "value": 69.74207305908203 + }, + "Z": { + "type": "float", + "value": 4.999993324279785 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 259 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 0 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58566 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13494 + } + }, + "ModelPart1": { + "type": "byte", + "value": 66 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc12" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 10 + }, + "BaseItem": { + "type": "int", + "value": 24 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 58565 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13493 + } + }, + "ModelPart1": { + "type": "byte", + "value": 68 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MSMLMISC11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_msmlmisc11" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 78634 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 795 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepine2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepine2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 72.29473876953125 + }, + "Y": { + "type": "float", + "value": 49.39811706542969 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 256 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68921 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9270 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 813 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_stonepatch" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_stonepatch" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 23.66611480712891 + }, + "Y": { + "type": "float", + "value": 60.83400726318359 + }, + "Z": { + "type": "float", + "value": -0.004436105489730835 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 256 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68921 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9270 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 813 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_stonepatch" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_stonepatch" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 21.79962348937988 + }, + "Y": { + "type": "float", + "value": 60.82422256469727 + }, + "Z": { + "type": "float", + "value": 2.980232238769531e-008 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 95 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14736 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5738 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 453 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Stones" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_stones" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 28.06956291198731 + }, + "Y": { + "type": "float", + "value": 45.71199417114258 + }, + "Z": { + "type": "float", + "value": -3.725290298461914e-008 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 291 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68817 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68816 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_deadtree" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_deadtree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 38.1356201171875 + }, + "Y": { + "type": "float", + "value": 51.00682067871094 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 148 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 2.822523355484009 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14609 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5791 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 506 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "DustPlume" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_dustplume" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 54.67763519287109 + }, + "Y": { + "type": "float", + "value": 45.00867462158203 + }, + "Z": { + "type": "float", + "value": -0.6045936346054077 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 28 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "A portal glows softly before you. You wonder where it leads.", + "id": 14533 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Genesis Exit Portal", + "id": 5670 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "psi_gen_exit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 386 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "GenesisExit06" + }, + "TemplateResRef": { + "type": "resref", + "value": "genesisexit" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 65.08859252929688 + }, + "Y": { + "type": "float", + "value": 25.12516403198242 + }, + "Z": { + "type": "float", + "value": 0.600001335144043 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68034 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_wt_guststrng1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WindGustStrong" + }, + "TemplateResRef": { + "type": "resref", + "value": "windguststrong" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 48.63042449951172 + }, + "YPosition": { + "type": "float", + "value": 47.05260848999023 + }, + "ZPosition": { + "type": "float", + "value": 6.509417057037354 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67998 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_wt_thundercl1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_wt_thundercl2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_wt_thundercl3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_wt_thundercl4" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "ThunderClapsNear" + }, + "TemplateResRef": { + "type": "resref", + "value": "thunderclapsnear" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 48.183349609375 + }, + "YPosition": { + "type": "float", + "value": 49.49951934814453 + }, + "ZPosition": { + "type": "float", + "value": 6.577246189117432 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67794 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 1 + }, + "RandomRangeX": { + "type": "float", + "value": 10.0 + }, + "RandomRangeY": { + "type": "float", + "value": 10.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_cv_bell1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_cv_bell2" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "BellRings" + }, + "TemplateResRef": { + "type": "resref", + "value": "bellrings" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 60.23028182983398 + }, + "YPosition": { + "type": "float", + "value": 56.69518661499023 + }, + "ZPosition": { + "type": "float", + "value": 6.800005912780762 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": {} + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WP_X0_GNTFROSTFEM_01" + }, + "TemplateResRef": { + "type": "resref", + "value": "" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 24.53375244140625 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 29.55638885498047 + }, + "ZPosition": { + "type": "float", + "value": 9.298324584960938e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": {} + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WP_X0_GNTFROSTFEM_02" + }, + "TemplateResRef": { + "type": "resref", + "value": "" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 32.41534042358398 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 48.59499359130859 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": {} + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WP_X0_GNTFROSTFEM_03" + }, + "TemplateResRef": { + "type": "resref", + "value": "" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 19.72475242614746 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 45.4804801940918 + }, + "ZPosition": { + "type": "float", + "value": -4.470348358154297e-008 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": {} + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WP_X0_GNTFROSTFEM_04" + }, + "TemplateResRef": { + "type": "resref", + "value": "" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 17.1971378326416 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 57.31543731689453 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": {} + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WP_X0_GNTFROSTFEM_05" + }, + "TemplateResRef": { + "type": "resref", + "value": "" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 54.21684265136719 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 29.1310977935791 + }, + "ZPosition": { + "type": "float", + "value": 9.804964065551758e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": {} + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WP_X0_GNTFROSTFEM_06" + }, + "TemplateResRef": { + "type": "resref", + "value": "" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 64.37526702880859 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 47.94871520996094 + }, + "ZPosition": { + "type": "float", + "value": 4.388723373413086 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": {} + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WP_X0_GNTFROSTFEM_07" + }, + "TemplateResRef": { + "type": "resref", + "value": "" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 36.18491744995117 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 27.59383583068848 + }, + "ZPosition": { + "type": "float", + "value": 0.02670013159513474 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": {} + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WP_X0_GNTFROSTFEM_08" + }, + "TemplateResRef": { + "type": "resref", + "value": "" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 33.43443298339844 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 32.30613327026367 + }, + "ZPosition": { + "type": "float", + "value": 1.192092895507813e-007 + } + } + ] + } +} diff --git a/_module/git/hallofheroes.git.json b/_module/git/hallofheroes.git.json new file mode 100644 index 0000000..ca8cd4a --- /dev/null +++ b/_module/git/hallofheroes.git.json @@ -0,0 +1,96781 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 12 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 66 + }, + "AmbientSndNight": { + "type": "int", + "value": 12 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 65 + }, + "EnvAudio": { + "type": "int", + "value": 104 + }, + "MusicBattle": { + "type": "int", + "value": 0 + }, + "MusicDay": { + "type": "int", + "value": 76 + }, + "MusicDelay": { + "type": "int", + "value": 30000 + }, + "MusicNight": { + "type": "int", + "value": 76 + } + } + }, + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 22 + }, + "Appearance_Type": { + "type": "word", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 1127.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 5 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 8 + }, + "Color_Skin": { + "type": "byte", + "value": 12 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Gabriel is Starfall's right hand man." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 20000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 44 + }, + "Cost": { + "type": "dword", + "value": 104736960 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91091 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 44 + }, + "Leather2Color": { + "type": "byte", + "value": 44 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91090 + } + }, + "Metal1Color": { + "type": "byte", + "value": 36 + }, + "Metal2Color": { + "type": "byte", + "value": 36 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 15 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 75 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 38 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer2" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12251 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13336 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13337 + } + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS002" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 36 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 9144142 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67487 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Angel Gloves", + "id": 90882 + } + }, + "ModelPart1": { + "type": "byte", + "value": 9 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 2 + }, + "Param1Value": { + "type": "byte", + "value": 2 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 18 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MGLOVE014" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mglove019" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 5 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Gabriel" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2314 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "x2_def_onconv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 161 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 5 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "g_angel10" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "starfall2" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 2 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 2.0178156773909e-005 + }, + "XPosition": { + "type": "float", + "value": 22.53587150573731 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 67.21185302734375 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 14 + }, + "Appearance_Type": { + "type": "word", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 1130.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 16 + }, + "Color_Skin": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 400 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Starfall is the founder of the Academy of Champions, a magnificent facility floating above the humble town of Pinevale. It is in this academy where he runs the Arena of Champions, a place where some of the bravest heroes come to test their mettle against worthy opponents. Don't be fooled by Starfall's peaceful manner. He is by far the most formiddable warrior you will ever meet." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 20000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 26 + }, + "Cloth2Color": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 104736960 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91091 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 44 + }, + "Leather2Color": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91090 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 15 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 75 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 38 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer2" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 36 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 9144142 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67487 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Angel Gloves", + "id": 90882 + } + }, + "ModelPart1": { + "type": "byte", + "value": 9 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 2 + }, + "Param1Value": { + "type": "byte", + "value": 2 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 18 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MGLOVE014" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mglove019" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 5 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Starfall" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 400 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 1200 + }, + "NaturalAC": { + "type": "byte", + "value": 20 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 101 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "x2_def_onconv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 224 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "starfall_mc" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "starfall" + }, + "WalkRate": { + "type": "int", + "value": 4 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 2 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": -2.0178156773909e-005 + }, + "XPosition": { + "type": "float", + "value": 25.00702285766602 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 67.11239624023438 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 18 + }, + "Appearance_Type": { + "type": "word", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 55.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 5 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 8 + }, + "Color_Skin": { + "type": "byte", + "value": 9 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Nazerae is as powerful as she is beautiful. Daughter of Tyr and Isis, she is compelled to do good wherever she goes. Heaven help those who do evil when she is around." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 157 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 92 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 151 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 157 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 151 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 157 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 155 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 92 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 151 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 152 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 46 + }, + "Cloth2Color": { + "type": "byte", + "value": 47 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16807854 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 26 + }, + "Leather2Color": { + "type": "byte", + "value": 25 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 16807702 + } + }, + "Metal1Color": { + "type": "byte", + "value": 32 + }, + "Metal2Color": { + "type": "byte", + "value": 8 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_GOWN2" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_gown003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12251 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13336 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13337 + } + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS002" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Nazerae the Scorceress of Light" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2329 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "rate_off" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 227 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 5 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "npc2" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "light_love_f" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 2.0178156773909e-005 + }, + "XPosition": { + "type": "float", + "value": 23.71649551391602 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 68.64816284179688 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 105 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 56.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 2 + }, + "Color_Skin": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "..." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 52 + }, + "Cloth2Color": { + "type": "byte", + "value": 46 + }, + "Cost": { + "type": "dword", + "value": 17 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 52 + }, + "Leather2Color": { + "type": "byte", + "value": 52 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 84264 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 14 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 25 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_arhelm03" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_arhelm004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 16 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 154 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 16 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 14 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 99509 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13776 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Crusader Plate", + "id": 91021 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_MAARCL048" + }, + "TemplateResRef": { + "type": "resref", + "value": "maarcl052" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 3 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 7290 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 16807318 + } + }, + "ModelPart1": { + "type": "byte", + "value": 114 + }, + "ModelPart2": { + "type": "byte", + "value": 141 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_BASTARDSW" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_bastardsw001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 1551 + } + }, + "ModelPart1": { + "type": "byte", + "value": 41 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHTO001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashto002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Guard" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1049 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv3" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "guard1" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "light_love_m001" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 23.08678817749023 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 1.497607469558716 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 105 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 56.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 2 + }, + "Color_Skin": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "..." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 52 + }, + "Cloth2Color": { + "type": "byte", + "value": 46 + }, + "Cost": { + "type": "dword", + "value": 17 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 52 + }, + "Leather2Color": { + "type": "byte", + "value": 52 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 84264 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 14 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 25 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 52 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_arhelm03" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_arhelm004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 16 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 154 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 21 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 17 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 16 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 14 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 99509 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13776 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Crusader Plate", + "id": 91021 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_MAARCL048" + }, + "TemplateResRef": { + "type": "resref", + "value": "maarcl052" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 3 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 7290 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 16807318 + } + }, + "ModelPart1": { + "type": "byte", + "value": 114 + }, + "ModelPart2": { + "type": "byte", + "value": 141 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_BASTARDSW" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_bastardsw001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 1551 + } + }, + "ModelPart1": { + "type": "byte", + "value": 41 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHTO001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashto002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Guard" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1049 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv3" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "guard2" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "light_love_m001" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 26.68765449523926 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 1.467541694641113 + }, + "ZPosition": { + "type": "float", + "value": -1.192092895507813e-007 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 105 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 55.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 2 + }, + "Color_Skin": { + "type": "byte", + "value": 20 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "..." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 3 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 40653 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 40652 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_ARMHE004" + }, + "TemplateResRef": { + "type": "resref", + "value": "armhe006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 10000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 22816 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91089 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91087 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 524 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 521 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer1" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Angel" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1049 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "angel_fly" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "l_angel1" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "angel2" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 2 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 21.34812545776367 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 6.271522521972656 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 105 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 55.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 2 + }, + "Color_Skin": { + "type": "byte", + "value": 20 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "..." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 3 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 40653 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 40652 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_ARMHE004" + }, + "TemplateResRef": { + "type": "resref", + "value": "armhe006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 10000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 22816 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91089 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91087 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 524 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 521 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer1" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Angel" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1049 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "angel_fly" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "l_angel2" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "angel2" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 2 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 21.2577075958252 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 11.37151432037354 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 105 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 55.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 2 + }, + "Color_Skin": { + "type": "byte", + "value": 20 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "..." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 3 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 40653 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 40652 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_ARMHE004" + }, + "TemplateResRef": { + "type": "resref", + "value": "armhe006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 10000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 22816 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91089 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91087 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 524 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 521 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer1" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Angel" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1049 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "angel_fly" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "l_angel3" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "angel2" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 2 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 21.24769020080566 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 16.34022521972656 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 105 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 55.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 2 + }, + "Color_Skin": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "..." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 3 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 40653 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 40652 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_ARMHE004" + }, + "TemplateResRef": { + "type": "resref", + "value": "armhe006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 10000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 22816 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91089 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91087 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 524 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 521 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer1" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Angel" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1049 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "angel_fly" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "l_angel4" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "angel2" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 2 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 20.98639297485352 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 21.27301979064941 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 105 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 55.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 2 + }, + "Color_Skin": { + "type": "byte", + "value": 31 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "..." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 21 + }, + "Cost": { + "type": "dword", + "value": 3 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 40653 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 40652 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_ARMHE004" + }, + "TemplateResRef": { + "type": "resref", + "value": "armhe007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 10000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 22816 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91089 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91087 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 524 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 521 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer1" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Demon" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1045 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "angel_fly" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "d_angel1" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "demon" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 1 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 28.99367332458496 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 6.239037036895752 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 1 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 55.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 2 + }, + "Color_Skin": { + "type": "byte", + "value": 31 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "..." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 21 + }, + "Cost": { + "type": "dword", + "value": 3 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 40653 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 40652 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_ARMHE004" + }, + "TemplateResRef": { + "type": "resref", + "value": "armhe007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 10000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 22816 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91089 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91087 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 524 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 521 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer1" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Demon" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1045 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "angel_fly" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "d_angel2" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "demon" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 1 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 28.93488502502441 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 11.17023849487305 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 105 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 55.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 2 + }, + "Color_Skin": { + "type": "byte", + "value": 31 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "..." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 21 + }, + "Cost": { + "type": "dword", + "value": 3 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 40653 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 40652 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_ARMHE004" + }, + "TemplateResRef": { + "type": "resref", + "value": "armhe007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 10000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 22816 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91089 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91087 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 524 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 521 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer1" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Demon" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1045 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "angel_fly" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "d_angel3" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "demon" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 1 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 28.95660972595215 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 16.27897453308106 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 1 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 55.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 2 + }, + "Color_Skin": { + "type": "byte", + "value": 31 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "..." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 17 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 21 + }, + "Cost": { + "type": "dword", + "value": 3 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 40653 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 40652 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "ModelPart1": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X0_ARMHE004" + }, + "TemplateResRef": { + "type": "resref", + "value": "armhe007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 10000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 22816 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91089 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91087 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 524 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 521 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer1" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Demon" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1045 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "angel_fly" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "d_angel4" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "demon" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 1 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 28.88736343383789 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 21.30954170227051 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 105 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 54.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 2 + }, + "Color_Skin": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Prince Charming is the desire of every woman who has ever laid eyes on him. If its not his fair, yet rigid looks, its his warm charming personality." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 16 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 3 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 8 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 113 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 8 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 15 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 3 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 44 + }, + "Cloth2Color": { + "type": "byte", + "value": 44 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 44 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 12926 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 2 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH025" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12251 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13336 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13337 + } + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS002" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Prince Charming" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2303 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "rate_def" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "npc1" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "light_love_m" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": -2.0178156773909e-005 + }, + "XPosition": { + "type": "float", + "value": 21.26997375488281 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 68.40805053710938 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 36 + }, + "Appearance_Type": { + "type": "word", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 55.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 5 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 23 + }, + "Color_Skin": { + "type": "byte", + "value": 3 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Khalae has a beauty beyond that of a mortal woman, yet she claims to be one. Rumour has it that she is the surrogate daughter of Vecna." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 150 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 159 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 157 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 151 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 115 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 5 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 164 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 157 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 151 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 115 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 116 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 45 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 41248 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 8 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "M2_CLOTH_014" + }, + "TemplateResRef": { + "type": "resref", + "value": "m2_cloth_016" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12251 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13336 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13337 + } + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS002" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Khalae the Dark Enchantress" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 546 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "rate_dam" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 205 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 5 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "npc3" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "dark_love_f" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": -2.0178156773909e-005 + }, + "XPosition": { + "type": "float", + "value": 26.26555633544922 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 68.67324066162109 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 106 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 63.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 10 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 18 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 22 + }, + "Color_Skin": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Vorn is a dark warlock and one of mephisto's key advocates in the mortal realm." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 151 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 161 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 154 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 3 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 162 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 18 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 121 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 151 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 161 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 154 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 7 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 112 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 162 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 18 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 160 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 14 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 160259 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 86673 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Executioner's Plate ", + "id": 90532 + } + }, + "Metal1Color": { + "type": "byte", + "value": 35 + }, + "Metal2Color": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_adaplate" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_adaplate005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12251 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13336 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13337 + } + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS002" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 45 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 9094 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14181 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14182 + } + }, + "ModelPart1": { + "type": "byte", + "value": 251 + }, + "ModelPart2": { + "type": "byte", + "value": 251 + }, + "ModelPart3": { + "type": "byte", + "value": 251 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 108 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 173 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 227 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 63 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WMGST005" + }, + "TemplateResRef": { + "type": "resref", + "value": "wmgst006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Vorn the Dark Warlock" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 725 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "rate1" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 169 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "npc4" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "dark_love_m" + }, + "WalkRate": { + "type": "int", + "value": 6 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 2.0178156773909e-005 + }, + "XPosition": { + "type": "float", + "value": 28.77993774414063 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 68.67526245117188 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1090 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 1127.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 5 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "This is Lucider's Second in Command" + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 20000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 44 + }, + "Cost": { + "type": "dword", + "value": 104736960 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91091 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 44 + }, + "Leather2Color": { + "type": "byte", + "value": 44 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91090 + } + }, + "Metal1Color": { + "type": "byte", + "value": 36 + }, + "Metal2Color": { + "type": "byte", + "value": 36 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 15 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 75 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 38 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer2" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12251 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13336 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13337 + } + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS002" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 36 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 9144142 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67487 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Angel Gloves", + "id": 90882 + } + }, + "ModelPart1": { + "type": "byte", + "value": 9 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 2 + }, + "Param1Value": { + "type": "byte", + "value": 2 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 18 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MGLOVE014" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mglove019" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 5 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Hell Minion" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2222 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "x2_def_onconv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 161 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 5 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "g_angel11" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "starfall3" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 2 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": -2.0178156773909e-005 + }, + "XPosition": { + "type": "float", + "value": 27.54843330383301 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 66.79213714599609 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1418 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 40 + }, + "ChallengeRating": { + "type": "float", + "value": 65.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 24 + }, + "ClassLevel": { + "type": "short", + "value": 10 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 25 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 31 + }, + "ClassLevel": { + "type": "short", + "value": 25 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 22 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 390 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Baal is one of the three Demon brothers who sought to transform the realm into a firey hell where he and his two brothers, Diablos and Mephisto would reign in blood for all eternity. Their plans were foiled by a mysterious hero who wielded incredible courage and determination, not to mention the fabled valkraine's armour and a deft blade. Baal's power was sealed in a soul stone and entrusted to Starfall, the Arch Angel commander. Contained by a powerful magic surrounding the Arena of Champions, Baal's power is used to train warriors of the light army. ", + "id": 16816564 + } + }, + "Dex": { + "type": "byte", + "value": 40 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 33391738 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Baals Claw", + "id": 13280 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 17 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 16 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 14 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP022" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp024" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 33391738 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Baals Claw", + "id": 13280 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 17 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 16 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 14 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP022" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp024" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 22128820 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Baals Bite", + "id": 90635 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 6 + }, + "Param1Value": { + "type": "byte", + "value": 14 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 8 + }, + "Param1Value": { + "type": "byte", + "value": 28 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_CREWPS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewps006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 94910208 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Baals Hide", + "id": 16807470 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 18 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_GLABRH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_glabr002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 408 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 455 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 456 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 532 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 425 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 909 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 979 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 966 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 876 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1071 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 656 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 694 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 292 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 19 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 25 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 746 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 221 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 460 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 461 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 462 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 291 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 290 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Baal: Lord of Destruction", + "id": 16808982 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 390 + }, + "Int": { + "type": "byte", + "value": 40 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 750 + }, + "NaturalAC": { + "type": "byte", + "value": 51 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2199 + }, + "Race": { + "type": "byte", + "value": 20 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv2" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 70 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 85 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 26 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 18 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 25 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 18 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 26 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 35 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 442 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 761 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 412 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 414 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 42 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 47 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 52 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 636 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 443 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 448 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 448 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 448 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 122 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 185 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 67 + }, + "Str": { + "type": "byte", + "value": 50 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "dlarge_4" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "lord" + }, + "WalkRate": { + "type": "int", + "value": 6 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 40 + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 39.82775497436523 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 54.75422286987305 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 41 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 34.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 18 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 2 + }, + "ClassLevel": { + "type": "short", + "value": 10 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 34 + }, + "ClassLevel": { + "type": "short", + "value": 10 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 13 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 300 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Death Wurms are closely related to their sister species, the Hell Wurm. The major difference is that Death Wurms feed on the souls of mortal warriors rather than their bodies." + } + }, + "Dex": { + "type": "byte", + "value": 10 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 3591280 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm Claw", + "id": 90700 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 12 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 8 + }, + "Param1Value": { + "type": "byte", + "value": 15 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_CREWPSP002" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5631258 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm Bite2", + "id": 90635 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_CREWPS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewps007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 15718889 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm Hide", + "id": 13165 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 20 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 50 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEMDRA" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_creitemdra002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 886 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 896 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 891 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 656 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 694 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 804 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 806 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 318 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 292 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 746 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 894 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 291 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 290 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 300 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 350 + }, + "NaturalAC": { + "type": "byte", + "value": 52 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 191 + }, + "Race": { + "type": "byte", + "value": 11 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv2" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 80 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 36 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 10 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 23 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 393 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 797 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 797 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 241 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 241 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 241 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 245 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 57 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 61 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 80 + }, + "Str": { + "type": "byte", + "value": 30 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "dlarge_5" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "dragon1" + }, + "WalkRate": { + "type": "int", + "value": 5 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": -0.9238795042037964 + }, + "XPosition": { + "type": "float", + "value": 38.39187240600586 + }, + "YOrientation": { + "type": "float", + "value": 0.3826834261417389 + }, + "YPosition": { + "type": "float", + "value": 49.20628356933594 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 205 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 20 + }, + "ChallengeRating": { + "type": "float", + "value": 36.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 24 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 10 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 33 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 24 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 30 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "At the same time both savage and malevolent, the Doom Reaver is a deadly predator, prone to uncontrollable rampages as it seeks to quell its insatiable appetite for carnage. Doom Reavers can gather all of their malevolent intention and hatred and direct a concentrated blast at their victims, leaving them so close to death, that a mere rodent could end their life.", + "id": 53073 + } + }, + "Dex": { + "type": "byte", + "value": 20 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10552412 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Render Claw", + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 4 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10552412 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Render Claw", + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 4 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 10 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10156686 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Render Bite", + "id": 13247 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 17 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 12 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 6 + }, + "Param1Value": { + "type": "byte", + "value": 15 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 20 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS015" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewps017" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 25074724 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Render Hide", + "id": 13160 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEMDR5" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_creitemdr007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 878 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 656 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 694 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 389 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 292 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 26 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 746 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 392 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 291 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 290 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Doom Reaver", + "id": 12579 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 4 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 30 + }, + "Int": { + "type": "byte", + "value": 40 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 450 + }, + "NaturalAC": { + "type": "byte", + "value": 52 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 231 + }, + "Race": { + "type": "byte", + "value": 9 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv2" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 7 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 51 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 234 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 27 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 364 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 77 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 79 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 90 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 90 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 380 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 40 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "dlarge_7" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "dopple" + }, + "WalkRate": { + "type": "int", + "value": 5 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": -0.9807849526405335 + }, + "XPosition": { + "type": "float", + "value": 37.53875732421875 + }, + "YOrientation": { + "type": "float", + "value": 0.1950918734073639 + }, + "YPosition": { + "type": "float", + "value": 43.98214340209961 + }, + "ZPosition": { + "type": "float", + "value": 4.200010299682617 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1097 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 20 + }, + "ChallengeRating": { + "type": "float", + "value": 48.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 24 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 21 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 350 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "War Demons are the very incarnations of evil and destruction. Impervious to most attacks and especially lethal with their formidable claws, these creatures will test even the bravest of opponents. These terrible creatures are the captains of Lucifer's dark army. They are huge, ugly and very powerful. Do not underestimate the War Demon.", + "id": 16816585 + } + }, + "Dex": { + "type": "byte", + "value": 18 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 8998110 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "War Demon Claw", + "id": 90700 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 16 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_CREWPSP002" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12051280 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "War Demon Bite", + "id": 16807630 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 26 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 12 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 6 + }, + "Param1Value": { + "type": "byte", + "value": 3 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 8 + }, + "Param1Value": { + "type": "byte", + "value": 31 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_PITFB" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_pitfb005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 33187738 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "War Demon Hide", + "id": 16807632 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_PITFH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_pitfh003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 656 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 292 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 746 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 472 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 291 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 290 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "War Demon", + "id": 16816294 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 350 + }, + "Int": { + "type": "byte", + "value": 20 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 550 + }, + "NaturalAC": { + "type": "byte", + "value": 54 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 694 + }, + "Race": { + "type": "byte", + "value": 20 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv2" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 17 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 10 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 255 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 41 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 41 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 60 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 60 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 267 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 271 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 116 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 116 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 301 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 86 + }, + "Str": { + "type": "byte", + "value": 45 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "dlarge_2" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_pitfiend001" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 20 + }, + "XOrientation": { + "type": "float", + "value": -0.9807868599891663 + }, + "XPosition": { + "type": "float", + "value": 39.21483993530273 + }, + "YOrientation": { + "type": "float", + "value": -0.1950822621583939 + }, + "YPosition": { + "type": "float", + "value": 59.80347061157227 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1318 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 14 + }, + "ChallengeRating": { + "type": "float", + "value": 121.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 2 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 5 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 10 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 12 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 450 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "An aura of superiority surrounds this creatue. It seems to stare through the very eyes of death and laugh at its hand. The Valdar were once the most formidable warriors to walk the realm. Myth has it that driven by an insatiable desire to uncover their true heritage, they dissapeared through a portal which would hurl them back into their past where they may find some clues as to how their blood merged with their once sworn enemies. Superior in skill and strength, Valdar Dragoons often lead massive armies of Valdar warriors into battle.", + "id": 103812 + } + }, + "Dex": { + "type": "byte", + "value": 12 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 5 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10516150 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 100237 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 100236 + } + }, + "ModelPart1": { + "type": "byte", + "value": 21 + }, + "ModelPart2": { + "type": "byte", + "value": 41 + }, + "ModelPart3": { + "type": "byte", + "value": 51 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 12 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WBLMHW004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wblmhw005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 70 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 11268758 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Valar Dragoon Bite", + "id": 12941 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 12 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 4 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CREWPHDFBT" + }, + "TemplateResRef": { + "type": "resref", + "value": "crewphdfbt003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 35948164 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon Hide", + "id": 12935 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CREITEMHD2" + }, + "TemplateResRef": { + "type": "resref", + "value": "creitemhd005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 969 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 878 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 645 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 236 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 235 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 77 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 240 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 26 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 735 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 237 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 238 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 239 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 36 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 115 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 256 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Valdar Dragoon", + "id": 16809004 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 450 + }, + "Int": { + "type": "byte", + "value": 20 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 100 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 500 + }, + "NaturalAC": { + "type": "byte", + "value": 58 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2161 + }, + "Race": { + "type": "byte", + "value": 11 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv2" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 80 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 42 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 208 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 239 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 239 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 771 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 426 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 2 + }, + "Str": { + "type": "byte", + "value": 46 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "dlarge_8" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_halfdrafn001" + }, + "WalkRate": { + "type": "int", + "value": 5 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 4 + }, + "Wis": { + "type": "byte", + "value": 17 + }, + "XOrientation": { + "type": "float", + "value": -0.7071065902709961 + }, + "XPosition": { + "type": "float", + "value": 31.37883758544922 + }, + "YOrientation": { + "type": "float", + "value": 0.7071069478988648 + }, + "YPosition": { + "type": "float", + "value": 48.23445892333984 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1291 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 30 + }, + "ChallengeRating": { + "type": "float", + "value": 38.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 2 + }, + "ClassLevel": { + "type": "short", + "value": 13 + }, + "MemorizedList4": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 42 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + } + ] + }, + "MemorizedList5": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 517 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + } + ] + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 24 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 8 + }, + "ClassLevel": { + "type": "short", + "value": 3 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 21 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The Balrog Lord is a demon captain made of shadow and fire. It is a truly fearsome opponent. The Balrog Lord is famed for its terrorising of the Moria Mines during the Middle Earth wars. Its reign of terror ended after being locked in a furious duel with a powerful mage, Gandalf the Grey, who after many days, emerged victorious and more powerful as Gandalf the White. The Balrog Lord competes in the arena in exchange for fallen angels to devour.", + "id": 16816605 + } + }, + "Dex": { + "type": "byte", + "value": 13 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5981444 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Balrog Claw", + "id": 90700 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_CREWPSP002" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12097900 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Balrog Bite", + "id": 16807630 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 16 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 12 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 4 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 14 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 6 + }, + "Param1Value": { + "type": "byte", + "value": 3 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 8 + }, + "Param1Value": { + "type": "byte", + "value": 31 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_PITFB" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_pitfb004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19670058 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Balrog Hide", + "id": 16807632 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 16 + }, + "CostValue": { + "type": "word", + "value": 207 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 53 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 16 + }, + "CostValue": { + "type": "word", + "value": 166 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 53 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_PITFH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_pitfh002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 909 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 969 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 656 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 292 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 353 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 307 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 291 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Balrog Lord", + "id": 16808770 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 20 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 100 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 400 + }, + "NaturalAC": { + "type": "byte", + "value": 55 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 176 + }, + "Race": { + "type": "byte", + "value": 20 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv2" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 32 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 17 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 255 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 57 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 57 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 60 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 60 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 61 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 61 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 79 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 2 + }, + "Str": { + "type": "byte", + "value": 38 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "dlarge_1" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_balrog001" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 20 + }, + "XOrientation": { + "type": "float", + "value": -0.9238832592964172 + }, + "XPosition": { + "type": "float", + "value": 33.06451797485352 + }, + "YOrientation": { + "type": "float", + "value": -0.382674366235733 + }, + "YPosition": { + "type": "float", + "value": 60.34200668334961 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 404 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 30 + }, + "ChallengeRating": { + "type": "float", + "value": 369.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 1 + }, + "ClassLevel": { + "type": "short", + "value": 25 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 25 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 10 + }, + "ClassLevel": { + "type": "short", + "value": 25 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 2000 + }, + "DecayTime": { + "type": "dword", + "value": 15000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer is the supreme ruler of hell and the commander of the dark army. He is much more intellignet than the monsters and abominations that serve his dark causes. In order to satiate his appetite for conflict and worthy competition, he has struck a deal with the Arch Angel Tyriel that he will compete in the arena on the condition that he and his army can battle it out for dominence against the army of light on a regular basis." + } + }, + "Dex": { + "type": "byte", + "value": 30 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 98645712 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Lucifers hand2", + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 26 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 39 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 4 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 6 + }, + "Param1Value": { + "type": "byte", + "value": 16 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 7 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 8 + }, + "Param1Value": { + "type": "byte", + "value": 12 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 7 + }, + "Param1Value": { + "type": "byte", + "value": 1 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 9 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 98645712 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Lucifers hand2", + "id": 13265 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 26 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 39 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 4 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 6 + }, + "Param1Value": { + "type": "byte", + "value": 16 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 7 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 8 + }, + "Param1Value": { + "type": "byte", + "value": 12 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 7 + }, + "Param1Value": { + "type": "byte", + "value": 1 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 9 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP005" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 71 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 293090816 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Fork2", + "id": 16807888 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 12 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 26 + }, + "CostValue": { + "type": "word", + "value": 39 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 82 + }, + "Subtype": { + "type": "word", + "value": 136 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 26 + }, + "CostValue": { + "type": "word", + "value": 39 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 82 + }, + "Subtype": { + "type": "word", + "value": 133 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 26 + }, + "CostValue": { + "type": "word", + "value": 39 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 82 + }, + "Subtype": { + "type": "word", + "value": 134 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_ASNVINS" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_asnvi002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 120825768 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Lucifers Hide", + "id": 16807498 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 23 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 78 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_HAMATH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_hamat001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 356 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 357 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 257 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 408 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 944 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 455 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 456 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 457 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 458 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 459 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 532 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 425 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 909 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 966 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 877 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 878 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 876 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 656 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 636 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 694 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 674 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 976 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 824 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 825 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 826 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 827 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 832 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 828 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 397 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 400 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 696 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 292 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 68 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 834 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 835 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 746 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 726 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 945 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 472 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 221 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 346 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 169 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 172 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 36 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 303 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 753 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 291 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 51 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 144 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Lord Lucifer" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 2000 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 2750 + }, + "NaturalAC": { + "type": "byte", + "value": 42 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 704 + }, + "Race": { + "type": "byte", + "value": 20 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv2" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 90 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 90 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 13 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 13 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 13 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 38 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 90 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 90 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 13 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 60 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 60 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 5 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 375 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 761 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 372 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 372 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 42 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 42 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 47 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 47 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 695 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 636 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 636 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 443 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 443 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 79 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 80 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 80 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 80 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 80 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 448 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 448 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 448 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 448 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 114 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 122 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 122 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 1 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "dlarge_3" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "notime4" + }, + "WalkRate": { + "type": "int", + "value": 8 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 2 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 34.4353141784668 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 55.5169677734375 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1074 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 18 + }, + "ChallengeRating": { + "type": "float", + "value": 447.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 24 + }, + "ClassLevel": { + "type": "short", + "value": 9 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 10 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 33 + }, + "ClassLevel": { + "type": "short", + "value": 25 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 21 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 455 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The Kamaji Berserker is a Japanese samurai demon with six flailing arms each as skilled as the next. They can deliver a flurry of destruction very quickly and should not be underestimated. When they are defeated, they explode in a ball of flame. Many a brave warrior have defeated this malevolent creature in vain, burning to death in this ball of flame. The Kamaji demon's gender is unknown and it is believed that this creature appears as the opposite gender to any who attack it. It is said that this is one of the many forms of deciet and trickery that the Kamaj Berserker uses to beguile and devour its victims.", + "id": 16816671 + } + }, + "Dex": { + "type": "byte", + "value": 20 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 1 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 23031976 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 16807826 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Sword", + "id": 16807750 + } + }, + "ModelPart1": { + "type": "byte", + "value": 121 + }, + "ModelPart2": { + "type": "byte", + "value": 192 + }, + "ModelPart3": { + "type": "byte", + "value": 132 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 24 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 2 + }, + "Param1Value": { + "type": "byte", + "value": 2 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 18 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_UNHOLYSW" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_unholysw002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 38 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 17172690 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 16807820 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Axe", + "id": 16807748 + } + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "ModelPart2": { + "type": "byte", + "value": 12 + }, + "ModelPart3": { + "type": "byte", + "value": 23 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_BLOODAXE" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_bloodaxe002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 70 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 141325872 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Sting", + "id": 16807930 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 16 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 26 + }, + "CostValue": { + "type": "word", + "value": 39 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 82 + }, + "Subtype": { + "type": "word", + "value": 136 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 26 + }, + "CostValue": { + "type": "word", + "value": 39 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 82 + }, + "Subtype": { + "type": "word", + "value": 133 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 8 + }, + "Param1Value": { + "type": "byte", + "value": 29 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_OSYST" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_osyst001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58600304 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Hide", + "id": 16807578 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 16 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 23 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 78 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_MARILH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_maril001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 656 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 638 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 636 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 694 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 676 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 674 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 292 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 70 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 68 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 16 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 20 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 746 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 728 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 726 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 291 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 108 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 106 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 930 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 927 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 290 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 146 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 144 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Kamaji Berserker", + "id": 16809188 + } + }, + "fortbonus": { + "type": "short", + "value": 4 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 455 + }, + "Int": { + "type": "byte", + "value": 20 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 675 + }, + "NaturalAC": { + "type": "byte", + "value": 58 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2042 + }, + "Race": { + "type": "byte", + "value": 20 + }, + "refbonus": { + "type": "short", + "value": 4 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv2" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 45 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 10 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 24 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 12 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 16 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 14 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 24 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 308 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 647 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 647 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 220 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 253 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 253 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 261 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 261 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 261 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 42 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "dlarge_6" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_marilithb001" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 4 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 18 + }, + "XOrientation": { + "type": "float", + "value": -0.9238795042037964 + }, + "XPosition": { + "type": "float", + "value": 32.80825042724609 + }, + "YOrientation": { + "type": "float", + "value": 0.3826834261417389 + }, + "YPosition": { + "type": "float", + "value": 51.95957565307617 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 141 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 30 + }, + "ChallengeRating": { + "type": "float", + "value": 70.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 7 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 24 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 8 + }, + "ClassLevel": { + "type": "short", + "value": 10 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 53 + }, + "Color_Skin": { + "type": "byte", + "value": 19 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 21 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 300 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Dark archers are the strength of the evil armies. Their malevolent powers grant them uncanny speed and prowess in battle. Their arrows are said to carry a poison that not only weaken's the body, but inflicts an agonising psychosis on the mind.", + "id": 16816605 + } + }, + "Dex": { + "type": "byte", + "value": 40 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 15 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 89 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 151 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 113 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 37 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 15 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 6 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 89 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 151 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 117 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 150 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "dark cupids armour", + "id": 181 + } + }, + "Metal1Color": { + "type": "byte", + "value": 15 + }, + "Metal2Color": { + "type": "byte", + "value": 15 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_AARCL007" + }, + "TemplateResRef": { + "type": "resref", + "value": "aarcl081" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 8 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1583586 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dark Cupids bow", + "id": 170 + } + }, + "ModelPart1": { + "type": "byte", + "value": 62 + }, + "ModelPart2": { + "type": "byte", + "value": 154 + }, + "ModelPart3": { + "type": "byte", + "value": 54 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 45 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WBWLN001" + }, + "TemplateResRef": { + "type": "resref", + "value": "wbwln004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2048, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 20 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 282754 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": " Div Archer Arrow2", + "id": 1517 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 99 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "q6arrow" + }, + "TemplateResRef": { + "type": "resref", + "value": "q6arrow026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 25122246 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Dark Archer Hide", + "id": 16807632 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 16 + }, + "CostValue": { + "type": "word", + "value": 207 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 53 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 16 + }, + "CostValue": { + "type": "word", + "value": 166 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 53 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_PITFH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_pitfh007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 909 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 969 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 620 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 631 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 658 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 669 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 52 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 63 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 20 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 868 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 710 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 721 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 30 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 353 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 307 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 753 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 90 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 101 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 128 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 139 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 867 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Dark Archer", + "id": 16808770 + } + }, + "fortbonus": { + "type": "short", + "value": 17 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 300 + }, + "Int": { + "type": "byte", + "value": 20 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 22 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5578324 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Div Archer Dagger", + "id": 75034 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "cut1dagger" + }, + "TemplateResRef": { + "type": "resref", + "value": "cut1dagger001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 22 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5578324 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Div Archer Dagger", + "id": 75034 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "cut1dagger" + }, + "TemplateResRef": { + "type": "resref", + "value": "cut1dagger001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 20 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 282754 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": " Div Archer Arrow2", + "id": 1517 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 2 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 99 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "q6arrow" + }, + "TemplateResRef": { + "type": "resref", + "value": "q6arrow026" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 570 + }, + "NaturalAC": { + "type": "byte", + "value": 41 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 727 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 4 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv2" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 20 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 20 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 17 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 205 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 372 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 79 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 368 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 368 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 368 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 114 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 380 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 7 + }, + "Str": { + "type": "byte", + "value": 38 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "d1" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "darcher" + }, + "WalkRate": { + "type": "int", + "value": 6 + }, + "willbonus": { + "type": "short", + "value": 12 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 20 + }, + "XOrientation": { + "type": "float", + "value": -0.9238832592964172 + }, + "XPosition": { + "type": "float", + "value": 30.81748771667481 + }, + "YOrientation": { + "type": "float", + "value": -0.382674366235733 + }, + "YPosition": { + "type": "float", + "value": 58.34235000610352 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 24 + }, + "Appearance_Type": { + "type": "word", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 30 + }, + "ChallengeRating": { + "type": "float", + "value": 242.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 1 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 33 + }, + "ClassLevel": { + "type": "short", + "value": 25 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 16 + }, + "Color_Skin": { + "type": "byte", + "value": 17 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 14 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 585 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The Bard Heretic is a dark disciple of the evil Lord Lucifer. In exchange for the souls of desperate creatures, Lucifer grants the Bard heretic dark powers beyond the dreams of mortal men. The Bard Heretic spends his days seeking out weak souls and subduing them into surrender to the dark lord. Men have given up on hunting this abomination of mortality because of the Bard Heretic's overwhelming dominence in battle. There is yet to be a hero who can defeat him." + } + }, + "Dex": { + "type": "byte", + "value": 34 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 14 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 15 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 17 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 7 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 14 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 3 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 39 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 63 + }, + "Cloth2Color": { + "type": "byte", + "value": 60 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 100977 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 5 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_it_pmrobe" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_it_pmrobe" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 53 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 18494486 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Heratic Scim", + "id": 91282 + } + }, + "ModelPart1": { + "type": "byte", + "value": 142 + }, + "ModelPart2": { + "type": "byte", + "value": 152 + }, + "ModelPart3": { + "type": "byte", + "value": 253 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 28 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 4 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMSC004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmsc006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 67 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58117152 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Bard Heratic", + "id": 16807340 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 15 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 23 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 78 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_BBATH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_bbath002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 356 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 357 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 257 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 355 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 197 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 871 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 511 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 968 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 878 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 635 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 673 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 389 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 423 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 910 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 824 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 825 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 826 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 236 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 235 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 67 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 834 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 835 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 836 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 868 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 240 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 424 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 354 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 26 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 725 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 945 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 237 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 238 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 239 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 301 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 472 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 221 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 35 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 392 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 105 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 927 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 256 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 867 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Bard Heretic" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 585 + }, + "Int": { + "type": "byte", + "value": 16 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 650 + }, + "NaturalAC": { + "type": "byte", + "value": 46 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 39 + }, + "Race": { + "type": "byte", + "value": 1 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv2" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 35 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 20 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 101 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 1 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 1 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 519 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 121 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 1 + }, + "Str": { + "type": "byte", + "value": 35 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "d2" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "palewarrior" + }, + "WalkRate": { + "type": "int", + "value": 6 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 10 + }, + "XOrientation": { + "type": "float", + "value": -0.9238795042037964 + }, + "XPosition": { + "type": "float", + "value": 31.03889465332031 + }, + "YOrientation": { + "type": "float", + "value": 0.3826834261417389 + }, + "YPosition": { + "type": "float", + "value": 53.75695419311523 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1286 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 30 + }, + "ChallengeRating": { + "type": "float", + "value": 967.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 1 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 14 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 1410 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The fallen disciple was once a very pious follower of the Arch Angel Tyriel. He accompanied the mighty angel into battle against the minions of hell countless times. As his own prowess grew, he became resentful of Tyriel's command and believed that he would command the armies of heaven much better than Tyriel. No sooner than the moment that he had wished for Tyriel's demise, the dark will of Lucifer sensed his subordinacy and reached into his soul, dragging him into hell to forever fight for the dark army. As his body was pulled through the white hot fires of hell, his flesh disintegrated and his skull burst into flames. Lucifer became amused by the sight of this betrayer of light and decided that his skull would burn for all eternity to strike fear into the army of light when he fought in a holy war. The Fallen Disciple should not be underestimated. For when he was dragged through the swirling vortex that separates heaven and hell, his bones were tempered into a substance that suffers no vulnerabilities, and his sword began to burn as it absorbed the rage and torment of countless exiled souls." + } + }, + "Dex": { + "type": "byte", + "value": 34 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 53 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 56742416 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13213 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Skele Scim", + "id": 91282 + } + }, + "ModelPart1": { + "type": "byte", + "value": 142 + }, + "ModelPart2": { + "type": "byte", + "value": 152 + }, + "ModelPart3": { + "type": "byte", + "value": 242 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 4 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_WSWMSC004" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswmsc007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 57 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 100 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 12863 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 90465 + } + }, + "ModelPart1": { + "type": "byte", + "value": 102 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_ASHMTO004" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashmto008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 142430784 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "skele Heratic", + "id": 16807340 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 23 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 78 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_BBATH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_bbath004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 356 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 357 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 257 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 355 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 197 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 871 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 511 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 968 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 874 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 635 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 673 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 389 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 423 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 910 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 824 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 825 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 826 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 236 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 235 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 67 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 834 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 835 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 836 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 240 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 424 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 354 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 26 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 725 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 945 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 237 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 238 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 239 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 301 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 472 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 221 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 35 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 392 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 105 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 927 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 256 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Fallen Disciple" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 1410 + }, + "Int": { + "type": "byte", + "value": 16 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 1590 + }, + "NaturalAC": { + "type": "byte", + "value": 48 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2145 + }, + "Race": { + "type": "byte", + "value": 24 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv2" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 35 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 20 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 80 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 372 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 372 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 372 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 637 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 121 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 121 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 542 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 80 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 80 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 80 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 1 + }, + "Str": { + "type": "byte", + "value": 40 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "d3" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "death" + }, + "WalkRate": { + "type": "int", + "value": 8 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 10 + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 30.79272842407227 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 56.03113555908203 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1214 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 30 + }, + "ChallengeRating": { + "type": "float", + "value": 66.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 24 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 9 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 22 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 180 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Lolth, the Demon Queen of Spiders, is the patron goddess of the Drow. She can be alternately beautiful as well as terrible to behold. And she is always as dangerous as a poisoned blade. Her intelligence, beauty and formidible evil power are what attracted Lucifer to her. She playfully calls herself his mistress, claiming that he is already married to his army. ", + "id": 16816574 + } + }, + "Dex": { + "type": "byte", + "value": 30 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 31670154 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Lmistress Claw", + "id": 90701 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 16 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 24 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 28 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 6 + }, + "Param1Value": { + "type": "byte", + "value": 2 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 20 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 8 + }, + "Param1Value": { + "type": "byte", + "value": 29 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_CREWPSP003" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp011" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 31670154 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Lmistress Claw", + "id": 90701 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 16 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 24 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 28 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 6 + }, + "Param1Value": { + "type": "byte", + "value": 2 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 20 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 8 + }, + "Param1Value": { + "type": "byte", + "value": 29 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_CREWPSP003" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp011" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 86774440 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Lmistress Hide", + "id": 16807566 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_LOLTHH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_lolth001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 532 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 614 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 618 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 878 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 694 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 292 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 746 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 173 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 221 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 346 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 347 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 169 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 36 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 294 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 291 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 290 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Lucifer's Mistress", + "id": 16809154 + } + }, + "fortbonus": { + "type": "short", + "value": 11 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 0 + }, + "HitPoints": { + "type": "short", + "value": 180 + }, + "Int": { + "type": "byte", + "value": 41 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 0 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 600 + }, + "NaturalAC": { + "type": "byte", + "value": 55 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2092 + }, + "Race": { + "type": "byte", + "value": 20 + }, + "refbonus": { + "type": "short", + "value": 21 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv2" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 60 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 80 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 90 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 731 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 206 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 209 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 215 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 216 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 220 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 223 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 87 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 87 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 114 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 48 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "d12" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "mistress2" + }, + "WalkRate": { + "type": "int", + "value": 6 + }, + "willbonus": { + "type": "short", + "value": 15 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 41 + }, + "XOrientation": { + "type": "float", + "value": -0.9238832592964172 + }, + "XPosition": { + "type": "float", + "value": 37.55617904663086 + }, + "YOrientation": { + "type": "float", + "value": -0.382674366235733 + }, + "YPosition": { + "type": "float", + "value": 65.67520904541016 + }, + "ZPosition": { + "type": "float", + "value": 4.200010299682617 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 46 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 30 + }, + "ChallengeRating": { + "type": "float", + "value": 35.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 18 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 2 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 34 + }, + "ClassLevel": { + "type": "short", + "value": 10 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 13 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 300 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragons are graceful, sinuous, and wise. They hate injustice and foul play, often embarking on self-appointed quests to promote good. Tyriel always enlists the help of Gold Dragons because they are fantastic for boosting the morale of his troops." + } + }, + "Dex": { + "type": "byte", + "value": 10 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 4488780 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragon Claw", + "id": 90700 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 12 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 72 + }, + "Subtype": { + "type": "word", + "value": 3 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_CREWPSP002" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp013" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5631258 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragon Bite2", + "id": 90635 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_CREWPS004" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewps008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 15718889 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Death Wurm Hide", + "id": 13165 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 20 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 50 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEMDRA" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_creitemdra002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 886 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 896 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 891 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 694 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 804 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 806 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 292 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 746 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 894 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 291 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 290 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Gold Dragon" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 300 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 100 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 350 + }, + "NaturalAC": { + "type": "byte", + "value": 52 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 196 + }, + "Race": { + "type": "byte", + "value": 11 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 80 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 38 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 10 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 23 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 29 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 237 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 796 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 796 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 796 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 245 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 57 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 58 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 80 + }, + "Str": { + "type": "byte", + "value": 36 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "llarge_2" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "dragon2" + }, + "WalkRate": { + "type": "int", + "value": 5 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 0.8314703106880188 + }, + "XPosition": { + "type": "float", + "value": 11.91240406036377 + }, + "YOrientation": { + "type": "float", + "value": -0.5555691719055176 + }, + "YPosition": { + "type": "float", + "value": 60.11314392089844 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1499 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 14 + }, + "ChallengeRating": { + "type": "float", + "value": 158.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 33 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 13 + }, + "ClassLevel": { + "type": "short", + "value": 10 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 12 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 650 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Soul Warriors fight to protect all that symbolises the life that was breathed into them by their beloved creators. Programmed to loathe evil and battle for the good of all creatures, these juggernauts are a formidible enemy to all proponents of evil.", + "id": 103812 + } + }, + "Dex": { + "type": "byte", + "value": 12 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 13 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 10494484 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "soul warriors sword", + "id": 167 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 17 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 12 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 4 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WSWGS001" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswgs003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 43326424 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Soul Warr Hide", + "id": 12935 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CREITEMHD2" + }, + "TemplateResRef": { + "type": "resref", + "value": "creitemhd006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 300 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 513 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 966 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 876 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 637 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 675 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 910 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 964 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 963 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 235 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 69 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 883 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 240 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 26 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 226 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 727 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 237 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 238 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 239 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 36 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 294 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 107 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 929 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 256 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 145 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Soul Warrior", + "id": 16809004 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 650 + }, + "Int": { + "type": "byte", + "value": 12 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 100 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 700 + }, + "NaturalAC": { + "type": "byte", + "value": 60 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2087 + }, + "Race": { + "type": "byte", + "value": 13 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 850 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 715 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 515 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 268 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 89 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 763 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 763 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 380 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 46 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "llarge_3" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "hdrag2" + }, + "WalkRate": { + "type": "int", + "value": 6 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 4 + }, + "Wis": { + "type": "byte", + "value": 17 + }, + "XOrientation": { + "type": "float", + "value": 0.7071084380149841 + }, + "XPosition": { + "type": "float", + "value": 18.59109115600586 + }, + "YOrientation": { + "type": "float", + "value": -0.7071051001548767 + }, + "YPosition": { + "type": "float", + "value": 61.14864730834961 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1076 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 18 + }, + "ChallengeRating": { + "type": "float", + "value": 420.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 24 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 21 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 400 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Shiva is responsible for change both in the form of death and destruction and in the positive sense of shedding old habits. Satyam, Shivam, Sundaram or truth, goodness and beauty, Shiva also represents the most essential goodness. ", + "id": 16816671 + } + }, + "Dex": { + "type": "byte", + "value": 20 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 53 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 18016796 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Shiva's Scimitar", + "id": 1547 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 16 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WSWSC001" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswsc002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 53 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 18016796 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Shiva's Scimitar", + "id": 1547 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 16 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WSWSC001" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswsc002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 71 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 13105804 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 16807712 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 17 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_MARILS" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_maril002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 58842628 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Shiva Hide2", + "id": 16807578 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 16 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 23 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 78 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_MARILH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_maril005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 532 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 511 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 909 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1001 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 966 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 876 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 656 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 635 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 694 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 673 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 67 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 20 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 746 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 725 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 195 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 251 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 105 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 927 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 290 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 143 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 867 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Shiva the Destroyer", + "id": 16809188 + } + }, + "fortbonus": { + "type": "short", + "value": 4 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 400 + }, + "Int": { + "type": "byte", + "value": 18 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 100 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 650 + }, + "NaturalAC": { + "type": "byte", + "value": 58 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 187 + }, + "Race": { + "type": "byte", + "value": 20 + }, + "refbonus": { + "type": "short", + "value": 4 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 60 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 10 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 24 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 12 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 16 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 14 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 24 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 91 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 517 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 216 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 220 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 221 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 223 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 42 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 259 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 67 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 50 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "1large_1" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "beli2" + }, + "WalkRate": { + "type": "int", + "value": 6 + }, + "willbonus": { + "type": "short", + "value": 4 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 18 + }, + "XOrientation": { + "type": "float", + "value": 0.8314677476882935 + }, + "XPosition": { + "type": "float", + "value": 14.18409824371338 + }, + "YOrientation": { + "type": "float", + "value": 0.555573046207428 + }, + "YPosition": { + "type": "float", + "value": 51.28516006469727 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1492 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 30 + }, + "ChallengeRating": { + "type": "float", + "value": 139.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 23 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 9 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 22 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 840 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Elks are an ancient race of giant trees that have the ability to move and cast powerful magic. Grown in the magic forests of hyrule, these powerful trees are at one with the nature from which they were born. They are very wise and intelligent beings with sentient powers that grant them divine insights into the flow of power in the universe. Good creatures, the Elks fight evil wherever they can and never surrender to negative or malevolent energies. The Elk King is the most powerful of the Elks and is honoured to be a Colonel in Tyriels army of light.", + "id": 16816574 + } + }, + "Dex": { + "type": "byte", + "value": 30 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 71 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 101700496 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "GateKeeper Fist2", + "id": 67764 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 28 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 24 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 26 + }, + "CostValue": { + "type": "word", + "value": 39 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 82 + }, + "Subtype": { + "type": "word", + "value": 134 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPB014" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpb016" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 71 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 101700496 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "GateKeeper Fist2", + "id": 67764 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 28 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 24 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 26 + }, + "CostValue": { + "type": "word", + "value": 39 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 82 + }, + "Subtype": { + "type": "word", + "value": 134 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPB014" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpb016" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 89895040 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Gatekeeper Hide", + "id": 16807566 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_LOLTHH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_lolth002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 532 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 217 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1001 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 966 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 975 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 614 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 618 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 878 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 656 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 694 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 292 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 20 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 226 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 746 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 173 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 169 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 36 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 291 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 290 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Elk King", + "id": 16809154 + } + }, + "fortbonus": { + "type": "short", + "value": 11 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 840 + }, + "Int": { + "type": "byte", + "value": 41 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 100 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 1380 + }, + "NaturalAC": { + "type": "byte", + "value": 53 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2030 + }, + "Race": { + "type": "byte", + "value": 10 + }, + "refbonus": { + "type": "short", + "value": 21 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 60 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 80 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 9 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 391 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 372 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 372 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 516 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 516 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 516 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 516 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 516 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 517 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 216 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 220 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 80 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 80 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 124 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 124 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 135 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 135 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 380 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 50 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "llarge_4" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "boss002" + }, + "WalkRate": { + "type": "int", + "value": 6 + }, + "willbonus": { + "type": "short", + "value": 15 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 41 + }, + "XOrientation": { + "type": "float", + "value": 0.9807868599891663 + }, + "XPosition": { + "type": "float", + "value": 11.68538093566895 + }, + "YOrientation": { + "type": "float", + "value": -0.1950822621583939 + }, + "YPosition": { + "type": "float", + "value": 54.73171997070313 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 102 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 30 + }, + "ChallengeRating": { + "type": "float", + "value": 131.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 15 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 25 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 10 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 16 + }, + "Color_Skin": { + "type": "byte", + "value": 0 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 21 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 400 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angels draw power from all that is good. When in battle against evil, their prowess is truly magnificent to watch.", + "id": 16816585 + } + }, + "Dex": { + "type": "byte", + "value": 18 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 152 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 89 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 153 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 89 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 153 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 120 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 8 + }, + "Cost": { + "type": "dword", + "value": 200 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 45 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel Armour", + "id": 12842 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_AARCL010" + }, + "TemplateResRef": { + "type": "resref", + "value": "aarcl013" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 3 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 8897848 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angels sword", + "id": 168 + } + }, + "ModelPart1": { + "type": "byte", + "value": 41 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 16 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 36 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WSWBS001" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswbs002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 56 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel's Shield", + "id": 1550 + } + }, + "ModelPart1": { + "type": "byte", + "value": 88 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHLW001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashlw018" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 43326424 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Soul Warr Hide", + "id": 12935 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 71 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CREITEMHD2" + }, + "TemplateResRef": { + "type": "resref", + "value": "creitemhd006" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 408 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 528 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 909 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 982 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1001 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 966 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 972 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 618 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1071 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 652 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 690 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 249 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 85 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 742 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 301 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 472 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 221 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 36 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 392 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 753 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 123 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 940 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 161 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Guardian Angel", + "id": 16816294 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 400 + }, + "Int": { + "type": "byte", + "value": 20 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 100 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 650 + }, + "NaturalAC": { + "type": "byte", + "value": 46 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 977 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 45 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 17 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 15 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 230 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 436 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 517 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 5 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 76 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 448 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 122 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 154 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 6 + }, + "Str": { + "type": "byte", + "value": 30 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "l1" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "pfiend2" + }, + "WalkRate": { + "type": "int", + "value": 6 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 32 + }, + "Wis": { + "type": "byte", + "value": 20 + }, + "XOrientation": { + "type": "float", + "value": 0.7071065902709961 + }, + "XPosition": { + "type": "float", + "value": 17.76777648925781 + }, + "YOrientation": { + "type": "float", + "value": 0.7071069478988648 + }, + "YPosition": { + "type": "float", + "value": 51.30161285400391 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 104 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 20 + }, + "ChallengeRating": { + "type": "float", + "value": 45.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 5 + }, + "ClassLevel": { + "type": "short", + "value": 25 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 10 + }, + "ClassLevel": { + "type": "short", + "value": 15 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 16 + }, + "Color_Skin": { + "type": "byte", + "value": 2 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 24 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 220 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The horodrim wizards guild comprised the most powerful wizards and sought to aid the angels in their search for the three demons of hell. The Horodrim is a secret organization from the sands of death, centuries old, and learned the art of demon hunting from Arch Angel Tyriel.", + "id": 53073 + } + }, + "Dex": { + "type": "byte", + "value": 20 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 15 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 110 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 7 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 11 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 113 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 15 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 110 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 7 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 169 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 11 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 176 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 44 + }, + "Cloth2Color": { + "type": "byte", + "value": 46 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13853 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 45 + }, + "Leather2Color": { + "type": "byte", + "value": 44 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Horodrim robe", + "id": 13852 + } + }, + "Metal1Color": { + "type": "byte", + "value": 12 + }, + "Metal2Color": { + "type": "byte", + "value": 8 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_MCLOTH003" + }, + "TemplateResRef": { + "type": "resref", + "value": "mcloth009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12251 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67778 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Speed Boots", + "id": 67780 + } + }, + "ModelPart1": { + "type": "byte", + "value": 31 + }, + "ModelPart2": { + "type": "byte", + "value": 23 + }, + "ModelPart3": { + "type": "byte", + "value": 33 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS017" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots019" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 45 + }, + "Charges": { + "type": "byte", + "value": 50 + }, + "Cost": { + "type": "dword", + "value": 3418 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 14175 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "horodrim staff", + "id": 14176 + } + }, + "ModelPart1": { + "type": "byte", + "value": 254 + }, + "ModelPart2": { + "type": "byte", + "value": 254 + }, + "ModelPart3": { + "type": "byte", + "value": 251 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 360 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 367 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 455 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WMGST002" + }, + "TemplateResRef": { + "type": "resref", + "value": "wmgst003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 25712124 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Hide", + "id": 13160 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREITEMDR5" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_creitemdr008" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 909 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 589 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 605 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 610 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 614 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 617 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 618 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 878 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 876 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1071 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 626 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 694 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 664 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 389 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 794 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 795 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 796 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 797 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 802 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 798 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 799 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 393 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 397 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 400 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 292 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 58 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 390 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 377 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 26 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 746 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 716 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 243 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 189 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 392 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 96 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 923 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 290 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 134 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Horodrim Archmage", + "id": 12579 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 220 + }, + "Int": { + "type": "byte", + "value": 40 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 50 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 8472766 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "horodrim staff", + "id": 1544 + } + }, + "ModelPart1": { + "type": "byte", + "value": 32 + }, + "ModelPart2": { + "type": "byte", + "value": 14 + }, + "ModelPart3": { + "type": "byte", + "value": 14 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WDBQS001" + }, + "TemplateResRef": { + "type": "resref", + "value": "wdbqs002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 100 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 500 + }, + "NaturalAC": { + "type": "byte", + "value": 51 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2322 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 65 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 7 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 8 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 15 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 30 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 181 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 23 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 121 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 77 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 79 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 367 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 87 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 154 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 380 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 5 + }, + "Str": { + "type": "byte", + "value": 40 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "l2" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "dopple001" + }, + "WalkRate": { + "type": "int", + "value": 6 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 0.9807849526405335 + }, + "XPosition": { + "type": "float", + "value": 16.38217544555664 + }, + "YOrientation": { + "type": "float", + "value": 0.1950918734073639 + }, + "YPosition": { + "type": "float", + "value": 54.03973007202148 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 108 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 30 + }, + "ChallengeRating": { + "type": "float", + "value": 50.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 7 + }, + "ClassLevel": { + "type": "short", + "value": 13 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 24 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 8 + }, + "ClassLevel": { + "type": "short", + "value": 3 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 16 + }, + "Color_Skin": { + "type": "byte", + "value": 9 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 21 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Divine archers are the strength of the holy armies. Their celestial powers grant them uncanny speed and expertise in battle. ", + "id": 16816605 + } + }, + "Dex": { + "type": "byte", + "value": 13 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 12 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 15 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 89 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 151 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 112 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 37 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 15 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 5 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 6 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 89 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 151 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 210 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 44 + }, + "Cloth2Color": { + "type": "byte", + "value": 8 + }, + "Cost": { + "type": "dword", + "value": 150 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "war cupids armour3", + "id": 181 + } + }, + "Metal1Color": { + "type": "byte", + "value": 12 + }, + "Metal2Color": { + "type": "byte", + "value": 10 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_AARCL007" + }, + "TemplateResRef": { + "type": "resref", + "value": "aarcl082" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 8 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 1583586 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "War Cupids bow", + "id": 170 + } + }, + "ModelPart1": { + "type": "byte", + "value": 62 + }, + "ModelPart2": { + "type": "byte", + "value": 214 + }, + "ModelPart3": { + "type": "byte", + "value": 52 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 45 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WBWLN001" + }, + "TemplateResRef": { + "type": "resref", + "value": "wbwln003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 2048, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 20 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 30770 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": " Div Archer Arrow", + "id": 1517 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 34 + }, + "Subtype": { + "type": "word", + "value": 1 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 99 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "q6arrow" + }, + "TemplateResRef": { + "type": "resref", + "value": "q6arrow002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 18906250 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Div Archer Hide", + "id": 16807632 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 16 + }, + "CostValue": { + "type": "word", + "value": 207 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 53 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 16 + }, + "CostValue": { + "type": "word", + "value": 166 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 53 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_PITFH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_pitfh005" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 909 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 969 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 620 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 631 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 658 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 669 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 292 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 52 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 63 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 20 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 868 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 710 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 721 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 30 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 353 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 307 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 753 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 291 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 90 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 101 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 128 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 139 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 867 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Divine Archer", + "id": 16808770 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 20 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 22 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5578324 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Div Archer Dagger", + "id": 75034 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 0 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "cut1dagger" + }, + "TemplateResRef": { + "type": "resref", + "value": "cut1dagger001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 1, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 22 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 5578324 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Div Archer Dagger", + "id": 75034 + } + }, + "ModelPart1": { + "type": "byte", + "value": 11 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "Repos_PosX": { + "type": "word", + "value": 1 + }, + "Repos_Posy": { + "type": "word", + "value": 0 + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "cut1dagger" + }, + "TemplateResRef": { + "type": "resref", + "value": "cut1dagger001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 400 + }, + "NaturalAC": { + "type": "byte", + "value": 44 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 19 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 20 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 20 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 17 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 358 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 1 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 79 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 368 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 380 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 7 + }, + "Str": { + "type": "byte", + "value": 38 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "l5" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "balrog2" + }, + "WalkRate": { + "type": "int", + "value": 5 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 20 + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 16.46348571777344 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 56.59603118896484 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 34 + }, + "Appearance_Type": { + "type": "word", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 2 + }, + "Cha": { + "type": "byte", + "value": 20 + }, + "ChallengeRating": { + "type": "float", + "value": 225.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 1 + }, + "ClassLevel": { + "type": "short", + "value": 20 + }, + "KnownList0": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 33 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 37 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 100 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 151 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + } + ] + }, + "KnownList1": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 16 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 86 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 102 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 544 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 174 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + } + ] + }, + "KnownList2": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 21 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 569 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 83 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 167 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + } + ] + }, + "KnownList3": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 545 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 78 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 539 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 176 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + } + ] + }, + "KnownList4": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 31 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 45 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 376 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 177 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + } + ] + }, + "KnownList5": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 67 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 80 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 118 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 179 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + } + ] + }, + "KnownList6": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 369 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 368 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 113 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 3, + "Spell": { + "type": "word", + "value": 180 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + }, + "SpellMetaMagic": { + "type": "byte", + "value": 0 + } + } + ] + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 33 + }, + "ClassLevel": { + "type": "short", + "value": 27 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 8 + }, + "ClassLevel": { + "type": "short", + "value": 3 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 21 + }, + "Color_Skin": { + "type": "byte", + "value": 9 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 14 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 550 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lords are elite warriors who can carve a path right through an army of opponents. Posessing almost supernatural kendo abilities, their sword is an extension of their arm. Both swift and deadly, Shogun Lords are a force to be reckoned with. Their many hours of meditation help them to bond with the elemental forces from which they gain their strength. In times of great need, they are able to summon elemental spirits to aid them in battle. Shogun Lords often go into battle with tiger companions. " + } + }, + "Dex": { + "type": "byte", + "value": 34 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 151 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 156 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 13 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 81 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 152 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 152 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 94 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 112 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 156 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 13 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 81 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 152 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 152 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 152 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 94 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 6 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 21 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 21 + }, + "Leather2Color": { + "type": "byte", + "value": 22 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 181 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 6 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_AARCL007" + }, + "TemplateResRef": { + "type": "resref", + "value": "aarcl079" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 41 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 19027210 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Shogun's Katana", + "id": 1535 + } + }, + "ModelPart1": { + "type": "byte", + "value": 121 + }, + "ModelPart2": { + "type": "byte", + "value": 131 + }, + "ModelPart3": { + "type": "byte", + "value": 111 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 11 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 28 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 14 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 1 + }, + "Param1Value": { + "type": "byte", + "value": 4 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 6 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WSWKA001" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswka002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 57276452 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Shogun Hide", + "id": 16807340 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 15 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 23 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 78 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 11 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 39 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_BBATH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_bbath003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 356 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 357 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 257 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 355 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 408 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 871 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 455 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 456 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 457 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 458 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 459 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 527 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 968 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1001 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 651 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 689 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 389 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 910 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 236 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 964 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 963 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 235 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 696 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 84 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 390 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 883 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 240 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 885 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 882 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 354 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 26 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 741 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 945 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 237 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 238 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 239 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 221 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 346 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 392 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 122 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 939 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 256 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 160 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 867 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Shogun Lord" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 550 + }, + "Int": { + "type": "byte", + "value": 12 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 600 + }, + "NaturalAC": { + "type": "byte", + "value": 48 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 65 + }, + "Race": { + "type": "byte", + "value": 1 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 42 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 20 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 20 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 364 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 695 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 67 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 160 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 1 + }, + "Str": { + "type": "byte", + "value": 40 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "l3" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "pwar2" + }, + "WalkRate": { + "type": "int", + "value": 4 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 10 + }, + "XOrientation": { + "type": "float", + "value": 0.7071084380149841 + }, + "XPosition": { + "type": "float", + "value": 17.81889533996582 + }, + "YOrientation": { + "type": "float", + "value": -0.7071051001548767 + }, + "YPosition": { + "type": "float", + "value": 58.91752243041992 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 103 + }, + "Appearance_Type": { + "type": "word", + "value": 6 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 40 + }, + "ChallengeRating": { + "type": "float", + "value": 878.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 10 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 7 + }, + "ClassLevel": { + "type": "short", + "value": 25 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 5 + }, + "Color_Skin": { + "type": "byte", + "value": 3 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 22 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 990 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Thor is the Norse god of thunder. He is a son of Odin and Jord, and one of the most powerful gods. Lightning flashes whenever he throws his hammer Mjollnir. Thor wears the belt Megingjard which doubles his already considerable strength. His hall is Bilskirnir, which is located in the region Thrudheim (\"place of might\"). ", + "id": 16816564 + } + }, + "Dex": { + "type": "byte", + "value": 50 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 156 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 164 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 112 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 121 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 13 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 156 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 164 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 112 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 121 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 171 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 13 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 6 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 6 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 3 + }, + "Cloth2Color": { + "type": "byte", + "value": 7 + }, + "Cost": { + "type": "dword", + "value": 1 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 1 + }, + "Leather2Color": { + "type": "byte", + "value": 7 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Thor's robe", + "id": 12916 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_CLOTH015" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth019" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 5 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 81093744 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Mjollnir2", + "id": 178 + } + }, + "ModelPart1": { + "type": "byte", + "value": 131 + }, + "ModelPart2": { + "type": "byte", + "value": 111 + }, + "ModelPart3": { + "type": "byte", + "value": 251 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 15 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 26 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 22 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 26 + }, + "CostValue": { + "type": "word", + "value": 39 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 82 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 2 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WBLHW001" + }, + "TemplateResRef": { + "type": "resref", + "value": "wblhw018" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 56 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 50 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Thor's Shield", + "id": 1550 + } + }, + "ModelPart1": { + "type": "byte", + "value": 152 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_ASHLW001" + }, + "TemplateResRef": { + "type": "resref", + "value": "ashlw003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 110938960 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Thor Hide2", + "id": 16807470 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 9 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 18 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 4 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_GLABRH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_glabr004" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 855 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 408 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 521 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 425 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 217 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 909 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 979 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 966 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 972 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 973 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 878 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1071 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 645 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 683 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 261 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 262 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 263 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 265 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 266 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 267 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 249 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 331 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 77 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 19 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 299 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 25 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 735 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 36 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 392 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 988 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 115 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 936 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 153 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Thor: God of Thunder", + "id": 16808982 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 990 + }, + "Int": { + "type": "byte", + "value": 40 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 100 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 1500 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 647 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 80 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 90 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 26 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 18 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 25 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 18 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 26 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 40 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 406 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 372 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 372 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 516 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 516 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 517 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 517 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 14 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 14 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 14 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 445 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 47 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 443 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 443 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 79 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 114 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 524 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 122 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 7 + }, + "Str": { + "type": "byte", + "value": 55 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "l4" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "notime1" + }, + "WalkRate": { + "type": "int", + "value": 6 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 40 + }, + "XOrientation": { + "type": "float", + "value": 0.9807849526405335 + }, + "XPosition": { + "type": "float", + "value": 18.69341659545898 + }, + "YOrientation": { + "type": "float", + "value": 0.1950918734073639 + }, + "YPosition": { + "type": "float", + "value": 53.99627685546875 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 32 + }, + "Appearance_Type": { + "type": "word", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 30 + }, + "ChallengeRating": { + "type": "float", + "value": 2304.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 30 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 10 + }, + "ClassLevel": { + "type": "short", + "value": 25 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 25 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 16 + }, + "Color_Skin": { + "type": "byte", + "value": 17 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 560 + }, + "DecayTime": { + "type": "dword", + "value": 10000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The Arch Angel Tyriel is the commander of the army of light. He leads by example and always takes the front line position. Tyriel is of pure divinity and has access to an unlimited source of heavenly power. His magical abilities are greater than the most powerful wizard and his melee attacks can devastate whole armies. Only one equal in power and prowess has any hope to stand against this divine knight. " + } + }, + "Dex": { + "type": "byte", + "value": 30 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 0 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 15 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 158 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 14 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 8 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 10 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 15 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 157 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 1 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 154 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 14 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 8 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 29 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 44 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 15 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 8 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "arch angels robe", + "id": 90474 + } + }, + "Metal1Color": { + "type": "byte", + "value": 11 + }, + "Metal2Color": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_CLOTH008" + }, + "TemplateResRef": { + "type": "resref", + "value": "cloth010" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 16, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 1 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 115981352 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tyriel's Sword", + "id": 166 + } + }, + "ModelPart1": { + "type": "byte", + "value": 61 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 26 + }, + "CostValue": { + "type": "word", + "value": 29 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 82 + }, + "Subtype": { + "type": "word", + "value": 26 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WSWLS001" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswls002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 1 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 115981352 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tyriel's Sword", + "id": 166 + } + }, + "ModelPart1": { + "type": "byte", + "value": 61 + }, + "ModelPart2": { + "type": "byte", + "value": 11 + }, + "ModelPart3": { + "type": "byte", + "value": 11 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 20 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 25 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 6 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 43 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 74 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 26 + }, + "CostValue": { + "type": "word", + "value": 29 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 82 + }, + "Subtype": { + "type": "word", + "value": 26 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 83 + }, + "Subtype": { + "type": "word", + "value": 5 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_WSWLS001" + }, + "TemplateResRef": { + "type": "resref", + "value": "wswls002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 131072, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 73 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 136345568 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Tyriels Hide", + "id": 16807498 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 19 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 7 + }, + "CostValue": { + "type": "word", + "value": 10 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 23 + }, + "Subtype": { + "type": "word", + "value": 12 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 5 + }, + "CostValue": { + "type": "word", + "value": 7 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 20 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 23 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 78 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRE_HAMATH" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_cre_hamat002" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 3 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 857 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 858 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 859 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 408 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 944 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 7 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 228 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 512 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 996 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 217 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 414 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 909 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 10 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 374 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 856 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 966 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 972 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 584 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 610 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 611 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 612 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 613 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 614 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 615 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 616 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 617 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 618 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 877 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 990 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 878 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 876 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1071 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 636 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 997 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 674 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 998 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 976 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 389 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 249 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 391 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 824 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 825 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 393 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 394 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 395 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 396 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 397 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 398 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 399 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 400 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 401 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 964 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 963 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 235 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 696 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 68 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 995 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 834 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 835 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 20 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 868 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 299 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 24 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 726 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 999 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 28 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 945 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 225 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 301 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 221 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 346 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 347 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 348 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 349 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 350 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 351 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 35 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 166 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 167 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 168 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 169 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 170 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 171 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 172 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 36 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 392 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 753 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 884 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 106 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 993 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 928 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 1000 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 45 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 46 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 51 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 144 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 994 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 867 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Arch Angel Tyriel" + } + }, + "fortbonus": { + "type": "short", + "value": 6 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 560 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 100 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 1280 + }, + "NaturalAC": { + "type": "byte", + "value": 34 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2217 + }, + "Race": { + "type": "byte", + "value": 1 + }, + "refbonus": { + "type": "short", + "value": 6 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "final_conv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 95 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 95 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 13 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 13 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 13 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 21 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 38 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 90 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 99 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 13 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 60 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 5 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 241 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 196 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 429 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 203 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 372 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 372 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 42 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 42 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 622 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 47 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 47 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 695 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 640 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 636 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 636 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 122 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 122 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 185 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 185 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "l6" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "angel" + }, + "WalkRate": { + "type": "int", + "value": 8 + }, + "willbonus": { + "type": "short", + "value": 6 + }, + "Wings": { + "type": "byte", + "value": 2 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 18.62582778930664 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 56.24526596069336 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 40 + }, + "Appearance_Type": { + "type": "word", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 55.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 16 + }, + "Color_Skin": { + "type": "byte", + "value": 40 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "..." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 10000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 20 + }, + "Cloth2Color": { + "type": "byte", + "value": 20 + }, + "Cost": { + "type": "dword", + "value": 22816 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91089 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Leather1Color": { + "type": "byte", + "value": 20 + }, + "Leather2Color": { + "type": "byte", + "value": 20 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91087 + } + }, + "Metal1Color": { + "type": "byte", + "value": 0 + }, + "Metal2Color": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 524 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 521 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer1" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer003" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Angel" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1049 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "x2_def_attacked" + }, + "ScriptDamaged": { + "type": "resref", + "value": "x2_def_ondamage" + }, + "ScriptDeath": { + "type": "resref", + "value": "gb_death" + }, + "ScriptDialogue": { + "type": "resref", + "value": "x2_def_onconv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "x2_def_ondisturb" + }, + "ScriptEndRound": { + "type": "resref", + "value": "x2_def_endcombat" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "x2_def_heartbeat" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "x2_def_onblocked" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "x2_def_percept" + }, + "ScriptRested": { + "type": "resref", + "value": "x2_def_rested" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "x2_def_spellcast" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "x2_def_userdef" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "l_angel5" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "angel003" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 2 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 0.9807849526405335 + }, + "XPosition": { + "type": "float", + "value": 21.93310737609863 + }, + "YOrientation": { + "type": "float", + "value": 0.1950918734073639 + }, + "YPosition": { + "type": "float", + "value": 41.15846633911133 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Head": { + "type": "byte", + "value": 40 + }, + "Appearance_Type": { + "type": "word", + "value": 1 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 1 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "BodyPart_Belt": { + "type": "byte", + "value": 0 + }, + "BodyPart_LBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_LFoot": { + "type": "byte", + "value": 1 + }, + "BodyPart_LHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_LShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_LThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Neck": { + "type": "byte", + "value": 1 + }, + "BodyPart_Pelvis": { + "type": "byte", + "value": 1 + }, + "BodyPart_RBicep": { + "type": "byte", + "value": 1 + }, + "BodyPart_RFArm": { + "type": "byte", + "value": 1 + }, + "BodyPart_RHand": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShin": { + "type": "byte", + "value": 1 + }, + "BodyPart_RShoul": { + "type": "byte", + "value": 0 + }, + "BodyPart_RThigh": { + "type": "byte", + "value": 1 + }, + "BodyPart_Torso": { + "type": "byte", + "value": 1 + }, + "Cha": { + "type": "byte", + "value": 60 + }, + "ChallengeRating": { + "type": "float", + "value": 55.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 6 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Color_Hair": { + "type": "byte", + "value": 23 + }, + "Color_Skin": { + "type": "byte", + "value": 18 + }, + "Color_Tattoo1": { + "type": "byte", + "value": 1 + }, + "Color_Tattoo2": { + "type": "byte", + "value": 1 + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 200 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "..." + } + }, + "Dex": { + "type": "byte", + "value": 60 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 10000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 3 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 1 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 23 + }, + "Cloth2Color": { + "type": "byte", + "value": 23 + }, + "Cost": { + "type": "dword", + "value": 22816 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91089 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 91087 + } + }, + "Metal1Color": { + "type": "byte", + "value": 7 + }, + "Metal2Color": { + "type": "byte", + "value": 7 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 1 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 13 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 524 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 3 + }, + "CostValue": { + "type": "word", + "value": 8 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 15 + }, + "Subtype": { + "type": "word", + "value": 521 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer1" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer009" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 32 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 44 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Demon" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 1 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 200 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 1000 + }, + "NaturalAC": { + "type": "byte", + "value": 45 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1049 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "x2_def_attacked" + }, + "ScriptDamaged": { + "type": "resref", + "value": "x2_def_ondamage" + }, + "ScriptDeath": { + "type": "resref", + "value": "gb_death" + }, + "ScriptDialogue": { + "type": "resref", + "value": "x2_def_onconv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "x2_def_ondisturb" + }, + "ScriptEndRound": { + "type": "resref", + "value": "x2_def_endcombat" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "x2_def_heartbeat" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "x2_def_onblocked" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "x2_def_percept" + }, + "ScriptRested": { + "type": "resref", + "value": "x2_def_rested" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "x2_def_spellcast" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "x2_def_userdef" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 156 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 4 + }, + "Str": { + "type": "byte", + "value": 60 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "d_angel5" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "angel004" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 1 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 28.08740997314453 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 41.09149932861328 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 471 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 20 + }, + "ChallengeRating": { + "type": "float", + "value": 241.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 5 + }, + "ClassLevel": { + "type": "short", + "value": 40 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 4 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + }, + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 32 + }, + "ClassLevel": { + "type": "short", + "value": 20 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 30 + }, + "Conversation": { + "type": "resref", + "value": "meph_final" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 400 + }, + "DecayTime": { + "type": "dword", + "value": 11000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Dex": { + "type": "byte", + "value": 30 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "AddCost": { + "type": "dword", + "value": 20000 + }, + "ArmorPart_Belt": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_LFArm": { + "type": "byte", + "value": 159 + }, + "ArmorPart_LFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LHand": { + "type": "byte", + "value": 122 + }, + "ArmorPart_LShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_LShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_LThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Neck": { + "type": "byte", + "value": 112 + }, + "ArmorPart_Pelvis": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RBicep": { + "type": "byte", + "value": 1 + }, + "ArmorPart_RFArm": { + "type": "byte", + "value": 159 + }, + "ArmorPart_RFoot": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RHand": { + "type": "byte", + "value": 122 + }, + "ArmorPart_Robe": { + "type": "byte", + "value": 170 + }, + "ArmorPart_RShin": { + "type": "byte", + "value": 4 + }, + "ArmorPart_RShoul": { + "type": "byte", + "value": 0 + }, + "ArmorPart_RThigh": { + "type": "byte", + "value": 4 + }, + "ArmorPart_Torso": { + "type": "byte", + "value": 6 + }, + "BaseItem": { + "type": "int", + "value": 16 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cloth1Color": { + "type": "byte", + "value": 45 + }, + "Cloth2Color": { + "type": "byte", + "value": 45 + }, + "Cost": { + "type": "dword", + "value": 7381641 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 91091 + } + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 91088 + } + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "Leather1Color": { + "type": "byte", + "value": 23 + }, + "Leather2Color": { + "type": "byte", + "value": 23 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Mephisto's Robe", + "id": 91090 + } + }, + "Metal1Color": { + "type": "byte", + "value": 24 + }, + "Metal2Color": { + "type": "byte", + "value": 25 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 6 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 22 + }, + "Subtype": { + "type": "word", + "value": 14 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 22 + }, + "CostValue": { + "type": "word", + "value": 3 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 24 + }, + "Subtype": { + "type": "word", + "value": 11 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 9 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 4 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 1 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 37 + }, + "Subtype": { + "type": "word", + "value": 2 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 51 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_sequencer2" + }, + "TemplateResRef": { + "type": "resref", + "value": "sequencer007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 4, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 26 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 12251 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 13336 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13337 + } + }, + "ModelPart1": { + "type": "byte", + "value": 13 + }, + "ModelPart2": { + "type": "byte", + "value": 22 + }, + "ModelPart3": { + "type": "byte", + "value": 12 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 0 + }, + "CostValue": { + "type": "word", + "value": 0 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 35 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_MBOOTS002" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mboots007" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 8, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 36 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 9144142 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": { + "id": 67487 + } + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 1 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Angel Gloves", + "id": 90882 + } + }, + "ModelPart1": { + "type": "byte", + "value": 9 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 2 + }, + "CostValue": { + "type": "word", + "value": 18 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 56 + }, + "Subtype": { + "type": "word", + "value": 0 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 5 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 4 + }, + "CostValue": { + "type": "word", + "value": 30 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 16 + }, + "Subtype": { + "type": "word", + "value": 13 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 5 + }, + "Param1": { + "type": "byte", + "value": 2 + }, + "Param1Value": { + "type": "byte", + "value": 2 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 18 + } + }, + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 24 + }, + "CostValue": { + "type": "word", + "value": 6 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 0 + }, + "PropertyName": { + "type": "word", + "value": 48 + }, + "Subtype": { + "type": "word", + "value": 25 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "X2_IT_MGLOVE014" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_mglove019" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 5 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 6 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 8 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 214 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 215 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 413 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 297 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 971 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 754 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 755 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 756 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 757 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 206 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 204 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 212 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 697 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 698 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 17 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 21 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 344 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 23 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 260 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 207 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 216 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 209 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 258 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 296 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 345 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 208 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 39 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 41 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 306 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 49 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 211 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "0": "Mephisto" + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 100 + }, + "HitPoints": { + "type": "short", + "value": 400 + }, + "Int": { + "type": "byte", + "value": 30 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": { + "0": "" + } + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 1 + }, + "MaxHitPoints": { + "type": "short", + "value": 1200 + }, + "NaturalAC": { + "type": "byte", + "value": 44 + }, + "NoPermDeath": { + "type": "byte", + "value": 1 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 704 + }, + "Race": { + "type": "byte", + "value": 6 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "" + }, + "ScriptDamaged": { + "type": "resref", + "value": "" + }, + "ScriptDeath": { + "type": "resref", + "value": "" + }, + "ScriptDialogue": { + "type": "resref", + "value": "x2_def_onconv" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "" + }, + "ScriptEndRound": { + "type": "resref", + "value": "" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "" + }, + "ScriptRested": { + "type": "resref", + "value": "" + }, + "ScriptSpawn": { + "type": "resref", + "value": "" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 50 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 41 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 2 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 408 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 56 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 127 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 131 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 289 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 0 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 415 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 15 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 190 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + }, + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 441 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 5 + }, + "Str": { + "type": "byte", + "value": 30 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "d50" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "mephisto" + }, + "WalkRate": { + "type": "int", + "value": 8 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 1 + }, + "Wis": { + "type": "byte", + "value": 30 + }, + "XOrientation": { + "type": "float", + "value": 0.9807849526405335 + }, + "XPosition": { + "type": "float", + "value": 7.115445137023926 + }, + "YOrientation": { + "type": "float", + "value": 0.1950918734073639 + }, + "YPosition": { + "type": "float", + "value": 15.00534152984619 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 44 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 1 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 1 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "The Great Door", + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "CastleDoor" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_18" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 25.0 + }, + "Y": { + "type": "float", + "value": 73.30000305175781 + }, + "Z": { + "type": "float", + "value": 4.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.081166744232178 + }, + "Y": { + "type": "float", + "value": 19.04586219787598 + }, + "Z": { + "type": "float", + "value": 0.248931884765625 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 6.897650241851807 + }, + "Y": { + "type": "float", + "value": 11.13092231750488 + }, + "Z": { + "type": "float", + "value": 0.4066991806030273 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.88915634155273 + }, + "Y": { + "type": "float", + "value": 18.79183387756348 + }, + "Z": { + "type": "float", + "value": 0.2991704940795898 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.98473358154297 + }, + "Y": { + "type": "float", + "value": 10.87495231628418 + }, + "Z": { + "type": "float", + "value": 0.2819652557373047 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2937 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14157247543335 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813700 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812872 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2592 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.10284614562988 + }, + "Y": { + "type": "float", + "value": 74.04903411865234 + }, + "Z": { + "type": "float", + "value": 4.80394458770752 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2937 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.14157247543335 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813700 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812872 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2592 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 30.16629028320313 + }, + "Y": { + "type": "float", + "value": 74.08279418945313 + }, + "Z": { + "type": "float", + "value": 4.73674488067627 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14157247543335 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.51661109924316 + }, + "Y": { + "type": "float", + "value": 32.5389289855957 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2938 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14157247543335 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813728 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812878 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2593 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUES004" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statues004" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 29.54781150817871 + }, + "Y": { + "type": "float", + "value": 32.53991317749023 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 91 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14732 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14536 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 449 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Statue - Stone" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_statue1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.42974662780762 + }, + "Y": { + "type": "float", + "value": 3.842979907989502 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 91 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14732 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14536 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 449 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Statue - Stone" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_statue1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.39841842651367 + }, + "Y": { + "type": "float", + "value": 13.89850902557373 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 91 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14732 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14536 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 449 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Statue - Stone" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_statue1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 19.40613746643066 + }, + "Y": { + "type": "float", + "value": 23.74850654602051 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 91 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14732 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14536 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 449 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Statue - Stone" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_statue1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 30.61570549011231 + }, + "Y": { + "type": "float", + "value": 23.71569633483887 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 91 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14732 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14536 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 449 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Statue - Stone" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_statue1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 30.6616325378418 + }, + "Y": { + "type": "float", + "value": 13.83172798156738 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 91 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14732 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14536 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 449 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Statue - Stone" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_statue1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 30.57292747497559 + }, + "Y": { + "type": "float", + "value": 3.826803684234619 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 91 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14732 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14536 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 449 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Statue - Stone" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_statue1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 21.15684318542481 + }, + "Y": { + "type": "float", + "value": 39.13570404052734 + }, + "Z": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 91 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14732 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14536 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 449 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Statue - Stone" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_statue1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 28.81631660461426 + }, + "Y": { + "type": "float", + "value": 39.24017715454102 + }, + "Z": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2985 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810985 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812614 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 480 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_BANNER030" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_banner030" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 29.97592544555664 + }, + "Y": { + "type": "float", + "value": 70.00210571289063 + }, + "Z": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2122 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14157247543335 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810985 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813522 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 480 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_BANNER010" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_banner010" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.05780792236328 + }, + "Y": { + "type": "float", + "value": 70.03620147705078 + }, + "Z": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.03749465942383 + }, + "Y": { + "type": "float", + "value": 70.06598663330078 + }, + "Z": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 172 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14725 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 530 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Red" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solred" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 29.88845062255859 + }, + "Y": { + "type": "float", + "value": 70.00093078613281 + }, + "Z": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 159 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14672 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14673 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 517 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Magic Sparks - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_magicblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0664119720459 + }, + "Y": { + "type": "float", + "value": 64.72505187988281 + }, + "Z": { + "type": "float", + "value": 5.179994106292725 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 159 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14672 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14673 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 517 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Magic Sparks - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_magicblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.02445125579834 + }, + "Y": { + "type": "float", + "value": 44.84767913818359 + }, + "Z": { + "type": "float", + "value": 5.180000305175781 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 159 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14672 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14673 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 517 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Magic Sparks - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_magicblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 35.08442306518555 + }, + "Y": { + "type": "float", + "value": 44.7449836730957 + }, + "Z": { + "type": "float", + "value": 5.180000305175781 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 159 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14672 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14673 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 517 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Magic Sparks - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_magicblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 35.17316818237305 + }, + "Y": { + "type": "float", + "value": 64.88407897949219 + }, + "Z": { + "type": "float", + "value": 5.179999828338623 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67862 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_fountainsm" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "FountainSmall" + }, + "TemplateResRef": { + "type": "resref", + "value": "fountainsmall" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 15.15923023223877 + }, + "YPosition": { + "type": "float", + "value": 44.31447219848633 + }, + "ZPosition": { + "type": "float", + "value": 6.679999828338623 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67862 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_fountainsm" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "FountainSmall" + }, + "TemplateResRef": { + "type": "resref", + "value": "fountainsmall" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 34.55974960327148 + }, + "YPosition": { + "type": "float", + "value": 44.07344436645508 + }, + "ZPosition": { + "type": "float", + "value": 6.679999828338623 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67862 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_fountainsm" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "FountainSmall" + }, + "TemplateResRef": { + "type": "resref", + "value": "fountainsmall" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 35.54377365112305 + }, + "YPosition": { + "type": "float", + "value": 63.98742294311523 + }, + "ZPosition": { + "type": "float", + "value": 6.099999904632568 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67862 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_fountainsm" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "FountainSmall" + }, + "TemplateResRef": { + "type": "resref", + "value": "fountainsmall" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 14.84802532196045 + }, + "YPosition": { + "type": "float", + "value": 64.12987518310547 + }, + "ZPosition": { + "type": "float", + "value": 6.414163112640381 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68014 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_waterfall2" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WaterfallLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "waterfalllarg001" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 43.32657623291016 + }, + "YPosition": { + "type": "float", + "value": 5.011748313903809 + }, + "ZPosition": { + "type": "float", + "value": 0.800000011920929 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68014 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_waterfall2" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WaterfallLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "waterfalllarg001" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 6.15312671661377 + }, + "YPosition": { + "type": "float", + "value": 5.625857830047607 + }, + "ZPosition": { + "type": "float", + "value": 0.800000011920929 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "pc_final_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 24.98561859130859 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 1.330625653266907 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "pc_final_wp3" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 24.97731399536133 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 59.92956161499023 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "starfall_final_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -2.0178156773909e-005 + }, + "XPosition": { + "type": "float", + "value": 25.03871917724609 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 63.19781494140625 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "guard1_wp1" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 23.13874053955078 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 22.76164436340332 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "guard2_wp1" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 26.82801055908203 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 22.79248046875 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "guard1_wp2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 20.76988220214844 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 29.12038803100586 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "guard2_wp2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 29.07054138183594 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 29.20145606994629 + }, + "ZPosition": { + "type": "float", + "value": 1.071952283382416e-005 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "pc_final_wp2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 24.99369621276856 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 39.57758331298828 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "angel_wp1" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 23.26449012756348 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.67110061645508 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "demon_wp1" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 26.71719741821289 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.69021987915039 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "demon_wp2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 26.68326759338379 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 58.20907592773438 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "angel_wp2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 23.31540298461914 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 58.21421051025391 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "creature_facing" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 24.99417877197266 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 55.12812805175781 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "phoenix_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 24.92929077148438 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 27.60427093505859 + }, + "ZPosition": { + "type": "float", + "value": -2.477318048477173e-007 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "pc_final_wp4" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.05504417419434 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 62.40392303466797 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "starfall_final_wp2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 24.97992324829102 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 64.66329193115234 + }, + "ZPosition": { + "type": "float", + "value": 4.000009536743164 + } + } + ] + } +} diff --git a/_module/git/lakevictory.git.json b/_module/git/lakevictory.git.json new file mode 100644 index 0000000..3f2e7e9 --- /dev/null +++ b/_module/git/lakevictory.git.json @@ -0,0 +1,10245 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 53 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 24 + }, + "AmbientSndNight": { + "type": "int", + "value": 53 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 24 + }, + "EnvAudio": { + "type": "int", + "value": 89 + }, + "MusicBattle": { + "type": "int", + "value": 0 + }, + "MusicDay": { + "type": "int", + "value": 77 + }, + "MusicDelay": { + "type": "int", + "value": 100000 + }, + "MusicNight": { + "type": "int", + "value": 77 + } + } + }, + "Creature List": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 8 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 6 + }, + "ChallengeRating": { + "type": "float", + "value": 0.5 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 15 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 4 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 12365 + } + }, + "Dex": { + "type": "byte", + "value": 7 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 80 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13261 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP001" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp015" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 80 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13261 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP001" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewpsp016" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 180 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13246 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS014" + }, + "TemplateResRef": { + "type": "resref", + "value": "it_crewps025" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 12366 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 4 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 6 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 144 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "nw_c2_default1" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 4 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 299 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 8 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "NW_BADGER" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "badger001" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 77.8101806640625 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 41.34688949584961 + }, + "ZPosition": { + "type": "float", + "value": -0.185765266418457 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1328 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 6 + }, + "ChallengeRating": { + "type": "float", + "value": 0.5 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 15 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 4 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16816587 + } + }, + "Dex": { + "type": "byte", + "value": 7 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 80 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13261 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 80 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13261 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 180 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13246 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS014" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 16816302 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 4 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 6 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2168 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "nw_c2_default1" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 4 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 299 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 8 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_RACCOON" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_raccoon" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.81080627441406 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 62.25971221923828 + }, + "ZPosition": { + "type": "float", + "value": -1.788139343261719e-007 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1330 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 6 + }, + "ChallengeRating": { + "type": "float", + "value": 0.5 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 1 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 15 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 4 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16816588 + } + }, + "Dex": { + "type": "byte", + "value": 7 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 80 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13261 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 80 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13261 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 180 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13246 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS014" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 16816314 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 4 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 6 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2168 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "nw_c2_default1" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 4 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 4 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 299 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 8 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_RINGTAIL" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_ringtail" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": -0.7071065902709961 + }, + "XPosition": { + "type": "float", + "value": 78.06268310546875 + }, + "YOrientation": { + "type": "float", + "value": 0.7071069478988648 + }, + "YPosition": { + "type": "float", + "value": 26.6265811920166 + }, + "ZPosition": { + "type": "float", + "value": -0.1548399925231934 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1336 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 3 + }, + "ChallengeRating": { + "type": "float", + "value": 1.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 2 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 12 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 6 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16816669 + } + }, + "Dex": { + "type": "byte", + "value": 18 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 180 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13246 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS014" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 16816496 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 0 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 6 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 8 + }, + "NaturalAC": { + "type": "byte", + "value": 0 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 602 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "nw_c2_default1" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 18 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 10 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 249 + }, + "SpecAbilityList": { + "type": "list", + "value": [] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 5 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_WEASEL" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_weasel" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.7071065902709961 + }, + "XPosition": { + "type": "float", + "value": 91.80242156982422 + }, + "YOrientation": { + "type": "float", + "value": 0.7071069478988648 + }, + "YPosition": { + "type": "float", + "value": 37.55617904663086 + }, + "ZPosition": { + "type": "float", + "value": 0.01000165939331055 + } + }, + { + "__struct_id": 4, + "Appearance_Type": { + "type": "word", + "value": 1337 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "Cha": { + "type": "byte", + "value": 10 + }, + "ChallengeRating": { + "type": "float", + "value": 2.0 + }, + "ClassList": { + "type": "list", + "value": [ + { + "__struct_id": 2, + "Class": { + "type": "int", + "value": 12 + }, + "ClassLevel": { + "type": "short", + "value": 3 + } + } + ] + }, + "Con": { + "type": "byte", + "value": 19 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CRAdjust": { + "type": "int", + "value": 0 + }, + "CurrentHitPoints": { + "type": "short", + "value": 13 + }, + "DecayTime": { + "type": "dword", + "value": 5000 + }, + "Deity": { + "type": "cexostring", + "value": "" + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Wolverines are omnivores (meat and plant eaters). They eat carrion (dead meat that they find), large and small mammals (like weak caribou, deer, and rodents), birds, eggs, fish, plants, roots, and fruit. They can kill animals that are bigger than they are. Wolverines sometimes kill more animals or meat than they can eat, so they store the remainder underground. Wolverines have powerful jaws that can crush bones.", + "id": 16816672 + } + }, + "Dex": { + "type": "byte", + "value": 15 + }, + "Disarmable": { + "type": "byte", + "value": 0 + }, + "Equip_ItemList": { + "type": "list", + "value": [ + { + "__struct_id": 16384, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 80 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13261 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 32768, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 72 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 80 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13261 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 1 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPSP001" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewpsp001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + }, + { + "__struct_id": 65536, + "AddCost": { + "type": "dword", + "value": 0 + }, + "BaseItem": { + "type": "int", + "value": 69 + }, + "Charges": { + "type": "byte", + "value": 0 + }, + "Cost": { + "type": "dword", + "value": 180 + }, + "Cursed": { + "type": "byte", + "value": 0 + }, + "DescIdentified": { + "type": "cexolocstring", + "value": {} + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "Identified": { + "type": "byte", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 13246 + } + }, + "ModelPart1": { + "type": "byte", + "value": 1 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PropertiesList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ChanceAppear": { + "type": "byte", + "value": 100 + }, + "CostTable": { + "type": "byte", + "value": 19 + }, + "CostValue": { + "type": "word", + "value": 2 + }, + "Param1": { + "type": "byte", + "value": 255 + }, + "Param1Value": { + "type": "byte", + "value": 255 + }, + "PropertyName": { + "type": "word", + "value": 77 + }, + "Subtype": { + "type": "word", + "value": 0 + } + } + ] + }, + "StackSize": { + "type": "word", + "value": 1 + }, + "Stolen": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "NW_IT_CREWPS014" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_it_crewps014" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": -1.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": -1.0 + }, + "ZPosition": { + "type": "float", + "value": -1.0 + } + } + ] + }, + "FactionID": { + "type": "word", + "value": 3 + }, + "FeatList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 42 + } + }, + { + "__struct_id": 1, + "Feat": { + "type": "word", + "value": 289 + } + } + ] + }, + "FirstName": { + "type": "cexolocstring", + "value": { + "id": 16816512 + } + }, + "fortbonus": { + "type": "short", + "value": 0 + }, + "Gender": { + "type": "byte", + "value": 2 + }, + "GoodEvil": { + "type": "byte", + "value": 50 + }, + "HitPoints": { + "type": "short", + "value": 13 + }, + "Int": { + "type": "byte", + "value": 3 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "IsImmortal": { + "type": "byte", + "value": 0 + }, + "IsPC": { + "type": "byte", + "value": 0 + }, + "LastName": { + "type": "cexolocstring", + "value": {} + }, + "LawfulChaotic": { + "type": "byte", + "value": 50 + }, + "Lootable": { + "type": "byte", + "value": 0 + }, + "MaxHitPoints": { + "type": "short", + "value": 25 + }, + "NaturalAC": { + "type": "byte", + "value": 2 + }, + "NoPermDeath": { + "type": "byte", + "value": 0 + }, + "PerceptionRange": { + "type": "byte", + "value": 11 + }, + "Phenotype": { + "type": "int", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2206 + }, + "Race": { + "type": "byte", + "value": 8 + }, + "refbonus": { + "type": "short", + "value": 0 + }, + "ScriptAttacked": { + "type": "resref", + "value": "nw_c2_default5" + }, + "ScriptDamaged": { + "type": "resref", + "value": "nw_c2_default6" + }, + "ScriptDeath": { + "type": "resref", + "value": "nw_c2_default7" + }, + "ScriptDialogue": { + "type": "resref", + "value": "nw_c2_default4" + }, + "ScriptDisturbed": { + "type": "resref", + "value": "nw_c2_default8" + }, + "ScriptEndRound": { + "type": "resref", + "value": "nw_c2_default3" + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "nw_c2_default1" + }, + "ScriptOnBlocked": { + "type": "resref", + "value": "nw_c2_defaulte" + }, + "ScriptOnNotice": { + "type": "resref", + "value": "nw_c2_default2" + }, + "ScriptRested": { + "type": "resref", + "value": "nw_c2_defaulta" + }, + "ScriptSpawn": { + "type": "resref", + "value": "nw_c2_default9" + }, + "ScriptSpellAt": { + "type": "resref", + "value": "nw_c2_defaultb" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "nw_c2_defaultd" + }, + "SkillList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 6 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + }, + { + "__struct_id": 0, + "Rank": { + "type": "byte", + "value": 0 + } + } + ] + }, + "SoundSetFile": { + "type": "word", + "value": 4 + }, + "SpecAbilityList": { + "type": "list", + "value": [ + { + "__struct_id": 4, + "Spell": { + "type": "word", + "value": 299 + }, + "SpellCasterLevel": { + "type": "byte", + "value": 1 + }, + "SpellFlags": { + "type": "byte", + "value": 1 + } + } + ] + }, + "StartingPackage": { + "type": "byte", + "value": 0 + }, + "Str": { + "type": "byte", + "value": 14 + }, + "Subrace": { + "type": "cexostring", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_WOLVERINE" + }, + "Tail": { + "type": "byte", + "value": 0 + }, + "TemplateList": { + "type": "list", + "value": [] + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_wolverine" + }, + "WalkRate": { + "type": "int", + "value": 7 + }, + "willbonus": { + "type": "short", + "value": 0 + }, + "Wings": { + "type": "byte", + "value": 0 + }, + "Wis": { + "type": "byte", + "value": 12 + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 90.8472900390625 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 51.9376106262207 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 1 + }, + "Appearance": { + "type": "dword", + "value": 65 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "RuralExit" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_29" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 55.0 + }, + "Y": { + "type": "float", + "value": 77.77999877929688 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 1 + }, + "Appearance": { + "type": "dword", + "value": 65 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "RuralExit" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_29" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 2.22000002861023 + }, + "Y": { + "type": "float", + "value": 35.0 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 1 + }, + "Appearance": { + "type": "dword", + "value": 65 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.141574382781982 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "RuralExit" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_29" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 75.0 + }, + "Y": { + "type": "float", + "value": 2.220000267028809 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 1 + }, + "Appearance": { + "type": "dword", + "value": 65 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "RuralExit" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_29" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 107.7799987792969 + }, + "Y": { + "type": "float", + "value": 45.0 + }, + "Z": { + "type": "float", + "value": 5.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 245 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66687 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 66686 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 805 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bearskinrug1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bearskinrug1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 66.03630065917969 + }, + "Y": { + "type": "float", + "value": 44.5821533203125 + }, + "Z": { + "type": "float", + "value": 9.298324584960938e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 245 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141574382781982 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66687 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 66686 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 805 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bearskinrug1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bearskinrug1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 66.14891052246094 + }, + "Y": { + "type": "float", + "value": 46.62749481201172 + }, + "Z": { + "type": "float", + "value": 9.298324584960938e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 245 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66687 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 66686 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 805 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bearskinrug1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bearskinrug1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 66.48552703857422 + }, + "Y": { + "type": "float", + "value": 43.26885223388672 + }, + "Z": { + "type": "float", + "value": 9.298324584960938e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 245 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.141572952270508 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66687 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 66686 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 805 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bearskinrug1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bearskinrug1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 67.3853759765625 + }, + "Y": { + "type": "float", + "value": 46.5684814453125 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 253 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68815 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9322 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_cushions" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_cushions" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 68.53781890869141 + }, + "Y": { + "type": "float", + "value": 42.44949340820313 + }, + "Z": { + "type": "float", + "value": 0.0099940225481987 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 253 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.141572952270508 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68815 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9322 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_cushions" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_cushions" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 68.6572265625 + }, + "Y": { + "type": "float", + "value": 47.46648025512695 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 253 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68815 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9322 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_cushions" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_cushions" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 68.83597564697266 + }, + "Y": { + "type": "float", + "value": 46.18933868408203 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 253 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.5890485644340515 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68815 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9322 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_cushions" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_cushions" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 68.67634582519531 + }, + "Y": { + "type": "float", + "value": 43.78712844848633 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 253 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -2.748875617980957 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68815 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9322 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_cushions" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_cushions" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 68.74677276611328 + }, + "Y": { + "type": "float", + "value": 45.01446914672852 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 3047 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16814214 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16814118 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 794 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_PINETR6" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_pinetr6" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 11.9016284942627 + }, + "Y": { + "type": "float", + "value": 12.03536319732666 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 3047 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16814214 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16814118 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 794 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_PINETR6" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_pinetr6" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 11.05112266540527 + }, + "Y": { + "type": "float", + "value": 67.26779174804688 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1737 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813234 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_TREE008" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_tree008" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.12627029418945 + }, + "Y": { + "type": "float", + "value": 28.36571311950684 + }, + "Z": { + "type": "float", + "value": 4.999994277954102 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1749 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813254 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_TREE014" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_tree014" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 13.610915184021 + }, + "Y": { + "type": "float", + "value": 49.9952392578125 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1765 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813286 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_TREE036" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_tree036" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 32.59762954711914 + }, + "Y": { + "type": "float", + "value": 70.69235992431641 + }, + "Z": { + "type": "float", + "value": 5.010008335113525 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1695 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813272 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_TREE061" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_tree061" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 37.48027801513672 + }, + "Y": { + "type": "float", + "value": 10.45667839050293 + }, + "Z": { + "type": "float", + "value": 5.010008335113525 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 1646 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813314 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_TREE002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_tree002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 50.77754974365234 + }, + "Y": { + "type": "float", + "value": 11.72802352905273 + }, + "Z": { + "type": "float", + "value": 5.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 49 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Fireworks Source" + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 407 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FireworksSource" + }, + "TemplateResRef": { + "type": "resref", + "value": "fireworkssource" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 40.56967163085938 + }, + "Y": { + "type": "float", + "value": 39.57233428955078 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 28 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -2.159843683242798 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14533 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5670 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "portal" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 386 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "Portal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_portal" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 82.38609313964844 + }, + "Y": { + "type": "float", + "value": 27.70842361450195 + }, + "Z": { + "type": "float", + "value": 0.01000165939331055 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 245 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -2.552533388137817 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66687 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 66686 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 805 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bearskinrug1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bearskinrug1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 65.65895843505859 + }, + "Y": { + "type": "float", + "value": 46.41375350952148 + }, + "Z": { + "type": "float", + "value": 9.298324584960938e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 245 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66687 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 66686 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 805 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bearskinrug1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bearskinrug1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 65.71847534179688 + }, + "Y": { + "type": "float", + "value": 46.05117416381836 + }, + "Z": { + "type": "float", + "value": 9.298324584960938e-006 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68014 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 40.0 + }, + "MinDistance": { + "type": "float", + "value": 4.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_waterfall2" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WaterfallLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "waterfalllarg001" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 53.96647262573242 + }, + "YPosition": { + "type": "float", + "value": 13.4607629776001 + }, + "ZPosition": { + "type": "float", + "value": 1.413519382476807 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68014 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 40.0 + }, + "MinDistance": { + "type": "float", + "value": 4.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_waterfall2" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WaterfallLarge" + }, + "TemplateResRef": { + "type": "resref", + "value": "waterfalllarg001" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 53.35870742797852 + }, + "YPosition": { + "type": "float", + "value": 66.58139801025391 + }, + "ZPosition": { + "type": "float", + "value": 2.569504261016846 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "npc_rug" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 66.66394805908203 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 45.65249633789063 + }, + "ZPosition": { + "type": "float", + "value": 9.298324584960938e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "pc_rug" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 66.70037841796875 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 44.40555191040039 + }, + "ZPosition": { + "type": "float", + "value": 9.298324584960938e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "rug_aim" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 66.6458740234375 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 40.63391876220703 + }, + "ZPosition": { + "type": "float", + "value": 9.298324584960938e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "show_face" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 41.69491195678711 + }, + "YOrientation": { + "type": "float", + "value": 2.102055759678478e-006 + }, + "YPosition": { + "type": "float", + "value": 39.39538192749023 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "lake_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -0.1950900852680206 + }, + "XPosition": { + "type": "float", + "value": 81.27064514160156 + }, + "YOrientation": { + "type": "float", + "value": 0.9807853102684021 + }, + "YPosition": { + "type": "float", + "value": 28.67710876464844 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "lake_wp1" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 1.82708081410965e-005 + }, + "XPosition": { + "type": "float", + "value": 81.24897766113281 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 31.39104843139648 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "rug_aim2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 66.66468048095703 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 39.53840255737305 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + } + ] + } +} diff --git a/_module/git/limbo.git.json b/_module/git/limbo.git.json new file mode 100644 index 0000000..c3734dc --- /dev/null +++ b/_module/git/limbo.git.json @@ -0,0 +1,2580 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 88 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 90 + }, + "AmbientSndNight": { + "type": "int", + "value": 88 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 90 + }, + "EnvAudio": { + "type": "int", + "value": 93 + }, + "MusicBattle": { + "type": "int", + "value": 0 + }, + "MusicDay": { + "type": "int", + "value": 0 + }, + "MusicDelay": { + "type": "int", + "value": 30000 + }, + "MusicNight": { + "type": "int", + "value": 0 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 39.84383773803711 + }, + "Y": { + "type": "float", + "value": 42.76117706298828 + }, + "Z": { + "type": "float", + "value": -2.400002479553223 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.1983528137207 + }, + "Y": { + "type": "float", + "value": 42.73129653930664 + }, + "Z": { + "type": "float", + "value": -2.400002479553223 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 27.39150428771973 + }, + "Y": { + "type": "float", + "value": 45.58246231079102 + }, + "Z": { + "type": "float", + "value": -2.400002479553223 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 45.04028701782227 + }, + "Y": { + "type": "float", + "value": 34.50403594970703 + }, + "Z": { + "type": "float", + "value": -2.400002479553223 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 29.05434036254883 + }, + "Y": { + "type": "float", + "value": 15.1798734664917 + }, + "Z": { + "type": "float", + "value": -2.400002479553223 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 38.22598266601563 + }, + "Y": { + "type": "float", + "value": 15.42156887054443 + }, + "Z": { + "type": "float", + "value": -2.400002479553223 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.06137275695801 + }, + "Y": { + "type": "float", + "value": 29.03170585632324 + }, + "Z": { + "type": "float", + "value": -2.400002479553223 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 45.55270767211914 + }, + "Y": { + "type": "float", + "value": 22.53915596008301 + }, + "Z": { + "type": "float", + "value": -2.400002479553223 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 20.4858283996582 + }, + "Y": { + "type": "float", + "value": 18.19175338745117 + }, + "Z": { + "type": "float", + "value": -2.400002479553223 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 8000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 4000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68034 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_wt_guststrng1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WindGustStrong" + }, + "TemplateResRef": { + "type": "resref", + "value": "windguststrong" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 29.46350479125977 + }, + "YPosition": { + "type": "float", + "value": 29.79831886291504 + }, + "ZPosition": { + "type": "float", + "value": 2.5 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "limbo_portal_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.7071065902709961 + }, + "XPosition": { + "type": "float", + "value": 27.76335144042969 + }, + "YOrientation": { + "type": "float", + "value": 0.7071069478988648 + }, + "YPosition": { + "type": "float", + "value": 28.00701332092285 + }, + "ZPosition": { + "type": "float", + "value": 0.9999942779541016 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "limbo_portal_sf" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.7071077823638916 + }, + "XPosition": { + "type": "float", + "value": 29.39685440063477 + }, + "YOrientation": { + "type": "float", + "value": -0.7071057558059692 + }, + "YPosition": { + "type": "float", + "value": 31.12582397460938 + }, + "ZPosition": { + "type": "float", + "value": 0.9999946355819702 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Waypoint", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "limbo_portal_pc" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -0.8314692974090576 + }, + "XPosition": { + "type": "float", + "value": 31.27849197387695 + }, + "YOrientation": { + "type": "float", + "value": 0.5555707216262817 + }, + "YPosition": { + "type": "float", + "value": 29.56572914123535 + }, + "ZPosition": { + "type": "float", + "value": 0.9999946355819702 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "sf_fire1" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 33.61553573608398 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 27.19023132324219 + }, + "ZPosition": { + "type": "float", + "value": 1.010000348091126 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "sf_fire3" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 26.10382461547852 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 33.49621963500977 + }, + "ZPosition": { + "type": "float", + "value": 1.010000348091126 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "sf_fire2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.3826833069324493 + }, + "XPosition": { + "type": "float", + "value": 25.72354507446289 + }, + "YOrientation": { + "type": "float", + "value": 0.9238795638084412 + }, + "YPosition": { + "type": "float", + "value": 24.61221504211426 + }, + "ZPosition": { + "type": "float", + "value": 1.5277099609375 + } + } + ] + } +} diff --git a/_module/git/limbo001.git.json b/_module/git/limbo001.git.json new file mode 100644 index 0000000..9fa4158 --- /dev/null +++ b/_module/git/limbo001.git.json @@ -0,0 +1,1348 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 37 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 48 + }, + "AmbientSndNight": { + "type": "int", + "value": 37 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 47 + }, + "EnvAudio": { + "type": "int", + "value": 24 + }, + "MusicBattle": { + "type": "int", + "value": 57 + }, + "MusicDay": { + "type": "int", + "value": 58 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 58 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 8 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 1 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10000 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Strange runes and pictographs, likely arcane in nature, have been scorched into the sides of this hide-covered strongbox.", + "id": 14595 + } + }, + "DisarmDC": { + "type": "byte", + "value": 250 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 250 + }, + "Hardness": { + "type": "byte", + "value": 250 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 10000 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "HD_NONEXIST" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Heart of Chaos", + "id": 5348 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "nw_o2_classlow" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "nw_o2_classlow" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 250 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 366 + }, + "Ref": { + "type": "byte", + "value": 250 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "HEARTOFCHAOS" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_chest2" + }, + "TrapDetectable": { + "type": "byte", + "value": 0 + }, + "TrapDetectDC": { + "type": "byte", + "value": 250 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 0 + }, + "TrapType": { + "type": "byte", + "value": 7 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 250 + }, + "X": { + "type": "float", + "value": 39.99505233764648 + }, + "Y": { + "type": "float", + "value": 40.00021743774414 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 312 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.14158821105957 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 75934 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 4 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68906 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x0_o2_use_wdoor" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 10 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 765 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "SecretStoneDoor" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_sec_door3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 5 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 40.0166130065918 + }, + "Y": { + "type": "float", + "value": 30.05571746826172 + }, + "Z": { + "type": "float", + "value": -8.381903171539307e-009 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 7 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "", + "id": 14594 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "PRC Manifestation Token Storage", + "id": 5348 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 365 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MANIFTOKEN_STORE" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_chest1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 50.0 + }, + "Y": { + "type": "float", + "value": 40.0 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 7 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14594 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "PRC_CRAFT_STORAGE_CHEST", + "id": 5348 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 365 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_CRAFT_STORAGE_CHEST" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_chest1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 30.0 + }, + "Y": { + "type": "float", + "value": 41.0 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 7 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14594 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 1 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "\";\\n", + "id": 5348 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 365 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_CRAFT_TEMPORARY_CHEST" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_chest1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 30.0 + }, + "Y": { + "type": "float", + "value": 39.0 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 3 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "npf_wp_chest_sp" + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "npf_wp_chest_sp" + }, + "TemplateResRef": { + "type": "resref", + "value": "npf_wp_chest_sp" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 39.75476837158203 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 59.88982391357422 + }, + "ZPosition": { + "type": "float", + "value": -5.7220458984375e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "PRC Shifting Template creature spawn location", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_SHIFTING_TEMPLATE_SPAWN" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 20.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 20.0 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + } + ] + } +} diff --git a/_module/git/mordmagman01.git.json b/_module/git/mordmagman01.git.json new file mode 100644 index 0000000..2fd5f4a --- /dev/null +++ b/_module/git/mordmagman01.git.json @@ -0,0 +1,342 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 66 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 32 + }, + "AmbientSndNight": { + "type": "int", + "value": 66 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 32 + }, + "EnvAudio": { + "type": "int", + "value": 0 + }, + "MusicBattle": { + "type": "int", + "value": 41 + }, + "MusicDay": { + "type": "int", + "value": 50 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 50 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Mansion Exit" + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "GenericType": { + "type": "byte", + "value": 8 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "dummy" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Mansion Exit" + } + }, + "OnClick": { + "type": "resref", + "value": "mord_exit" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 558 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MordsMansExit01" + }, + "TemplateResRef": { + "type": "resref", + "value": "mansionexit" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "MMM_ITEM" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0 + }, + "Y": { + "type": "float", + "value": 40.0 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_DISABLE_TELEPORTATION_IN_AREA" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 3 + } + } + ] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/mordmagman02.git.json b/_module/git/mordmagman02.git.json new file mode 100644 index 0000000..3c2701c --- /dev/null +++ b/_module/git/mordmagman02.git.json @@ -0,0 +1,342 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 66 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 32 + }, + "AmbientSndNight": { + "type": "int", + "value": 66 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 32 + }, + "EnvAudio": { + "type": "int", + "value": 0 + }, + "MusicBattle": { + "type": "int", + "value": 41 + }, + "MusicDay": { + "type": "int", + "value": 50 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 50 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Mansion Exit" + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "GenericType": { + "type": "byte", + "value": 8 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "dummy" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Mansion Exit" + } + }, + "OnClick": { + "type": "resref", + "value": "mord_exit" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 558 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MordsMansExit02" + }, + "TemplateResRef": { + "type": "resref", + "value": "mansionexit" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "MMM_ITEM" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0 + }, + "Y": { + "type": "float", + "value": 40.0 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_DISABLE_TELEPORTATION_IN_AREA" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 3 + } + } + ] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/mordmagman03.git.json b/_module/git/mordmagman03.git.json new file mode 100644 index 0000000..d69b078 --- /dev/null +++ b/_module/git/mordmagman03.git.json @@ -0,0 +1,342 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 66 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 32 + }, + "AmbientSndNight": { + "type": "int", + "value": 66 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 32 + }, + "EnvAudio": { + "type": "int", + "value": 0 + }, + "MusicBattle": { + "type": "int", + "value": 41 + }, + "MusicDay": { + "type": "int", + "value": 50 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 50 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Mansion Exit" + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "GenericType": { + "type": "byte", + "value": 8 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "dummy" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Mansion Exit" + } + }, + "OnClick": { + "type": "resref", + "value": "mord_exit" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 558 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MordsMansExit03" + }, + "TemplateResRef": { + "type": "resref", + "value": "mansionexit" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "MMM_ITEM" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0 + }, + "Y": { + "type": "float", + "value": 40.0 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_DISABLE_TELEPORTATION_IN_AREA" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 3 + } + } + ] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/mordmagman04.git.json b/_module/git/mordmagman04.git.json new file mode 100644 index 0000000..df61455 --- /dev/null +++ b/_module/git/mordmagman04.git.json @@ -0,0 +1,342 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 66 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 32 + }, + "AmbientSndNight": { + "type": "int", + "value": 66 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 32 + }, + "EnvAudio": { + "type": "int", + "value": 0 + }, + "MusicBattle": { + "type": "int", + "value": 41 + }, + "MusicDay": { + "type": "int", + "value": 50 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 50 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Mansion Exit" + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "GenericType": { + "type": "byte", + "value": 8 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "dummy" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Mansion Exit" + } + }, + "OnClick": { + "type": "resref", + "value": "mord_exit" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 558 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MordsMansExit04" + }, + "TemplateResRef": { + "type": "resref", + "value": "mansionexit" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "MMM_ITEM" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0 + }, + "Y": { + "type": "float", + "value": 40.0 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_DISABLE_TELEPORTATION_IN_AREA" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 3 + } + } + ] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/mordmagman05.git.json b/_module/git/mordmagman05.git.json new file mode 100644 index 0000000..1bc7bbf --- /dev/null +++ b/_module/git/mordmagman05.git.json @@ -0,0 +1,342 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 66 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 32 + }, + "AmbientSndNight": { + "type": "int", + "value": 66 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 32 + }, + "EnvAudio": { + "type": "int", + "value": 0 + }, + "MusicBattle": { + "type": "int", + "value": 41 + }, + "MusicDay": { + "type": "int", + "value": 50 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 50 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Mansion Exit" + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "GenericType": { + "type": "byte", + "value": 8 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "dummy" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Mansion Exit" + } + }, + "OnClick": { + "type": "resref", + "value": "mord_exit" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 558 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MordsMansExit05" + }, + "TemplateResRef": { + "type": "resref", + "value": "mansionexit" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "MMM_ITEM" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0 + }, + "Y": { + "type": "float", + "value": 40.0 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_DISABLE_TELEPORTATION_IN_AREA" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 3 + } + } + ] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/mordmagman06.git.json b/_module/git/mordmagman06.git.json new file mode 100644 index 0000000..e2220c1 --- /dev/null +++ b/_module/git/mordmagman06.git.json @@ -0,0 +1,342 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 66 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 32 + }, + "AmbientSndNight": { + "type": "int", + "value": 66 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 32 + }, + "EnvAudio": { + "type": "int", + "value": 0 + }, + "MusicBattle": { + "type": "int", + "value": 41 + }, + "MusicDay": { + "type": "int", + "value": 50 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 50 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Mansion Exit" + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "GenericType": { + "type": "byte", + "value": 8 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "dummy" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Mansion Exit" + } + }, + "OnClick": { + "type": "resref", + "value": "mord_exit" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 558 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "MordsMansExit06" + }, + "TemplateResRef": { + "type": "resref", + "value": "mansionexit" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "MMM_ITEM" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0 + }, + "Y": { + "type": "float", + "value": 40.0 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_DISABLE_TELEPORTATION_IN_AREA" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 3 + } + } + ] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/prc_maze_01.git.json b/_module/git/prc_maze_01.git.json new file mode 100644 index 0000000..999380a --- /dev/null +++ b/_module/git/prc_maze_01.git.json @@ -0,0 +1,73705 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 69 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 32 + }, + "AmbientSndNight": { + "type": "int", + "value": 69 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 32 + }, + "EnvAudio": { + "type": "int", + "value": 0 + }, + "MusicBattle": { + "type": "int", + "value": 38 + }, + "MusicDay": { + "type": "int", + "value": 11 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 12 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [ + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.2707840502262116 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Northward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_north" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4096 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 22.81622695922852 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 51.43787002563477 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2349531948566437 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Southward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_south" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 256 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 153.1847076416016 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 72.54074096679688 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.3958608210086823 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.5722495317459106 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Westward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 16 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 68.99031829833984 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 6.806238651275635 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.200000524520874 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Eastward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 7.382128238677979 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 6.948732852935791 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.5847901105880737 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.6696497201919556 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4096 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 3.01154375076294 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 40.96253204345703 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4369 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 45.50666809082031 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 45.98467636108398 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 86.54094696044922 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 6.967678070068359 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999995708465576 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4353 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 35.50896835327148 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 46.12579727172852 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.50891876220703 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 35.94875335693359 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.46780109405518 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 45.88255310058594 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.44297981262207 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 55.87224197387695 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4113 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.53337860107422 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 86.00540161132813 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.54983901977539 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 36.05147171020508 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.55816268920898 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 55.93521881103516 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 5.611909866333008 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 65.88629150390625 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.40461921691895 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 26.05331802368164 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.3261137008667 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 85.87836456298828 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.45626163482666 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 5.913662433624268 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.53039169311523 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 15.92131328582764 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 5.596872329711914 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 16.0695743560791 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 5.610793590545654 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 25.82070922851563 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 35.29148483276367 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 16.04148483276367 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999962329864502 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4353 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 35.52972793579102 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 26.13300132751465 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 45.23692321777344 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 25.62842750549316 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 1.119182229042053 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 35.29354095458984 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 6.037699699401856 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.39041137695313 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 6.118979930877686 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.60591888427734 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 6.060268878936768 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.68396377563477 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 25.84547805786133 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999995708465576 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.60591888427734 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 15.86480903625488 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 95.437744140625 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 6.079726219177246 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 115.4062576293945 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 16.0639820098877 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999995708465576 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 105.6359558105469 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 15.77871704101563 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 115.3349533081055 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 25.76296997070313 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.200000524520874 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4369 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 95.437744140625 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 26.04823875427246 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 105.5646362304688 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 6.079726219177246 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 85.73876190185547 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 25.76297187805176 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 85.39425659179688 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 16.0639820098877 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4113 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 75.51986694335938 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 15.99711036682129 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.47592926025391 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 26.08666801452637 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.32862854003906 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 35.7578239440918 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 45.54110336303711 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 36.05716323852539 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.49167633056641 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 46.01627349853516 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 35.4036750793457 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 35.97479248046875 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4353 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 5.54203462600708 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 45.9190559387207 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 35.46675491333008 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 55.95193862915039 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4113 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 125.5948867797852 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 6.034387588500977 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4353 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 125.674674987793 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 16.00754165649414 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4113 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 145.5045013427734 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 26.06047821044922 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4353 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 125.6210250854492 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 25.98069190979004 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 155.3956298828125 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 25.76592636108398 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.200000524520874 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 155.5576019287109 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 5.983038902282715 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 145.4915771484375 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 45.88912963867188 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 135.6738433837891 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 46.12174224853516 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 155.4341125488281 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 46.12174606323242 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 145.4229125976563 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 66.10997772216797 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999995708465576 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 135.6766510009766 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 65.80300903320313 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 125.4666519165039 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 36.04873657226563 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 125.4893264770508 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 56.08986282348633 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 105.3950347900391 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 45.98326873779297 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 95.43727874755859 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 66.02599334716797 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 105.6618270874023 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 36.08975982666016 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999962329864502 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 105.2358169555664 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 55.82796478271484 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 95.72119140625 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 45.83097839355469 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 95.63871002197266 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 55.98964691162109 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.68112945556641 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 46.04421997070313 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 85.57199096679688 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 46.16550445556641 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 75.58097839355469 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 45.92831802368164 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.60040283203125 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 55.92570877075195 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.76058578491211 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 55.84257125854492 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 45.66892623901367 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 65.77777099609375 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 75.38725280761719 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 56.11012268066406 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 115.7093963623047 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 56.12046051025391 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 105.553352355957 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 66.02806091308594 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.61870956420898 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 76.08641052246094 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 105.5792541503906 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 116.0735321044922 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 115.6219635009766 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 126.1162414550781 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 135.4682769775391 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 126.1162338256836 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 145.3515777587891 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 116.1532287597656 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 105.8183670043945 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 155.6688079833984 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999995708465576 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 155.3668975830078 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 155.9158172607422 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 145.2888641357422 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 145.7573699951172 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 115.6367721557617 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 145.7573699951172 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 135.3796081542969 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 135.7371520996094 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.74020004272461 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 66.09665679931641 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000038623809815 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 35.32824325561523 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 65.9049072265625 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.45547485351563 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 66.19254302978516 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4369 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 75.58873748779297 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 76.06822204589844 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 85.84793853759766 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 65.80902099609375 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.62148475646973 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 75.98092651367188 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 5.585388660430908 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 86.01702117919922 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.62148475646973 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 95.97986602783203 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 5.667905807495117 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 105.7316741943359 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 5.667905807495117 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 126.0635986328125 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 5.757955551147461 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 145.6945190429688 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.30326843261719 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 155.7801361083984 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.200000524520874 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.65903282165527 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 136.1492004394531 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.5689811706543 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 106.0724792480469 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4113 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.66346836090088 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 146.144775390625 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.48336887359619 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 125.7934494018555 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 35.38444137573242 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 125.8834991455078 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 35.47449493408203 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 105.7380676269531 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.38888549804688 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 76.27252197265625 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.48336791992188 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 105.9890594482422 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.74908065795898 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 85.77287292480469 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 35.38444137573242 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 86.22311401367188 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 115.4202728271484 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 66.05965423583984 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.200000524520874 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4353 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 105.6072998046875 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 96.03974151611328 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 155.5028686523438 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 106.1397247314453 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 155.4319000244141 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 86.0516357421875 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 145.4556732177734 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 96.19693756103516 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 135.3675079345703 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 76.09358215332031 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 125.4735717773438 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 86.12617492675781 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 135.7204742431641 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 95.74567413330078 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 145.6964569091797 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 85.78032684326172 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 125.720947265625 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 75.77325439453125 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 95.31057739257813 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 76.2684326171875 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 35.60686492919922 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 76.04721069335938 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 45.47449493408203 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 76.12430572509766 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 45.6286735534668 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 85.76065826416016 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.41921234130859 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 85.91484069824219 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999995708465576 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.42726135253906 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 75.77619171142578 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.200002908706665 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 75.22166442871094 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 85.71739959716797 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 115.8500442504883 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 85.5673828125 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 45.49661254882813 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 105.8790969848633 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4113 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.46294021606445 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 106.0758056640625 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 45.56217956542969 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 96.10946655273438 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.19470977783203 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 105.7379302978516 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 75.32766723632813 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 115.6619567871094 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4113 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 85.46063232421875 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 96.12728881835938 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4097 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 75.64105987548828 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 96.0228271484375 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.74333953857422 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 115.885368347168 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.69202041625977 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 115.8075180053711 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.200000524520874 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 35.42366790771484 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 116.1967849731445 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 95.2662353515625 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 95.84174346923828 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 125.3302383422852 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 95.84174346923828 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000038623809815 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 145.4843902587891 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 105.801155090332 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000038623809815 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 105.4466323852539 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 105.801155090332 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4353 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 85.62674713134766 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 105.9706726074219 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4113 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 45.49099731445313 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 126.0774917602539 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.40056610107422 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 126.0774993896484 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4353 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 85.55573272705078 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 136.0182342529297 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 95.35340881347656 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 135.7021789550781 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 95.24078369140625 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 155.7716064453125 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.41798400878906 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 155.7716064453125 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.75753784179688 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 135.7021942138672 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 75.63055419921875 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 145.8047485351563 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.73127746582031 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 155.8001403808594 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 257 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.75152397155762 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 155.7629089355469 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000010013580322 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 272 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 45.33826446533203 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 135.7196350097656 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 75.50485229492188 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 136.1657562255859 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.47052764892578 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 146.2994842529297 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4112 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 95.34055328369141 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 146.16845703125 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000019550323486 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4113 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 55.69839096069336 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 146.2415008544922 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "South & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_south_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 273 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 85.70761871337891 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 145.5891265869141 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & South & West Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_south_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4368 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.36296844482422 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 145.9153137207031 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.200000524520874 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.025417327880859 + }, + "PointY": { + "type": "float", + "value": 1.006362915039063 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.512710571289063 + }, + "PointY": { + "type": "float", + "value": -0.4936904907226563 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.519039154052734 + }, + "PointY": { + "type": "float", + "value": -1.481063842773438 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.010276794433594 + }, + "PointY": { + "type": "float", + "value": -2.999496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.022621154785156 + }, + "PointY": { + "type": "float", + "value": -3.493328094482422 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.510272979736328 + }, + "PointY": { + "type": "float", + "value": -3.499496459960938 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.010269165039063 + }, + "PointY": { + "type": "float", + "value": -1.987144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.004093170166015625 + }, + "PointY": { + "type": "float", + "value": -1.987148284912109 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.511528015136719 + }, + "PointY": { + "type": "float", + "value": -3.480979919433594 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999183654785156 + }, + "PointY": { + "type": "float", + "value": -3.493324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.005359649658203 + }, + "PointY": { + "type": "float", + "value": -2.993324279785156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4991798400878906 + }, + "PointY": { + "type": "float", + "value": -1.487144470214844 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.4930038452148438 + }, + "PointY": { + "type": "float", + "value": -0.4871406555175781 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.999927520751953 + }, + "PointY": { + "type": "float", + "value": 1.015377044677734 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 2.007808685302734 + }, + "PointY": { + "type": "float", + "value": 1.519588470458984 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 1.487838745117188 + }, + "PointY": { + "type": "float", + "value": 1.527469635009766 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -0.01651382446289063 + }, + "PointY": { + "type": "float", + "value": -0.00835418701171875 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -1.012691497802734 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -2.531734466552734 + }, + "PointY": { + "type": "float", + "value": 1.512706756591797 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": -3.012760162353516 + }, + "PointY": { + "type": "float", + "value": 1.519035339355469 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "North & West & East Junction", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_mvtrig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_north_west_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4113 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 65.468994140625 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 116.0966491699219 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Eastward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 7.683777809143066 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 156.9161987304688 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2853844165802002 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250001728534699 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Eastward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 127.4393997192383 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 136.955078125 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Eastward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_east" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 37.38794326782227 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 146.9919738769531 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.3603494465351105 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.4688006937503815 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Northward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_north" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4096 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 42.91007995605469 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 21.14060592651367 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.2707840502262116 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Northward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_north" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 4096 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 92.99277496337891 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 121.4183578491211 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.3958608210086823 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.5722495317459106 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Westward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 16 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 8.813660621643066 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 67.00049591064453 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.3958608210086823 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.5722495317459106 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Westward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 16 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 139.1716156005859 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 16.96518707275391 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.1999990940093994 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.3958608210086823 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.5722495317459106 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Westward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 16 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 18.92706298828125 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 97.01318359375 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + }, + { + "__struct_id": 1, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Cursor": { + "type": "byte", + "value": 0 + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Geometry": { + "type": "list", + "value": [ + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.0 + }, + "PointY": { + "type": "float", + "value": 0.0 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 0.003210067749023438 + }, + "PointY": { + "type": "float", + "value": -4.024104118347168 + }, + "PointZ": { + "type": "float", + "value": 0.2250000536441803 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.991964340209961 + }, + "PointY": { + "type": "float", + "value": -4.02381181716919 + }, + "PointZ": { + "type": "float", + "value": 0.3958608210086823 + } + }, + { + "__struct_id": 3, + "PointX": { + "type": "float", + "value": 3.99310302734375 + }, + "PointY": { + "type": "float", + "value": -0.009606361389160156 + }, + "PointZ": { + "type": "float", + "value": 0.5722495317459106 + } + } + ] + }, + "HighlightHeight": { + "type": "float", + "value": 0.0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Westward Entry", + "id": 14759 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "ScriptHeartbeat": { + "type": "resref", + "value": "" + }, + "ScriptOnEnter": { + "type": "resref", + "value": "prc_maze_en_trig" + }, + "ScriptOnExit": { + "type": "resref", + "value": "" + }, + "ScriptUserDefine": { + "type": "resref", + "value": "" + }, + "Tag": { + "type": "cexostring", + "value": "prc_maze_entry_west" + }, + "TemplateResRef": { + "type": "resref", + "value": "newgeneric" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "int", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "directions" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 16 + } + } + ] + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 48.66843414306641 + }, + "YOrientation": { + "type": "float", + "value": 0.0 + }, + "YPosition": { + "type": "float", + "value": 97.01317596435547 + }, + "ZOrientation": { + "type": "float", + "value": 0.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000476837158 + } + } + ] + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_Maze_Entries_Count" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 13 + } + } + ] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_1" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 129.0 + }, + "YOrientation": { + "type": "float", + "value": 1.148381556959066e-006 + }, + "YPosition": { + "type": "float", + "value": 135.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2099999934434891 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 9.0 + }, + "YOrientation": { + "type": "float", + "value": 1.148381556959066e-006 + }, + "YPosition": { + "type": "float", + "value": 155.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2099999934434891 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_3" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 39.0 + }, + "YOrientation": { + "type": "float", + "value": 1.148381556959066e-006 + }, + "YPosition": { + "type": "float", + "value": 145.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2099999934434891 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_4" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 21.0 + }, + "YOrientation": { + "type": "float", + "value": 1.148381556959066e-006 + }, + "YPosition": { + "type": "float", + "value": 95.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2099999934434891 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_5" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 51.0 + }, + "YOrientation": { + "type": "float", + "value": 1.148381556959066e-006 + }, + "YPosition": { + "type": "float", + "value": 95.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2099999934434891 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_6" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 95.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 119.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2099999934434891 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_7" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 2.773600272121257e-006 + }, + "XPosition": { + "type": "float", + "value": 155.0 + }, + "YOrientation": { + "type": "float", + "value": -1.0 + }, + "YPosition": { + "type": "float", + "value": 71.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2099999934434891 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_8" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 71.0 + }, + "YOrientation": { + "type": "float", + "value": 1.148381556959066e-006 + }, + "YPosition": { + "type": "float", + "value": 5.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2099999934434891 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_9" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 141.0 + }, + "YOrientation": { + "type": "float", + "value": 1.148381556959066e-006 + }, + "YPosition": { + "type": "float", + "value": 15.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2000000029802322 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_10" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 45.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 19.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2099999934434891 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_11" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 25.0 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 49.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_12" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": -1.0 + }, + "XPosition": { + "type": "float", + "value": 11.0 + }, + "YOrientation": { + "type": "float", + "value": 1.148381556959066e-006 + }, + "YPosition": { + "type": "float", + "value": 65.0 + }, + "ZPosition": { + "type": "float", + "value": 0.2099999934434891 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "0": "Maze Entry", + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PRC_MAZE_ENTRY_WP_13" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 1.0 + }, + "XPosition": { + "type": "float", + "value": 9.0 + }, + "YOrientation": { + "type": "float", + "value": 1.148381556959066e-006 + }, + "YPosition": { + "type": "float", + "value": 5.0 + }, + "ZPosition": { + "type": "float", + "value": 0.199998140335083 + } + } + ] + } +} diff --git a/_module/git/ruinedminds001.git.json b/_module/git/ruinedminds001.git.json new file mode 100644 index 0000000..75591c2 --- /dev/null +++ b/_module/git/ruinedminds001.git.json @@ -0,0 +1,2741 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 97 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 32 + }, + "AmbientSndNight": { + "type": "int", + "value": 98 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 32 + }, + "EnvAudio": { + "type": "int", + "value": 0 + }, + "MusicBattle": { + "type": "int", + "value": 40 + }, + "MusicDay": { + "type": "int", + "value": 52 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 52 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 78 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570795655250549 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "CorriDoor" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_08" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 45.0 + }, + "Y": { + "type": "float", + "value": 15.0 + }, + "Z": { + "type": "float", + "value": 0.2000000029802322 + } + }, + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 80 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "BridgeDoor" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_06" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0 + }, + "Y": { + "type": "float", + "value": 33.34000015258789 + }, + "Z": { + "type": "float", + "value": 0.699999988079071 + } + }, + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 80 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LinkedToFlags": { + "type": "byte", + "value": 0 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "BridgeDoor" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_06" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0 + }, + "Y": { + "type": "float", + "value": 36.68000030517578 + }, + "Z": { + "type": "float", + "value": 0.699999988079071 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 472 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84596 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84590 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_act" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_SCIRCLE" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_scircle" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.04899024963379 + }, + "Y": { + "type": "float", + "value": 65.10181427001953 + }, + "Z": { + "type": "float", + "value": 0.6000008583068848 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 28 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "A portal glows softly before you. You wonder where it leads.", + "id": 14533 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Genesis Exit Portal", + "id": 5670 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "psi_gen_exit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 386 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "GenesisExit05" + }, + "TemplateResRef": { + "type": "resref", + "value": "genesisexit" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 13.79570484161377 + }, + "Y": { + "type": "float", + "value": 74.52798461914063 + }, + "Z": { + "type": "float", + "value": 0.2000002861022949 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68020 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_na_waterpool1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WaterPoolSmall" + }, + "TemplateResRef": { + "type": "resref", + "value": "waterpoolsmall" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 65.05518341064453 + }, + "YPosition": { + "type": "float", + "value": 24.88151931762695 + }, + "ZPosition": { + "type": "float", + "value": 3.12960410118103 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67893 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_mg_chntmagic1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "MagicChants" + }, + "TemplateResRef": { + "type": "resref", + "value": "magicchants" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 49.99136734008789 + }, + "YPosition": { + "type": "float", + "value": 59.39344024658203 + }, + "ZPosition": { + "type": "float", + "value": -1.50000524520874 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67848 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_mg_entrvscry1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "EntranceVeryScary" + }, + "TemplateResRef": { + "type": "resref", + "value": "entranceveryscar" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 48.06650543212891 + }, + "YPosition": { + "type": "float", + "value": 38.12089157104492 + }, + "ZPosition": { + "type": "float", + "value": 1.500000476837158 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67889 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.2000000029802322 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 20 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_mg_frstmagic2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_mg_frstmagic3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_mg_frstmagic4" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "MagicalForestNoises" + }, + "TemplateResRef": { + "type": "resref", + "value": "magicalforestnoi" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 64.77873229980469 + }, + "YPosition": { + "type": "float", + "value": 14.52048015594482 + }, + "ZPosition": { + "type": "float", + "value": 1.388710021972656 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67900 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 1 + }, + "Priority": { + "type": "byte", + "value": 3 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_mg_ballmagic1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "MagicGlowingBall" + }, + "TemplateResRef": { + "type": "resref", + "value": "magicglowingball" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 15.05164909362793 + }, + "YPosition": { + "type": "float", + "value": 65.12294769287109 + }, + "ZPosition": { + "type": "float", + "value": 2.100000381469727 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 10000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91303 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.300000011920929 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2chnratl1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2chnratl2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2chnratl3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2chnratl4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2chnratl5" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "ChainRattles" + }, + "TemplateResRef": { + "type": "resref", + "value": "chainrattles" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 14.92038059234619 + }, + "YPosition": { + "type": "float", + "value": 34.7988166809082 + }, + "ZPosition": { + "type": "float", + "value": 1.299999833106995 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.0 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 10000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91308 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.300000011920929 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2drnoise1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2drnoise2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2drnoise3" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2drnoise4" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2drnoise5" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2drnoise6" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2drnoise7" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_hr_x2drnoise8" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "DoorNoises" + }, + "TemplateResRef": { + "type": "resref", + "value": "doornoises" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 14.92793464660645 + }, + "YPosition": { + "type": "float", + "value": 19.97026252746582 + }, + "ZPosition": { + "type": "float", + "value": 1.400000095367432 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91329 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 20.0 + }, + "MinDistance": { + "type": "float", + "value": 2.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 2 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_pl_x2wardrum1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WarDrum1" + }, + "TemplateResRef": { + "type": "resref", + "value": "wardrum1" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 34.48321914672852 + }, + "YPosition": { + "type": "float", + "value": 39.76030349731445 + }, + "ZPosition": { + "type": "float", + "value": 1.899991393089294 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91329 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 20.0 + }, + "MinDistance": { + "type": "float", + "value": 2.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 2 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_pl_x2wardrum1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WarDrum1" + }, + "TemplateResRef": { + "type": "resref", + "value": "wardrum1" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 36.65742874145508 + }, + "YPosition": { + "type": "float", + "value": 40.13705444335938 + }, + "ZPosition": { + "type": "float", + "value": 1.5 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91329 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 20.0 + }, + "MinDistance": { + "type": "float", + "value": 2.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 2 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_pl_x2wardrum1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WarDrum1" + }, + "TemplateResRef": { + "type": "resref", + "value": "wardrum1" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 35.51938629150391 + }, + "YPosition": { + "type": "float", + "value": 38.57212829589844 + }, + "ZPosition": { + "type": "float", + "value": 1.899991393089294 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 0 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 0 + }, + "IntervalVrtn": { + "type": "dword", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 91329 + } + }, + "Looping": { + "type": "byte", + "value": 1 + }, + "MaxDistance": { + "type": "float", + "value": 20.0 + }, + "MinDistance": { + "type": "float", + "value": 2.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 2 + }, + "Random": { + "type": "byte", + "value": 0 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "al_pl_x2wardrum1" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "WarDrum1" + }, + "TemplateResRef": { + "type": "resref", + "value": "wardrum1" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 35.4919548034668 + }, + "YPosition": { + "type": "float", + "value": 41.23887252807617 + }, + "ZPosition": { + "type": "float", + "value": 1.900000095367432 + } + }, + { + "__struct_id": 6, + "Active": { + "type": "byte", + "value": 1 + }, + "Continuous": { + "type": "byte", + "value": 1 + }, + "Elevation": { + "type": "float", + "value": 1.5 + }, + "GeneratedType": { + "type": "dword", + "value": 0 + }, + "Hours": { + "type": "dword", + "value": 0 + }, + "Interval": { + "type": "dword", + "value": 25000 + }, + "IntervalVrtn": { + "type": "dword", + "value": 5000 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 67959 + } + }, + "Looping": { + "type": "byte", + "value": 0 + }, + "MaxDistance": { + "type": "float", + "value": 10.0 + }, + "MinDistance": { + "type": "float", + "value": 1.0 + }, + "PitchVariation": { + "type": "float", + "value": 0.0 + }, + "Positional": { + "type": "byte", + "value": 0 + }, + "Priority": { + "type": "byte", + "value": 19 + }, + "Random": { + "type": "byte", + "value": 1 + }, + "RandomPosition": { + "type": "byte", + "value": 0 + }, + "RandomRangeX": { + "type": "float", + "value": 0.0 + }, + "RandomRangeY": { + "type": "float", + "value": 0.0 + }, + "Sounds": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_skriekf1" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_skriekf2" + } + }, + { + "__struct_id": 0, + "Sound": { + "type": "resref", + "value": "as_pl_skriekf3" + } + } + ] + }, + "Tag": { + "type": "cexostring", + "value": "ShrieksWomenOutside" + }, + "TemplateResRef": { + "type": "resref", + "value": "shriekswomenouts" + }, + "Times": { + "type": "byte", + "value": 3 + }, + "Volume": { + "type": "byte", + "value": 127 + }, + "VolumeVrtn": { + "type": "byte", + "value": 0 + }, + "XPosition": { + "type": "float", + "value": 35.59280776977539 + }, + "YPosition": { + "type": "float", + "value": 39.58004379272461 + }, + "ZPosition": { + "type": "float", + "value": 1.830684065818787 + } + } + ] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/thequietofthemin.git.json b/_module/git/thequietofthemin.git.json new file mode 100644 index 0000000..e9f1948 --- /dev/null +++ b/_module/git/thequietofthemin.git.json @@ -0,0 +1,7891 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 56 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 32 + }, + "AmbientSndNight": { + "type": "int", + "value": 56 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 32 + }, + "EnvAudio": { + "type": "int", + "value": 89 + }, + "MusicBattle": { + "type": "int", + "value": 34 + }, + "MusicDay": { + "type": "int", + "value": 6 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 6 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 435 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 0.8344852924346924 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84173 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 83428 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_o2_dead" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 918 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_TENT_B" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_tent_b" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 37.39952850341797 + }, + "Y": { + "type": "float", + "value": 52.21608734130859 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 58 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.9326600432395935 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The smell of woodsmoke draws you closer to the dancing fire. The sap of a birch log burns blue at its center.", + "id": 14586 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5700 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 416 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Campfire" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_campfr" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 41.19637298583984 + }, + "Y": { + "type": "float", + "value": 49.78355407714844 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 233 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.9326600432395935 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68833 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68832 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_sit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 755 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FallenTimber" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_fallentimber" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 38.14817428588867 + }, + "Y": { + "type": "float", + "value": 48.89194488525391 + }, + "Z": { + "type": "float", + "value": -0.04248762130737305 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 43.33951568603516 + }, + "Y": { + "type": "float", + "value": 56.0804328918457 + }, + "Z": { + "type": "float", + "value": 4.835692405700684 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 101 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14747 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 459 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Autumn" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_treeautumn" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 52.57250595092773 + }, + "Y": { + "type": "float", + "value": 13.78011512756348 + }, + "Z": { + "type": "float", + "value": 0.00999981164932251 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 101 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14747 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 459 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Autumn" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_treeautumn" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 45.12921142578125 + }, + "Y": { + "type": "float", + "value": 5.94110918045044 + }, + "Z": { + "type": "float", + "value": 0.009999930858612061 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 101 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14747 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 459 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Autumn" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_treeautumn" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 59.17726135253906 + }, + "Y": { + "type": "float", + "value": 10.84413909912109 + }, + "Z": { + "type": "float", + "value": -1.192092895507813e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 101 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14747 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 459 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Autumn" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_treeautumn" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 52.99975967407227 + }, + "Y": { + "type": "float", + "value": 7.868078231811523 + }, + "Z": { + "type": "float", + "value": 2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 47.73908233642578 + }, + "Y": { + "type": "float", + "value": 10.37340545654297 + }, + "Z": { + "type": "float", + "value": 0.009999957866966724 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 56.72996520996094 + }, + "Y": { + "type": "float", + "value": 5.993070125579834 + }, + "Z": { + "type": "float", + "value": 0.0100000100210309 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.31732559204102 + }, + "Y": { + "type": "float", + "value": 1.762819051742554 + }, + "Z": { + "type": "float", + "value": 5.010000228881836 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 23.21756553649902 + }, + "Y": { + "type": "float", + "value": 2.530272006988525 + }, + "Z": { + "type": "float", + "value": 5.010000228881836 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.7538743019104 + }, + "Y": { + "type": "float", + "value": 19.3975944519043 + }, + "Z": { + "type": "float", + "value": 5.010000228881836 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 451 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 0.95720374584198 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84192 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 83445 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_o2_dead" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_act" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 934 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "X2_PLC_CRYSTAL" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_plc_crystal" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 40.07021331787109 + }, + "Y": { + "type": "float", + "value": 52.49710464477539 + }, + "Z": { + "type": "float", + "value": -8.568167686462402e-008 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 81 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14649 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14650 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 439 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Plant Growth - Grass Tufts" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_grasstuft" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 33.97865295410156 + }, + "Y": { + "type": "float", + "value": 29.61967849731445 + }, + "Z": { + "type": "float", + "value": 4.999999523162842 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 188 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66749 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 52999 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 551 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Fern" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_fern" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 34.29781341552734 + }, + "Y": { + "type": "float", + "value": 35.96198654174805 + }, + "Z": { + "type": "float", + "value": 0.009999964386224747 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 188 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66749 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 52999 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 551 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Fern" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_fern" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 35.13401794433594 + }, + "Y": { + "type": "float", + "value": 37.03725814819336 + }, + "Z": { + "type": "float", + "value": 0.01000005286186934 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 81 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14649 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14650 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 439 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Plant Growth - Grass Tufts" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_grasstuft" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 41.34269332885742 + }, + "Y": { + "type": "float", + "value": 36.90547180175781 + }, + "Z": { + "type": "float", + "value": 0.009999717585742474 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 81 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14649 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14650 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 439 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Plant Growth - Grass Tufts" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_grasstuft" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 43.2283935546875 + }, + "Y": { + "type": "float", + "value": 31.98800086975098 + }, + "Z": { + "type": "float", + "value": 0.01000010967254639 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 81 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14649 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14650 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 439 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Plant Growth - Grass Tufts" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_grasstuft" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.45475006103516 + }, + "Y": { + "type": "float", + "value": 32.33461380004883 + }, + "Z": { + "type": "float", + "value": 0.009999905712902546 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 340 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570795893669128 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68852 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9208 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 779 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Ivy" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_ivy" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 35.55771255493164 + }, + "Y": { + "type": "float", + "value": 38.96686935424805 + }, + "Z": { + "type": "float", + "value": 1.046706199645996 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 299 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68872 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9188 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_mushrooms" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_mushrooms" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 37.63296127319336 + }, + "Y": { + "type": "float", + "value": 19.42643356323242 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 82 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 67632 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5725 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 440 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PlantGrowthShrubs" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_shrub" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.11355590820313 + }, + "Y": { + "type": "float", + "value": 21.91219520568848 + }, + "Z": { + "type": "float", + "value": 5.010000228881836 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 82 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 67632 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5725 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 440 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "PlantGrowthShrubs" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_shrub" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.88867950439453 + }, + "Y": { + "type": "float", + "value": 21.08381080627441 + }, + "Z": { + "type": "float", + "value": 5.010000228881836 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 254 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68943 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepinesnowy" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepinesnowy" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 38.23606491088867 + }, + "Y": { + "type": "float", + "value": 16.62683486938477 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 254 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68943 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepinesnowy" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepinesnowy" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 39.79621124267578 + }, + "Y": { + "type": "float", + "value": 18.73380661010742 + }, + "Z": { + "type": "float", + "value": 5.960464477539063e-008 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 254 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68943 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepinesnowy" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepinesnowy" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 41.85860824584961 + }, + "Y": { + "type": "float", + "value": 17.61887168884277 + }, + "Z": { + "type": "float", + "value": 0.0100000174716115 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 254 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68943 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepinesnowy" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepinesnowy" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 41.72346496582031 + }, + "Y": { + "type": "float", + "value": 20.75842666625977 + }, + "Z": { + "type": "float", + "value": -1.192092895507813e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 254 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68943 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepinesnowy" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepinesnowy" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 43.9787483215332 + }, + "Y": { + "type": "float", + "value": 20.28043556213379 + }, + "Z": { + "type": "float", + "value": 1.490116119384766e-008 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 254 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68943 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_treepinesnowy" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_treepinesnowy" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 44.68499755859375 + }, + "Y": { + "type": "float", + "value": 23.02812957763672 + }, + "Z": { + "type": "float", + "value": 0.009999864734709263 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 42.8446044921875 + }, + "Y": { + "type": "float", + "value": 23.09242057800293 + }, + "Z": { + "type": "float", + "value": 1.127251029014587 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 100 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14746 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 458 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Normal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_tree" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 39.06078338623047 + }, + "Y": { + "type": "float", + "value": 20.59476089477539 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 101 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14747 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5743 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 459 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Tree - Autumn" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_treeautumn" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 43.41528701782227 + }, + "Y": { + "type": "float", + "value": 51.22684860229492 + }, + "Z": { + "type": "float", + "value": -1.192092895507813e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 260 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 76388 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68943 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 796 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_smallpine" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_smallpine" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 44.42694854736328 + }, + "Y": { + "type": "float", + "value": 49.79259490966797 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 28 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "A portal glows softly before you. You wonder where it leads.", + "id": 14533 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 2 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Genesis Exit Portal", + "id": 5670 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "psi_gen_exit" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 386 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "GenesisExit04" + }, + "TemplateResRef": { + "type": "resref", + "value": "genesisexit" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 18.99376106262207 + }, + "Y": { + "type": "float", + "value": 58.27448272705078 + }, + "Z": { + "type": "float", + "value": 5.010000228881836 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/thestoreroom.git.json b/_module/git/thestoreroom.git.json new file mode 100644 index 0000000..ef1a7d8 --- /dev/null +++ b/_module/git/thestoreroom.git.json @@ -0,0 +1,7667 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 66 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 120 + }, + "AmbientSndNight": { + "type": "int", + "value": 66 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 121 + }, + "EnvAudio": { + "type": "int", + "value": 0 + }, + "MusicBattle": { + "type": "int", + "value": 0 + }, + "MusicDay": { + "type": "int", + "value": 50 + }, + "MusicDelay": { + "type": "int", + "value": 90000 + }, + "MusicNight": { + "type": "int", + "value": 50 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.141587972640991 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 80 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "GenericType": { + "type": "byte", + "value": 0 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HP": { + "type": "short", + "value": 80 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "arena_warehouse" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "warehouse_Arena" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_ttr_11" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0 + }, + "Y": { + "type": "float", + "value": 4.76837158203125e-007 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 61 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.7853981852531433 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14589 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5703 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_02_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Candelabra" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_candelabra" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.26245307922363 + }, + "Y": { + "type": "float", + "value": 14.53354930877686 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 61 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 0.7853981852531433 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14589 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5703 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_02_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Candelabra" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_candelabra" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 7.515516757965088 + }, + "Y": { + "type": "float", + "value": 14.46122360229492 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 61 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 0.7853981852531433 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14589 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5703 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_02_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Candelabra" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_candelabra" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.909258365631104 + }, + "Y": { + "type": "float", + "value": 12.81715202331543 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 4 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "nw_o2_generalmed" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "nw_o2_generalmed" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 362 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "BoxCrate3" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_box3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.171619415283203 + }, + "Y": { + "type": "float", + "value": 16.57441329956055 + }, + "Z": { + "type": "float", + "value": -2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 5 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "nw_o2_generalhig" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "nw_o2_generalhig" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 363 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "BoxCrate4" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_box4" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 11.52328586578369 + }, + "Y": { + "type": "float", + "value": 16.35067939758301 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 4 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_02_low" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "x2_02_low" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 362 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_crate3" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_crate3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 11.45448398590088 + }, + "Y": { + "type": "float", + "value": 16.3957691192627 + }, + "Z": { + "type": "float", + "value": 1.24998152256012 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 5 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "superstore" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 15 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Mega Store", + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "conv" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 363 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_medium_crate4" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_medium_crate4" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.17577266693115 + }, + "Y": { + "type": "float", + "value": 15.48077869415283 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 360 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "BoxCrate1" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_box1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.188407897949219 + }, + "Y": { + "type": "float", + "value": 16.6138801574707 + }, + "Z": { + "type": "float", + "value": 0.9689780473709106 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 3 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 361 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "BoxCrate2" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_box2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 9.259676933288574 + }, + "Y": { + "type": "float", + "value": 16.73184776306152 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 360 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "BoxCrate1" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_box1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.199272155761719 + }, + "Y": { + "type": "float", + "value": 15.43475437164307 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 3 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 361 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "BoxCrate2" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_box2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 3.42827296257019 + }, + "Y": { + "type": "float", + "value": 8.087409973144531 + }, + "Z": { + "type": "float", + "value": 2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 5 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "nw_o2_generalhig" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "nw_o2_generalhig" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 363 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "BoxCrate4" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_box4" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 3.492883205413818 + }, + "Y": { + "type": "float", + "value": 9.225534439086914 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_02_low" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "x2_02_low" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 360 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_crate1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_crate1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 4.651814460754395 + }, + "Y": { + "type": "float", + "value": 8.102989196777344 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 3 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_02_low" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "x2_02_low" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 361 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_crate2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_crate2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 3.036672115325928 + }, + "Y": { + "type": "float", + "value": 11.82831192016602 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 4 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794463157654 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "plotitems" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Plot Items", + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "conv1" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 362 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_crate3" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_crate3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 4.258110046386719 + }, + "Y": { + "type": "float", + "value": 11.84883880615234 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 5 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 15 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_02_medium" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "x2_02_medium" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 363 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x2_medium_crate4" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_medium_crate4" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 3.52433180809021 + }, + "Y": { + "type": "float", + "value": 10.60513401031494 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_02_low" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "x2_02_low" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 360 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_crate1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_crate1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 3.542233943939209 + }, + "Y": { + "type": "float", + "value": 9.18932056427002 + }, + "Z": { + "type": "float", + "value": 1.249991536140442 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_02_low" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "x2_02_low" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 360 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_crate1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_crate1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 3.29124927520752 + }, + "Y": { + "type": "float", + "value": 10.46133708953857 + }, + "Z": { + "type": "float", + "value": 1.249991416931152 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 3 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570794224739075 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "standard" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Standard Items", + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "conv2" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 361 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_crate2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_crate2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 4.560474872589111 + }, + "Y": { + "type": "float", + "value": 9.922548294067383 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 3 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_02_low" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "x2_02_low" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 361 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_crate2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_crate2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.45889568328857 + }, + "Y": { + "type": "float", + "value": 3.308705806732178 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 3 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 361 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "BoxCrate2" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_box2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.145563125610352 + }, + "Y": { + "type": "float", + "value": 3.273839712142944 + }, + "Z": { + "type": "float", + "value": 2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 360 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "BoxCrate1" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_box1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 10.65035629272461 + }, + "Y": { + "type": "float", + "value": 4.177340507507324 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 4 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_02_low" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "x2_02_low" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 362 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_crate3" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_crate3" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.047808647155762 + }, + "Y": { + "type": "float", + "value": 4.404052734375 + }, + "Z": { + "type": "float", + "value": -2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 3 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_02_low" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "x2_02_low" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 361 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_crate2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_crate2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 9.320960998535156 + }, + "Y": { + "type": "float", + "value": 3.277941226959229 + }, + "Z": { + "type": "float", + "value": -2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 5 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.141588449478149 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "specialty" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 15 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Specialty Items", + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "conv3" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 363 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x2_medium_crate4" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_medium_crate4" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 9.432076454162598 + }, + "Y": { + "type": "float", + "value": 4.348274230957031 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_02_low" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "x2_02_low" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 360 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x2_easy_crate1" + }, + "TemplateResRef": { + "type": "resref", + "value": "x2_easy_crate1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.275538444519043 + }, + "Y": { + "type": "float", + "value": 3.194235801696777 + }, + "Z": { + "type": "float", + "value": 1.327504277229309 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 0.5890485644340515 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14577 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 0 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14578 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "nw_o2_generallow" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 360 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "BoxCrate1" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_box1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 9.481046676635742 + }, + "Y": { + "type": "float", + "value": 4.490481376647949 + }, + "Z": { + "type": "float", + "value": 1.249981880187988 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 8 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 0.7853981852531433 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "goldchest" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "Get all the gold you want from here.", + "id": 14595 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 3 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Gold Chest", + "id": 5348 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_g0_convplac" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 366 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "GoldChest" + }, + "TemplateResRef": { + "type": "resref", + "value": "easy_chest003" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 6.826125621795654 + }, + "Y": { + "type": "float", + "value": 13.50215721130371 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 61 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14589 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5703 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_02_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Candelabra" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_candelabra" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 6.581809043884277 + }, + "Y": { + "type": "float", + "value": 6.819924354553223 + }, + "Z": { + "type": "float", + "value": 2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 61 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141587972640991 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14589 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5703 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_02_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Candelabra" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_candelabra" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 16.87907409667969 + }, + "Y": { + "type": "float", + "value": 1.04574465751648 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 61 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14589 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5703 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_02_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Candelabra" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_candelabra" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.08294486999512 + }, + "Y": { + "type": "float", + "value": 12.09163475036621 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 61 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 3.141587972640991 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14589 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5703 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_02_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Candelabra" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_candelabra" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 11.85313224792481 + }, + "Y": { + "type": "float", + "value": 4.379836559295654 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 301 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.7853981852531433 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "magics" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 66696 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "All Things Magical and Mystical", + "id": 66694 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "conv4" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 661 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "x0_bookcase2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_bookcase2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 13.9441728591919 + }, + "Y": { + "type": "float", + "value": 13.55191326141357 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [] + } +} diff --git a/_module/git/undergroundshrin.git.json b/_module/git/undergroundshrin.git.json new file mode 100644 index 0000000..77ebec4 --- /dev/null +++ b/_module/git/undergroundshrin.git.json @@ -0,0 +1,11947 @@ +{ + "__data_type": "GIT ", + "AreaProperties": { + "__struct_id": 100, + "type": "struct", + "value": { + "__struct_id": 100, + "AmbientSndDay": { + "type": "int", + "value": 94 + }, + "AmbientSndDayVol": { + "type": "int", + "value": 67 + }, + "AmbientSndNight": { + "type": "int", + "value": 94 + }, + "AmbientSndNitVol": { + "type": "int", + "value": 67 + }, + "EnvAudio": { + "type": "int", + "value": 111 + }, + "MusicBattle": { + "type": "int", + "value": 0 + }, + "MusicDay": { + "type": "int", + "value": 49 + }, + "MusicDelay": { + "type": "int", + "value": 54000 + }, + "MusicNight": { + "type": "int", + "value": 49 + } + } + }, + "Creature List": { + "type": "list", + "value": [] + }, + "Door List": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -3.141590356826782 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 60 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 9072 + } + }, + "DisarmDC": { + "type": "byte", + "value": 20 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 25 + }, + "GenericType": { + "type": "byte", + "value": 2 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HP": { + "type": "short", + "value": 60 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "door_s1" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 25 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "door_s2" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_grate" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 2 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0 + }, + "Y": { + "type": "float", + "value": 31.70999908447266 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 8, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 0 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 60 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 9072 + } + }, + "DisarmDC": { + "type": "byte", + "value": 20 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 25 + }, + "GenericType": { + "type": "byte", + "value": 2 + }, + "Hardness": { + "type": "byte", + "value": 10 + }, + "HP": { + "type": "short", + "value": 60 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "door_s2" + }, + "LinkedToFlags": { + "type": "byte", + "value": 1 + }, + "LoadScreenID": { + "type": "word", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5349 + } + }, + "OnClick": { + "type": "resref", + "value": "" + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "x2_door_death" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnFailToOpen": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 25 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "door_s1" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_door_grate" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 2 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0 + }, + "Y": { + "type": "float", + "value": 20.0 + }, + "Z": { + "type": "float", + "value": 0.0 + } + } + ] + }, + "Encounter List": { + "type": "list", + "value": [] + }, + "List": { + "type": "list", + "value": [] + }, + "Placeable List": { + "type": "list", + "value": [ + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 65 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14642 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14643 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_02_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 423 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FreestandingTorchBracket" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_freetorch" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.39937019348145 + }, + "Y": { + "type": "float", + "value": 15.18464088439941 + }, + "Z": { + "type": "float", + "value": -4.76837158203125e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 65 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14642 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14643 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_02_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 423 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FreestandingTorchBracket" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_freetorch" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.51580429077148 + }, + "Y": { + "type": "float", + "value": 15.03931331634522 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 65 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "0": "The torch paints its environs in warmer hues. You find yourself grateful for its glow. ", + "id": 14642 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14643 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_02_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 423 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FreestandingTorchBracket" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_freetorch" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.50278472900391 + }, + "Y": { + "type": "float", + "value": 4.965660572052002 + }, + "Z": { + "type": "float", + "value": 2.384185791015625e-007 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 65 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14642 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14643 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "nw_02_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 423 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "FreestandingTorchBracket" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_freetorch" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.54397201538086 + }, + "Y": { + "type": "float", + "value": 4.841382503509522 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 345 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68957 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68956 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "ladder_out" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 780 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "WeatheredLadder" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_weatheredladd" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.11005115509033 + }, + "Y": { + "type": "float", + "value": 3.434311628341675 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 46 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14540 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14541 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 404 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Altar / Shrine - Evil" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_altrevil" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.94733428955078 + }, + "Y": { + "type": "float", + "value": 45.10349273681641 + }, + "Z": { + "type": "float", + "value": 0.2000000029802322 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 45 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14543 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14541 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 403 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_altrneutral" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 16.70840072631836 + }, + "Y": { + "type": "float", + "value": 44.99198913574219 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 45 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14543 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14541 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 403 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_altrneutral" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 13.27087593078613 + }, + "Y": { + "type": "float", + "value": 44.86469268798828 + }, + "Z": { + "type": "float", + "value": 0.2000000029802322 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 45 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570795297622681 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14543 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14541 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 403 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_altrneutral" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.0636157989502 + }, + "Y": { + "type": "float", + "value": 44.07700729370117 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 45 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570795297622681 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14543 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14541 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 403 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Altar / Shrine - Neutral" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_altrneutral" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.88535404205322 + }, + "Y": { + "type": "float", + "value": 46.2758674621582 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2032 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570795297622681 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813930 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812902 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2576 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUE002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statue002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.06322574615479 + }, + "Y": { + "type": "float", + "value": 44.6702766418457 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2032 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570795297622681 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813930 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812902 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2576 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUE002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statue002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.8237247467041 + }, + "Y": { + "type": "float", + "value": 44.85598754882813 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2023 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570795297622681 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813930 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812904 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2577 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_STATUE003" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_statue003" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.99754428863525 + }, + "Y": { + "type": "float", + "value": 44.7662467956543 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2225 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813798 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16812688 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "zep_torchspawn" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_torch" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2409 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_SCONCE002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_sconce002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "YELLOW_10" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_osconce002" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.95778846740723 + }, + "Y": { + "type": "float", + "value": 44.27677154541016 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2815 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 2 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813863 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 0 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 2 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811344 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "zep_torchspawn" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_torch" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CANDLE002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_candle002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "YELLOW_5" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_ocandle002" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.83855438232422 + }, + "Y": { + "type": "float", + "value": 44.53065872192383 + }, + "Z": { + "type": "float", + "value": 1.237509489059448 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2815 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 2 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813863 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 0 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 2 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811344 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "zep_torchspawn" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_torch" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CANDLE002" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_candle002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "YELLOW_5" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_ocandle002" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.07854080200195 + }, + "Y": { + "type": "float", + "value": 44.56600570678711 + }, + "Z": { + "type": "float", + "value": 1.275310873985291 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2504 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 2 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 0 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 2 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811356 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "zep_torchspawn" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_torch" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CANDLE03" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_candle03" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "ORANGE_5" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_ocandle03" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.35971736907959 + }, + "Y": { + "type": "float", + "value": 42.46186065673828 + }, + "Z": { + "type": "float", + "value": 2.987250328063965 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2504 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 2 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 0 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 2 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811356 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "zep_torchspawn" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_torch" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CANDLE03" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_candle03" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "ORANGE_5" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_ocandle03" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.40047359466553 + }, + "Y": { + "type": "float", + "value": 46.78498840332031 + }, + "Z": { + "type": "float", + "value": 2.807808876037598 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2504 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 2 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 0 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 2 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811356 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "zep_torchspawn" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_torch" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CANDLE03" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_candle03" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "ORANGE_5" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_ocandle03" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.47341728210449 + }, + "Y": { + "type": "float", + "value": 42.78483581542969 + }, + "Z": { + "type": "float", + "value": 2.81037712097168 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 4 + }, + "Appearance": { + "type": "dword", + "value": 2504 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 2 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813944 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 0 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 2 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811356 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "zep_torchspawn" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_torch" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 419 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CANDLE03" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_candle03" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCONST" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "ORANGE_5" + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTCYCLE" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_LIGHTSWAP" + }, + "Type": { + "type": "dword", + "value": 3 + }, + "Value": { + "type": "cexostring", + "value": "zep_ocandle03" + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.53332710266113 + }, + "Y": { + "type": "float", + "value": 46.96477127075195 + }, + "Z": { + "type": "float", + "value": 3.013967514038086 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 28 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14533 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5670 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 386 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Portal" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_portal" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.00450038909912 + }, + "Y": { + "type": "float", + "value": 43.75826644897461 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 11.78595733642578 + }, + "Y": { + "type": "float", + "value": 44.6656379699707 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 167 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.767144799232483 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14718 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 525 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.89976119995117 + }, + "Y": { + "type": "float", + "value": 44.90511703491211 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 159 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 0.5890485644340515 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14672 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14673 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 517 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Magic Sparks - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_magicblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.9537353515625 + }, + "Y": { + "type": "float", + "value": 44.76891326904297 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 159 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14672 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14673 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 517 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Magic Sparks - Blue" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_magicblue" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 11.80984115600586 + }, + "Y": { + "type": "float", + "value": 44.74372863769531 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 171 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14722 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 529 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Orange" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solorange" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.29339027404785 + }, + "Y": { + "type": "float", + "value": 44.78340530395508 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 171 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14722 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14719 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 529 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Shaft of Light - Orange" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_solorange" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.67400741577148 + }, + "Y": { + "type": "float", + "value": 44.77059555053711 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 163 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14676 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14673 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 521 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Magic Sparks - Orange" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_magicorange" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.26722717285156 + }, + "Y": { + "type": "float", + "value": 44.69302749633789 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 163 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14676 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14673 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 521 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Magic Sparks - Orange" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_magicorange" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.59245777130127 + }, + "Y": { + "type": "float", + "value": 44.746826171875 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2306 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810937 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813154 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2547 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRYSORB001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_crysorb001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 16.08749771118164 + }, + "Y": { + "type": "float", + "value": 44.78633117675781 + }, + "Z": { + "type": "float", + "value": 1.25119161605835 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2306 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810937 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813154 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2547 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRYSORB001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_crysorb001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 13.89560127258301 + }, + "Y": { + "type": "float", + "value": 44.78220367431641 + }, + "Z": { + "type": "float", + "value": 1.277666330337524 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2307 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16813637 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811014 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2548 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "deity_ball" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_crysorb002" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.97838497161865 + }, + "Y": { + "type": "float", + "value": 43.5634765625 + }, + "Z": { + "type": "float", + "value": 1.254522800445557 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2306 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810937 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16813154 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "zep_onoff" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 2547 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_CRYSORB001" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_crysorb001" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "CEP_L_AMION" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + } + ] + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.91347408294678 + }, + "Y": { + "type": "float", + "value": 46.03911209106445 + }, + "Z": { + "type": "float", + "value": 1.240652680397034 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 2498 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570795297622681 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 10 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 16810921 + } + }, + "DisarmDC": { + "type": "byte", + "value": 0 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 5 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 10 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 1 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 16811198 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 0 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 2421 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "ZEP_BOOK003" + }, + "TemplateResRef": { + "type": "resref", + "value": "zep_book003" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.05445671081543 + }, + "Y": { + "type": "float", + "value": 42.46810913085938 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 175 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": 1.570795297622681 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14743 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 5818 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 533 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Throw Rug" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_throwrug" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.99633598327637 + }, + "Y": { + "type": "float", + "value": 41.38072967529297 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 253 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68815 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9322 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_cushions" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_cushions" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 13.51832389831543 + }, + "Y": { + "type": "float", + "value": 41.3314323425293 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 253 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -1.570795297622681 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68815 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 4294967295 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 9322 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 0 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "x0_cushions" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_cushions" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 16.34470748901367 + }, + "Y": { + "type": "float", + "value": 41.38517379760742 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 319 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 68896 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 68893 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 751 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "RugOriental2" + }, + "TemplateResRef": { + "type": "resref", + "value": "x0_rugoriental2" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.97102546691895 + }, + "Y": { + "type": "float", + "value": 37.28958129882813 + }, + "Z": { + "type": "float", + "value": 0.0 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 157 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14662 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "0": "Shrine Mat", + "id": 5800 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "deity_start" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 515 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "InvisibleObject" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_invisobj" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 1 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 15.00471210479736 + }, + "Y": { + "type": "float", + "value": 41.8701057434082 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 466 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84585 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84569 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_act" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1002 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "eff8" + }, + "TemplateResRef": { + "type": "resref", + "value": "dev1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 21.69811058044434 + }, + "Y": { + "type": "float", + "value": 39.77071380615234 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 466 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84585 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84569 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_act" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1002 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "eff7" + }, + "TemplateResRef": { + "type": "resref", + "value": "dev1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 23.43457984924316 + }, + "Y": { + "type": "float", + "value": 45.10734939575195 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 466 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84585 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84569 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_act" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1002 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "eff3" + }, + "TemplateResRef": { + "type": "resref", + "value": "dev1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.26582145690918 + }, + "Y": { + "type": "float", + "value": 50.46309661865234 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 466 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84585 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84569 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_act" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1002 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "eff4" + }, + "TemplateResRef": { + "type": "resref", + "value": "dev1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 12.51401996612549 + }, + "Y": { + "type": "float", + "value": 53.12915420532227 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 466 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84585 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84569 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_act" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1002 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "eff5" + }, + "TemplateResRef": { + "type": "resref", + "value": "dev1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 17.58451271057129 + }, + "Y": { + "type": "float", + "value": 53.28346252441406 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 466 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84585 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84569 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_act" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1002 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "eff6" + }, + "TemplateResRef": { + "type": "resref", + "value": "dev1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 21.89084243774414 + }, + "Y": { + "type": "float", + "value": 50.18073272705078 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 466 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84585 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84569 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_act" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1002 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "eff2" + }, + "TemplateResRef": { + "type": "resref", + "value": "dev1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 5.903770446777344 + }, + "Y": { + "type": "float", + "value": 44.74879455566406 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 5 + }, + "Appearance": { + "type": "dword", + "value": 466 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 84585 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 84569 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "x2_plc_used_act" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 1 + }, + "PortraitId": { + "type": "word", + "value": 1002 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "eff1" + }, + "TemplateResRef": { + "type": "resref", + "value": "dev1" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 8.40892219543457 + }, + "Y": { + "type": "float", + "value": 39.28915786743164 + }, + "Z": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 9, + "AnimationState": { + "type": "byte", + "value": 0 + }, + "Appearance": { + "type": "dword", + "value": 165 + }, + "AutoRemoveKey": { + "type": "byte", + "value": 0 + }, + "Bearing": { + "type": "float", + "value": -0.0 + }, + "BodyBag": { + "type": "byte", + "value": 0 + }, + "CloseLockDC": { + "type": "byte", + "value": 0 + }, + "Conversation": { + "type": "resref", + "value": "" + }, + "CurrentHP": { + "type": "short", + "value": 15 + }, + "Description": { + "type": "cexolocstring", + "value": { + "id": 14677 + } + }, + "DisarmDC": { + "type": "byte", + "value": 15 + }, + "Faction": { + "type": "dword", + "value": 1 + }, + "Fort": { + "type": "byte", + "value": 16 + }, + "Hardness": { + "type": "byte", + "value": 5 + }, + "HasInventory": { + "type": "byte", + "value": 0 + }, + "HP": { + "type": "short", + "value": 15 + }, + "Interruptable": { + "type": "byte", + "value": 1 + }, + "KeyName": { + "type": "cexostring", + "value": "" + }, + "KeyRequired": { + "type": "byte", + "value": 0 + }, + "Lockable": { + "type": "byte", + "value": 0 + }, + "Locked": { + "type": "byte", + "value": 0 + }, + "LocName": { + "type": "cexolocstring", + "value": { + "id": 14673 + } + }, + "OnClosed": { + "type": "resref", + "value": "" + }, + "OnDamaged": { + "type": "resref", + "value": "" + }, + "OnDeath": { + "type": "resref", + "value": "" + }, + "OnDisarm": { + "type": "resref", + "value": "" + }, + "OnHeartbeat": { + "type": "resref", + "value": "" + }, + "OnInvDisturbed": { + "type": "resref", + "value": "" + }, + "OnLock": { + "type": "resref", + "value": "" + }, + "OnMeleeAttacked": { + "type": "resref", + "value": "" + }, + "OnOpen": { + "type": "resref", + "value": "" + }, + "OnSpellCastAt": { + "type": "resref", + "value": "" + }, + "OnTrapTriggered": { + "type": "resref", + "value": "" + }, + "OnUnlock": { + "type": "resref", + "value": "" + }, + "OnUsed": { + "type": "resref", + "value": "" + }, + "OnUserDefined": { + "type": "resref", + "value": "" + }, + "OpenLockDC": { + "type": "byte", + "value": 18 + }, + "Plot": { + "type": "byte", + "value": 0 + }, + "PortraitId": { + "type": "word", + "value": 523 + }, + "Ref": { + "type": "byte", + "value": 0 + }, + "Static": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "Magic Sparks - Purple" + }, + "TemplateResRef": { + "type": "resref", + "value": "plc_magicpurple" + }, + "TrapDetectable": { + "type": "byte", + "value": 1 + }, + "TrapDetectDC": { + "type": "byte", + "value": 0 + }, + "TrapDisarmable": { + "type": "byte", + "value": 1 + }, + "TrapFlag": { + "type": "byte", + "value": 0 + }, + "TrapOneShot": { + "type": "byte", + "value": 1 + }, + "TrapType": { + "type": "byte", + "value": 0 + }, + "Type": { + "type": "byte", + "value": 0 + }, + "Useable": { + "type": "byte", + "value": 0 + }, + "Will": { + "type": "byte", + "value": 0 + }, + "X": { + "type": "float", + "value": 14.90331172943115 + }, + "Y": { + "type": "float", + "value": 43.54986190795898 + }, + "Z": { + "type": "float", + "value": 0.2000099122524262 + } + } + ] + }, + "SoundList": { + "type": "list", + "value": [] + }, + "StoreList": { + "type": "list", + "value": [] + }, + "TriggerList": { + "type": "list", + "value": [] + }, + "WaypointList": { + "type": "list", + "value": [ + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "kneel_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 14.91343116760254 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 48.23655700683594 + }, + "ZPosition": { + "type": "float", + "value": 0.2000099122524262 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "shrine_wp" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.03601837158203 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 4.589019298553467 + }, + "ZPosition": { + "type": "float", + "value": 9.5367431640625e-006 + } + }, + { + "__struct_id": 5, + "Appearance": { + "type": "byte", + "value": 1 + }, + "Description": { + "type": "cexolocstring", + "value": {} + }, + "HasMapNote": { + "type": "byte", + "value": 0 + }, + "LinkedTo": { + "type": "cexostring", + "value": "" + }, + "LocalizedName": { + "type": "cexolocstring", + "value": { + "id": 14817 + } + }, + "MapNote": { + "type": "cexolocstring", + "value": {} + }, + "MapNoteEnabled": { + "type": "byte", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "div_lig" + }, + "TemplateResRef": { + "type": "resref", + "value": "nw_waypoint001" + }, + "XOrientation": { + "type": "float", + "value": 0.0 + }, + "XPosition": { + "type": "float", + "value": 15.09365463256836 + }, + "YOrientation": { + "type": "float", + "value": 1.0 + }, + "YPosition": { + "type": "float", + "value": 44.57598495483398 + }, + "ZPosition": { + "type": "float", + "value": 0.2000099122524262 + } + } + ] + } +} diff --git a/_module/ifo/module.ifo.json b/_module/ifo/module.ifo.json new file mode 100644 index 0000000..b0b3c26 --- /dev/null +++ b/_module/ifo/module.ifo.json @@ -0,0 +1,866 @@ +{ + "__data_type": "IFO ", + "Expansion_Pack": { + "type": "word", + "value": 3 + }, + "Mod_Area_list": { + "type": "list", + "value": [ + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "thequietofthemin" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "ruinedminds001" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "prc_maze_01" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "mordmagman06" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "mordmagman05" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "mordmagman04" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "mordmagman03" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "mordmagman02" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "mordmagman01" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "limbo001" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "frozentimes" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "frostedpits" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "ey_dpcon_erewood" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "desolateanddespa" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "_base" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "arena" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "thestoreroom" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "area" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "area001" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "lakevictory" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "hallofheroes" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "limbo" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "undergroundshrin" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "bdd_basinrim" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "bdd_cave" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "bdd_smelter" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "wol_a_bbb" + } + }, + { + "__struct_id": 6, + "Area_Name": { + "type": "resref", + "value": "wol_a_dymond" + } + } + ] + }, + "Mod_Creator_ID": { + "type": "int", + "value": 2 + }, + "Mod_CustomTlk": { + "type": "cexostring", + "value": "prc8_cep1_merge" + }, + "Mod_CutSceneList": { + "type": "list", + "value": [] + }, + "Mod_DawnHour": { + "type": "byte", + "value": 6 + }, + "Mod_DefaultBic": { + "type": "resref", + "value": "" + }, + "Mod_Description": { + "type": "cexolocstring", + "value": { + "0": "The Arena of Champions: Buildmaster v1.10 Final Version\n\nPart 1: Can your new builds survive in the toughest arena competition in the realm. Discover your opponent's strengths and weaknesses before devising a strategy to defeat them using carefully chosen equipment upgrades. Appraise both your character build and your playing style via an extensive stat-tracking and arena 'smart-scoring' system. \n\nPart II: When you have mastered the arena, join the massively fun Holy War battle.Try for the battlefield championship award, or simply watch as two uber armies struggle for victory. Sway the battle by alligning with one team or stay neutral and avoid damage.\n\nPart III: Put your money where your mouth is and place a wager on your choice of team, challenger or champion. Using the Grim Reaper betting tote, you can bet in a variety of divisions. Will you pick a winner or do your dough!\n\n- 20 unique bosses\n- Awesome PC and NPC stat tracking system\n- Tantalising special effects\n- 11 rewarding cutscenes\n- 10 minute final cutscene \n- Join a huge Holy War battle \n- Win the battlefield championship award\n- Interact with your allies after the big battle \n- Mega-fun arena betting system\n- Extensively configured unique opponents\n- A powerful equipment modifying system \n- Use your prize money to upgrade your weapons\n- Win exotic prizes for completing special arena challenges\n- 40 tomes that reveal critical information about your opponents\n- 4 Different game modes\n- Three different arena challenge modes\n- Create custom battles\n- 6 difficulty levels to master\n- A unique and rewarding custom ranking system\n- Duel your game host for the AOC reigning champion title\n- Multiplayer support\n- PvP Duelling facilities\n- Massive single player support\n- An innovative and informative deity system\n- Learn about 21 different deities\n- Convenient and intuitive layout\n- Dynamic Lamps & Braziers\n- Gui sound interfacing \n- Support for all classes and weapons\n- Ranged weapon support\n- A library revealing 15 uber how-to-build guides\n- Appearance change support \n- Bioware Campaign item warehouse\n- Bioware Campaign insertion support\n- Bioware Campaign crafting support\n- Bioware Campaign item modding support\n\n\nbrought to you by Commche 2004\na.k.a Chris\n\n" + } + }, + "Mod_DuskHour": { + "type": "byte", + "value": 18 + }, + "Mod_Entry_Area": { + "type": "resref", + "value": "arena" + }, + "Mod_Entry_Dir_X": { + "type": "float", + "value": 3.894143674187944e-007 + }, + "Mod_Entry_Dir_Y": { + "type": "float", + "value": -1.0 + }, + "Mod_Entry_X": { + "type": "float", + "value": 14.0 + }, + "Mod_Entry_Y": { + "type": "float", + "value": 24.0 + }, + "Mod_Entry_Z": { + "type": "float", + "value": 0.0 + }, + "Mod_Expan_List": { + "type": "list", + "value": [] + }, + "Mod_GVar_List": { + "type": "list", + "value": [] + }, + "Mod_HakList": { + "type": "list", + "value": [ + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "aoc_prc8_merge" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cep_prc8_uti" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "prc8_cep1_merge" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "prc8_2das" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "prc8_scripts" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "prc8_nsb" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "prc8_spells" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "prc8_epicspells" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "prc8_psionics" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "prc8_race" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cep3_vfx" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "prc8_textures" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "prc8_misc" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "prc8_craft2das" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cep3_armor" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cep3_facelift" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cep3_heads" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cep3_reforge" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cep3_skies" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cep1patch169" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cep2da" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cepportrait" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cepanatomy" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cepbaseitem" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cepcreature" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "cepplace" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "ceptexture" + } + }, + { + "__struct_id": 8, + "Mod_Hak": { + "type": "cexostring", + "value": "aoc_hakpac" + } + } + ] + }, + "Mod_ID": { + "type": "void", + "value64": "K3eiIXImsepCIa34jaVTIQ==" + }, + "Mod_IsSaveGame": { + "type": "byte", + "value": 0 + }, + "Mod_MinGameVer": { + "type": "cexostring", + "value": "1.89" + }, + "Mod_MinPerHour": { + "type": "byte", + "value": 2 + }, + "Mod_Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena of Champions [PRC8-CEP3]" + } + }, + "Mod_OnAcquirItem": { + "type": "resref", + "value": "prc_onaquire" + }, + "Mod_OnActvtItem": { + "type": "resref", + "value": "hif_onactivateit" + }, + "Mod_OnClientEntr": { + "type": "resref", + "value": "hif_onclientente" + }, + "Mod_OnClientLeav": { + "type": "resref", + "value": "hif_onclientleav" + }, + "Mod_OnCutsnAbort": { + "type": "resref", + "value": "prc_oncutabort" + }, + "Mod_OnHeartbeat": { + "type": "resref", + "value": "hif_onheartbeat" + }, + "Mod_OnModLoad": { + "type": "resref", + "value": "hif_onmoduleload" + }, + "Mod_OnModStart": { + "type": "resref", + "value": "" + }, + "Mod_OnNuiEvent": { + "type": "resref", + "value": "" + }, + "Mod_OnPlrChat": { + "type": "resref", + "value": "prc_onplayerchat" + }, + "Mod_OnPlrDeath": { + "type": "resref", + "value": "hif_onplayerdeat" + }, + "Mod_OnPlrDying": { + "type": "resref", + "value": "hif_onplayerdyin" + }, + "Mod_OnPlrEqItm": { + "type": "resref", + "value": "prc_equip" + }, + "Mod_OnPlrGuiEvt": { + "type": "resref", + "value": "" + }, + "Mod_OnPlrLvlUp": { + "type": "resref", + "value": "hif_onplayerleve" + }, + "Mod_OnPlrRest": { + "type": "resref", + "value": "hif_onplayerrest" + }, + "Mod_OnPlrTarget": { + "type": "resref", + "value": "prc_onplaytarget" + }, + "Mod_OnPlrTileAct": { + "type": "resref", + "value": "" + }, + "Mod_OnPlrUnEqItm": { + "type": "resref", + "value": "prc_unequip" + }, + "Mod_OnSpawnBtnDn": { + "type": "resref", + "value": "hif_onplayerresp" + }, + "Mod_OnUnAqreItem": { + "type": "resref", + "value": "prc_onunaquire" + }, + "Mod_OnUsrDefined": { + "type": "resref", + "value": "prc_onuserdef" + }, + "Mod_PartyControl": { + "type": "int", + "value": 0 + }, + "Mod_StartDay": { + "type": "byte", + "value": 1 + }, + "Mod_StartHour": { + "type": "byte", + "value": 13 + }, + "Mod_StartMonth": { + "type": "byte", + "value": 6 + }, + "Mod_StartMovie": { + "type": "resref", + "value": "" + }, + "Mod_StartYear": { + "type": "dword", + "value": 1372 + }, + "Mod_Tag": { + "type": "cexostring", + "value": "MODULE" + }, + "Mod_UUID": { + "type": "cexostring", + "value": "" + }, + "Mod_Version": { + "type": "dword", + "value": 3 + }, + "Mod_XPScale": { + "type": "byte", + "value": 10 + }, + "VarTable": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_PNP_SHIFTER_BONUS" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 128 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_XP_USE_SETXP" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_ENABLE_SPELL_SHARING" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_PNP_DISARM" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_BARD_LIGHT_ARMOR_SPELLCASTING" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_CHICKEN_INFESTED" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_MULTISUMMON" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_XP_USE_SIMPLE_LA" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_XP_USE_SIMPLE_RACIAL_HD" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_XP_USE_SIMPLE_RACIAL_HD_NO_FREE_XP" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_PNP_REST_LIMIT" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_PNP_REST_HEALING" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_FAST_TRAVEL_SPEED" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_PNP_SOMATIC_COMPONENTS" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_PNP_SOMATIC_ITEMS" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 0 + } + }, + { + "__struct_id": 0, + "Name": { + "type": "cexostring", + "value": "PRC_PNP_ARMOR_SPEED" + }, + "Type": { + "type": "dword", + "value": 1 + }, + "Value": { + "type": "int", + "value": 1 + } + } + ] + } +} diff --git a/_module/itp/creaturepalcus.itp.json b/_module/itp/creaturepalcus.itp.json new file mode 100644 index 0000000..92d940c --- /dev/null +++ b/_module/itp/creaturepalcus.itp.json @@ -0,0 +1,11057 @@ +{ + "__data_type": "ITP ", + "MAIN": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 48 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beholder" + }, + "STRREF": { + "type": "dword", + "value": 16808780 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dridarmor_a" + }, + "STRREF": { + "type": "dword", + "value": 16808888 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dridarmor_b" + }, + "STRREF": { + "type": "dword", + "value": 16808888 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dridfem_a" + }, + "STRREF": { + "type": "dword", + "value": 16808900 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dridfem_b" + }, + "STRREF": { + "type": "dword", + "value": 16808900 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 14.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dridfem_c" + }, + "STRREF": { + "type": "dword", + "value": 16808900 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 14.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dridfem_d" + }, + "STRREF": { + "type": "dword", + "value": 16808900 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dridarmor_c" + }, + "STRREF": { + "type": "dword", + "value": 16808902 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_flyeye" + }, + "STRREF": { + "type": "dword", + "value": 16808938 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_driderm1" + }, + "STRREF": { + "type": "dword", + "value": 16809168 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dridmale_b" + }, + "STRREF": { + "type": "dword", + "value": 16809168 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dridmale_c" + }, + "STRREF": { + "type": "dword", + "value": 16809168 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dridmale_d" + }, + "STRREF": { + "type": "dword", + "value": 16809168 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dridmale_e" + }, + "STRREF": { + "type": "dword", + "value": 16809168 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_illithid" + }, + "STRREF": { + "type": "dword", + "value": 16816228 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_illithid1" + }, + "STRREF": { + "type": "dword", + "value": 16816228 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_illithid2" + }, + "STRREF": { + "type": "dword", + "value": 16816230 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_illithid3" + }, + "STRREF": { + "type": "dword", + "value": 16816230 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_illithid5" + }, + "STRREF": { + "type": "dword", + "value": 16816232 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_illithid4" + }, + "STRREF": { + "type": "dword", + "value": 16816240 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_rustmonster" + }, + "STRREF": { + "type": "dword", + "value": 16816318 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_illithidkid" + }, + "STRREF": { + "type": "dword", + "value": 16816520 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 63235 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 5 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_bearpanda" + }, + "STRREF": { + "type": "dword", + "value": 16808970 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_bearsloth" + }, + "STRREF": { + "type": "dword", + "value": 16816346 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_bearspec" + }, + "STRREF": { + "type": "dword", + "value": 16816412 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_bearsun" + }, + "STRREF": { + "type": "dword", + "value": 16816426 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6695 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 6 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_eagle" + }, + "STRREF": { + "type": "dword", + "value": 16808890 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6696 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 100 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_bison" + }, + "STRREF": { + "type": "dword", + "value": 16808784 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_bisona" + }, + "STRREF": { + "type": "dword", + "value": 16808786 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_cowangus" + }, + "STRREF": { + "type": "dword", + "value": 16808790 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_cowcalf2" + }, + "STRREF": { + "type": "dword", + "value": 16808794 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_cowbrahma" + }, + "STRREF": { + "type": "dword", + "value": 16808822 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_cowangusbr" + }, + "STRREF": { + "type": "dword", + "value": 16808824 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_cowcalfbr" + }, + "STRREF": { + "type": "dword", + "value": 16808828 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_cowholsbr" + }, + "STRREF": { + "type": "dword", + "value": 16808830 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.1666666716337204 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_cow2" + }, + "STRREF": { + "type": "dword", + "value": 16808862 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_cowfightbull" + }, + "STRREF": { + "type": "dword", + "value": 16808920 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_cowhighland" + }, + "STRREF": { + "type": "dword", + "value": 16809012 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_cowlonghorn" + }, + "STRREF": { + "type": "dword", + "value": 16809156 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_oxwithplow" + }, + "STRREF": { + "type": "dword", + "value": 16816272 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_packox2" + }, + "STRREF": { + "type": "dword", + "value": 16816282 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_cowrothe" + }, + "STRREF": { + "type": "dword", + "value": 16816316 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_buffalo3" + }, + "STRREF": { + "type": "dword", + "value": 16816488 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_buffalocalf" + }, + "STRREF": { + "type": "dword", + "value": 16816490 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_buffalo2" + }, + "STRREF": { + "type": "dword", + "value": 16816492 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_buffalo1" + }, + "STRREF": { + "type": "dword", + "value": 16816494 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808670 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 7 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogcoosheef" + }, + "STRREF": { + "type": "dword", + "value": 16808852 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogcoosheem" + }, + "STRREF": { + "type": "dword", + "value": 16808854 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_coosheep" + }, + "STRREF": { + "type": "dword", + "value": 16808856 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogdalmation" + }, + "STRREF": { + "type": "dword", + "value": 16808870 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogdalmpup" + }, + "STRREF": { + "type": "dword", + "value": 16808872 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogdober" + }, + "STRREF": { + "type": "dword", + "value": 16808880 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogdoberpup" + }, + "STRREF": { + "type": "dword", + "value": 16808882 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_doghusky" + }, + "STRREF": { + "type": "dword", + "value": 16809078 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_doghuskypup" + }, + "STRREF": { + "type": "dword", + "value": 16809080 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogmalamute" + }, + "STRREF": { + "type": "dword", + "value": 16809160 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogmastiff" + }, + "STRREF": { + "type": "dword", + "value": 16809190 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogmastiffp" + }, + "STRREF": { + "type": "dword", + "value": 16809192 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogterrier" + }, + "STRREF": { + "type": "dword", + "value": 16816430 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogterrierp" + }, + "STRREF": { + "type": "dword", + "value": 16816432 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogwild" + }, + "STRREF": { + "type": "dword", + "value": 16816506 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.3333333432674408 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_dogwildp" + }, + "STRREF": { + "type": "dword", + "value": 16816508 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6697 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 8 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.3333333432674408 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_catblackw" + }, + "STRREF": { + "type": "dword", + "value": 16808788 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.3333333432674408 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_catblack" + }, + "STRREF": { + "type": "dword", + "value": 16808796 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.1666666716337204 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_catblackkit" + }, + "STRREF": { + "type": "dword", + "value": 16808798 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_catbobtail" + }, + "STRREF": { + "type": "dword", + "value": 16808826 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_catcloudleop" + }, + "STRREF": { + "type": "dword", + "value": 16808850 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_cougar" + }, + "STRREF": { + "type": "dword", + "value": 16808860 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_catleopard" + }, + "STRREF": { + "type": "dword", + "value": 16816404 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_cattiger" + }, + "STRREF": { + "type": "dword", + "value": 16816438 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.3333333432674408 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_catwhite" + }, + "STRREF": { + "type": "dword", + "value": 16816500 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.1666666716337204 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_catwhitekit" + }, + "STRREF": { + "type": "dword", + "value": 16816502 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_tigerwhite" + }, + "STRREF": { + "type": "dword", + "value": 16816504 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6698 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 117 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.3333333432674408 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_antelope" + }, + "STRREF": { + "type": "dword", + "value": 16808754 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.3333333432674408 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_antelopeb" + }, + "STRREF": { + "type": "dword", + "value": 16808792 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.3333333432674408 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_gazelle" + }, + "STRREF": { + "type": "dword", + "value": 16808946 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808636 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 9 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "RESREF": { + "type": "resref", + "value": "badger001" + }, + "STRREF": { + "type": "dword", + "value": 12366 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_ferret" + }, + "STRREF": { + "type": "dword", + "value": 16808916 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_fisher" + }, + "STRREF": { + "type": "dword", + "value": 16808934 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_mink" + }, + "STRREF": { + "type": "dword", + "value": 16816234 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.3333333432674408 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_mouse" + }, + "STRREF": { + "type": "dword", + "value": 16816238 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_packbadger" + }, + "STRREF": { + "type": "dword", + "value": 16816274 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_packbear" + }, + "STRREF": { + "type": "dword", + "value": 16816276 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_packbeetle" + }, + "STRREF": { + "type": "dword", + "value": 16816278 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_packboar" + }, + "STRREF": { + "type": "dword", + "value": 16816280 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_packox" + }, + "STRREF": { + "type": "dword", + "value": 16816282 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.1666666716337204 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_packpenguin" + }, + "STRREF": { + "type": "dword", + "value": 16816284 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_raccoon" + }, + "STRREF": { + "type": "dword", + "value": 16816302 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_redpanda" + }, + "STRREF": { + "type": "dword", + "value": 16816306 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_ringtail" + }, + "STRREF": { + "type": "dword", + "value": 16816314 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_skunk" + }, + "STRREF": { + "type": "dword", + "value": 16816342 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_hyenaspot" + }, + "STRREF": { + "type": "dword", + "value": 16816418 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_hyenastripe" + }, + "STRREF": { + "type": "dword", + "value": 16816422 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_weasel" + }, + "STRREF": { + "type": "dword", + "value": 16816496 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_wolverine" + }, + "STRREF": { + "type": "dword", + "value": 16816512 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 201 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 101 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_hugedesertvi" + }, + "STRREF": { + "type": "dword", + "value": 16809026 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_hugeforestvi" + }, + "STRREF": { + "type": "dword", + "value": 16809036 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_hugejunglevi" + }, + "STRREF": { + "type": "dword", + "value": 16809040 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_hugeswampvi" + }, + "STRREF": { + "type": "dword", + "value": 16809072 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_meddesertvi" + }, + "STRREF": { + "type": "dword", + "value": 16809202 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_medforestvi" + }, + "STRREF": { + "type": "dword", + "value": 16809206 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_medjunglevi" + }, + "STRREF": { + "type": "dword", + "value": 16809212 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_medswampvi" + }, + "STRREF": { + "type": "dword", + "value": 16816224 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_tinydesertvi" + }, + "STRREF": { + "type": "dword", + "value": 16816440 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_tinyforestvi" + }, + "STRREF": { + "type": "dword", + "value": 16816444 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_tinyjunglevi" + }, + "STRREF": { + "type": "dword", + "value": 16816446 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_tinyswampvi" + }, + "STRREF": { + "type": "dword", + "value": 16816456 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808676 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 102 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_babirusa" + }, + "STRREF": { + "type": "dword", + "value": 16808768 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_hog" + }, + "STRREF": { + "type": "dword", + "value": 16809014 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_peccary" + }, + "STRREF": { + "type": "dword", + "value": 16816286 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_pig" + }, + "STRREF": { + "type": "dword", + "value": 16816292 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_pigpot" + }, + "STRREF": { + "type": "dword", + "value": 16816300 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808671 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 103 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_crab2" + }, + "STRREF": { + "type": "dword", + "value": 16808808 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_crab4" + }, + "STRREF": { + "type": "dword", + "value": 16808810 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_crab1" + }, + "STRREF": { + "type": "dword", + "value": 16808864 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_crab3" + }, + "STRREF": { + "type": "dword", + "value": 16808966 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_otter" + }, + "STRREF": { + "type": "dword", + "value": 16816268 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808672 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6694 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 107 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_stirgecave" + }, + "STRREF": { + "type": "dword", + "value": 16808844 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.3333333432674408 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_stirgeg" + }, + "STRREF": { + "type": "dword", + "value": 16809178 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_owlbear" + }, + "STRREF": { + "type": "dword", + "value": 16816270 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.3333333432674408 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_stirge" + }, + "STRREF": { + "type": "dword", + "value": 16816420 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808679 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 20 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_golemame" + }, + "STRREF": { + "type": "dword", + "value": 16816691 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_animchest" + }, + "STRREF": { + "type": "dword", + "value": 16808744 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_animchestf" + }, + "STRREF": { + "type": "dword", + "value": 16808746 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_animtable" + }, + "STRREF": { + "type": "dword", + "value": 16808748 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_animtome1" + }, + "STRREF": { + "type": "dword", + "value": 16808750 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_animtome2" + }, + "STRREF": { + "type": "dword", + "value": 16808750 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_animtome3" + }, + "STRREF": { + "type": "dword", + "value": 16808750 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_animtome4" + }, + "STRREF": { + "type": "dword", + "value": 16808750 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_animwheel" + }, + "STRREF": { + "type": "dword", + "value": 16808752 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_golemcitr" + }, + "STRREF": { + "type": "dword", + "value": 16816687 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_animcutter" + }, + "STRREF": { + "type": "dword", + "value": 16808866 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_golememer" + }, + "STRREF": { + "type": "dword", + "value": 16816685 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_maug" + }, + "STRREF": { + "type": "dword", + "value": 16816705 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 14.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_maugcap" + }, + "STRREF": { + "type": "dword", + "value": 16816707 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 20.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_maugcom" + }, + "STRREF": { + "type": "dword", + "value": 16816709 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_mauglieu" + }, + "STRREF": { + "type": "dword", + "value": 16816711 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_maughserg" + }, + "STRREF": { + "type": "dword", + "value": 16816713 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_mechspider" + }, + "STRREF": { + "type": "dword", + "value": 16809194 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 8.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_minogon" + }, + "STRREF": { + "type": "dword", + "value": 16816236 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_golemobs" + }, + "STRREF": { + "type": "dword", + "value": 16816693 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_golemrub" + }, + "STRREF": { + "type": "dword", + "value": 16816683 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_golemsapph" + }, + "STRREF": { + "type": "dword", + "value": 16816689 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scarecr" + }, + "STRREF": { + "type": "dword", + "value": 16816326 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 8.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spiker" + }, + "STRREF": { + "type": "dword", + "value": 16816414 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_twigblight" + }, + "STRREF": { + "type": "dword", + "value": 16816460 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6712 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 21 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_halfdrafnd" + }, + "STRREF": { + "type": "dword", + "value": 16809004 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 33.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Hell Wurm" + }, + "RESREF": { + "type": "resref", + "value": "hellwurm" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6713 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 22 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_belker" + }, + "STRREF": { + "type": "dword", + "value": 16808782 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemairl" + }, + "STRREF": { + "type": "dword", + "value": 16809020 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemashl" + }, + "STRREF": { + "type": "dword", + "value": 16809022 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemdustl" + }, + "STRREF": { + "type": "dword", + "value": 16809028 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemearthl" + }, + "STRREF": { + "type": "dword", + "value": 16809030 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemfirel" + }, + "STRREF": { + "type": "dword", + "value": 16809034 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemicel" + }, + "STRREF": { + "type": "dword", + "value": 16809038 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_lightningh" + }, + "STRREF": { + "type": "dword", + "value": 16809042 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemmagmal" + }, + "STRREF": { + "type": "dword", + "value": 16809044 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemminl" + }, + "STRREF": { + "type": "dword", + "value": 16809046 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemoozel" + }, + "STRREF": { + "type": "dword", + "value": 16809048 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemradncl" + }, + "STRREF": { + "type": "dword", + "value": 16809050 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemsaltl" + }, + "STRREF": { + "type": "dword", + "value": 16809054 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemsmokel" + }, + "STRREF": { + "type": "dword", + "value": 16809062 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemsteaml" + }, + "STRREF": { + "type": "dword", + "value": 16809068 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemvacuuml" + }, + "STRREF": { + "type": "dword", + "value": 16809074 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemwaterl" + }, + "STRREF": { + "type": "dword", + "value": 16809076 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemairm" + }, + "STRREF": { + "type": "dword", + "value": 16809096 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemashm" + }, + "STRREF": { + "type": "dword", + "value": 16809098 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemdustm" + }, + "STRREF": { + "type": "dword", + "value": 16809110 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemearthm" + }, + "STRREF": { + "type": "dword", + "value": 16809112 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemfirem" + }, + "STRREF": { + "type": "dword", + "value": 16809114 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemicem" + }, + "STRREF": { + "type": "dword", + "value": 16809120 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_lightningl" + }, + "STRREF": { + "type": "dword", + "value": 16809122 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemmagmam" + }, + "STRREF": { + "type": "dword", + "value": 16809124 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemminm" + }, + "STRREF": { + "type": "dword", + "value": 16809126 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemoozem" + }, + "STRREF": { + "type": "dword", + "value": 16809134 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemradncm" + }, + "STRREF": { + "type": "dword", + "value": 16809136 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemsaltm" + }, + "STRREF": { + "type": "dword", + "value": 16809138 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemsmokem" + }, + "STRREF": { + "type": "dword", + "value": 16809142 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemsteamm" + }, + "STRREF": { + "type": "dword", + "value": 16809144 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemvacuumm" + }, + "STRREF": { + "type": "dword", + "value": 16809146 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemwaterm" + }, + "STRREF": { + "type": "dword", + "value": 16809148 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemairs" + }, + "STRREF": { + "type": "dword", + "value": 16816348 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemashs" + }, + "STRREF": { + "type": "dword", + "value": 16816350 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemdusts" + }, + "STRREF": { + "type": "dword", + "value": 16816360 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemearths" + }, + "STRREF": { + "type": "dword", + "value": 16816362 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemfires" + }, + "STRREF": { + "type": "dword", + "value": 16816364 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemices" + }, + "STRREF": { + "type": "dword", + "value": 16816370 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_lightnings" + }, + "STRREF": { + "type": "dword", + "value": 16816372 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemmagmas" + }, + "STRREF": { + "type": "dword", + "value": 16816374 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemmins" + }, + "STRREF": { + "type": "dword", + "value": 16816376 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemoozes" + }, + "STRREF": { + "type": "dword", + "value": 16816384 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemradncs" + }, + "STRREF": { + "type": "dword", + "value": 16816386 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemsalts" + }, + "STRREF": { + "type": "dword", + "value": 16816388 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemsmokes" + }, + "STRREF": { + "type": "dword", + "value": 16816394 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemsteams" + }, + "STRREF": { + "type": "dword", + "value": 16816396 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemvacuums" + }, + "STRREF": { + "type": "dword", + "value": 16816398 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_elemwaters" + }, + "STRREF": { + "type": "dword", + "value": 16816400 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6714 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 34 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_cyclopsa" + }, + "STRREF": { + "type": "dword", + "value": 16808766 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_cyclops" + }, + "STRREF": { + "type": "dword", + "value": 16808868 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6727 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 35 + }, + "STRREF": { + "type": "dword", + "value": 6728 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 36 + }, + "STRREF": { + "type": "dword", + "value": 6729 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 37 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_troll" + }, + "STRREF": { + "type": "dword", + "value": 16816458 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6730 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 541 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 14 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_arcticbugb" + }, + "STRREF": { + "type": "dword", + "value": 16808756 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_arcticbugbch" + }, + "STRREF": { + "type": "dword", + "value": 16808758 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_arcticbugbsh" + }, + "STRREF": { + "type": "dword", + "value": 16808760 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6706 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 15 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_pixie" + }, + "STRREF": { + "type": "dword", + "value": 16816296 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_satyr" + }, + "STRREF": { + "type": "dword", + "value": 16816324 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_satyrs" + }, + "STRREF": { + "type": "dword", + "value": 16816390 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6707 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 16 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_goblin" + }, + "STRREF": { + "type": "dword", + "value": 16808834 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_goblinbes" + }, + "STRREF": { + "type": "dword", + "value": 16808836 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_goblinboss" + }, + "STRREF": { + "type": "dword", + "value": 16808838 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_goblinscout" + }, + "STRREF": { + "type": "dword", + "value": 16808840 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_goblinsha" + }, + "STRREF": { + "type": "dword", + "value": 16808842 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_frostgoblin" + }, + "STRREF": { + "type": "dword", + "value": 16808940 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 13.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_frostgobchie" + }, + "STRREF": { + "type": "dword", + "value": 16808942 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_frostgobwiz" + }, + "STRREF": { + "type": "dword", + "value": 16808944 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_gobspidrider" + }, + "STRREF": { + "type": "dword", + "value": 16808988 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_goblinworgg" + }, + "STRREF": { + "type": "dword", + "value": 16816514 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_goblinworgr" + }, + "STRREF": { + "type": "dword", + "value": 16816514 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_goblinworgrw" + }, + "STRREF": { + "type": "dword", + "value": 16816514 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6708 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 17 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_icekobold" + }, + "STRREF": { + "type": "dword", + "value": 16809084 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_icekoboldnob" + }, + "STRREF": { + "type": "dword", + "value": 16809086 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_icekoboldsha" + }, + "STRREF": { + "type": "dword", + "value": 16809088 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6709 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 18 + }, + "STRREF": { + "type": "dword", + "value": 6710 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 19 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_orcbloodg" + }, + "STRREF": { + "type": "dword", + "value": 16808806 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_urakhai" + }, + "STRREF": { + "type": "dword", + "value": 16816462 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_urakhaib" + }, + "STRREF": { + "type": "dword", + "value": 16816464 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_urakhaic" + }, + "STRREF": { + "type": "dword", + "value": 16816466 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_urakhais" + }, + "STRREF": { + "type": "dword", + "value": 16816468 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_urakhaisold" + }, + "STRREF": { + "type": "dword", + "value": 16816470 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_orc" + }, + "STRREF": { + "type": "dword", + "value": 16816256 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_orc3" + }, + "STRREF": { + "type": "dword", + "value": 16816258 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_orcboss" + }, + "STRREF": { + "type": "dword", + "value": 16816260 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_orc4" + }, + "STRREF": { + "type": "dword", + "value": 16816262 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_orc2" + }, + "STRREF": { + "type": "dword", + "value": 16816264 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_orcmerc" + }, + "STRREF": { + "type": "dword", + "value": 16816266 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_frostorc" + }, + "STRREF": { + "type": "dword", + "value": 16816406 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_frostorcch" + }, + "STRREF": { + "type": "dword", + "value": 16816408 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_frostorcsh" + }, + "STRREF": { + "type": "dword", + "value": 16816410 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 537 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 50 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_trollocb" + }, + "STRREF": { + "type": "dword", + "value": 16808812 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_trollocg" + }, + "STRREF": { + "type": "dword", + "value": 16808984 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_trolloch" + }, + "STRREF": { + "type": "dword", + "value": 16809008 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_ogrillon" + }, + "STRREF": { + "type": "dword", + "value": 16816254 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_ogrillon001" + }, + "STRREF": { + "type": "dword", + "value": 16816254 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_ogrillon3" + }, + "STRREF": { + "type": "dword", + "value": 16816254 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_ogrillon4" + }, + "STRREF": { + "type": "dword", + "value": 16816254 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 201 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6705 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 104 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_gantguard" + }, + "STRREF": { + "type": "dword", + "value": 16808952 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_ganthvqueen" + }, + "STRREF": { + "type": "dword", + "value": 16808954 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_gantlarva" + }, + "STRREF": { + "type": "dword", + "value": 16808956 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_gantqueen" + }, + "STRREF": { + "type": "dword", + "value": 16808958 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_gantsoldier" + }, + "STRREF": { + "type": "dword", + "value": 16808960 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_giantantwork" + }, + "STRREF": { + "type": "dword", + "value": 16808962 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_gantfire" + }, + "STRREF": { + "type": "dword", + "value": 16808968 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808673 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 10 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlebomb" + }, + "STRREF": { + "type": "dword", + "value": 16808814 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlefiref" + }, + "STRREF": { + "type": "dword", + "value": 16808922 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetleslicf" + }, + "STRREF": { + "type": "dword", + "value": 16808924 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlespitf" + }, + "STRREF": { + "type": "dword", + "value": 16808926 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlestagf" + }, + "STRREF": { + "type": "dword", + "value": 16808928 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlestnkf" + }, + "STRREF": { + "type": "dword", + "value": 16808930 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlefireh" + }, + "STRREF": { + "type": "dword", + "value": 16809032 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetleslich" + }, + "STRREF": { + "type": "dword", + "value": 16809058 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlespith" + }, + "STRREF": { + "type": "dword", + "value": 16809064 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlestagh" + }, + "STRREF": { + "type": "dword", + "value": 16809066 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlestnkh" + }, + "STRREF": { + "type": "dword", + "value": 16809070 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlefiret" + }, + "STRREF": { + "type": "dword", + "value": 16816442 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetleslict" + }, + "STRREF": { + "type": "dword", + "value": 16816448 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlespitt" + }, + "STRREF": { + "type": "dword", + "value": 16816450 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlestagt" + }, + "STRREF": { + "type": "dword", + "value": 16816452 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_beetlestnkt" + }, + "STRREF": { + "type": "dword", + "value": 16816454 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6701 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 105 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_bugcloud" + }, + "STRREF": { + "type": "dword", + "value": 16808848 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_gwasp" + }, + "STRREF": { + "type": "dword", + "value": 16816699 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_bugcloudl" + }, + "STRREF": { + "type": "dword", + "value": 16809104 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808674 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 106 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scorp001" + }, + "STRREF": { + "type": "dword", + "value": 16808800 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scorpg001" + }, + "STRREF": { + "type": "dword", + "value": 16808964 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scorpg003" + }, + "STRREF": { + "type": "dword", + "value": 16808972 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scorpg" + }, + "STRREF": { + "type": "dword", + "value": 16808974 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scorpg002" + }, + "STRREF": { + "type": "dword", + "value": 16808976 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scorph001" + }, + "STRREF": { + "type": "dword", + "value": 16809024 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scorph003" + }, + "STRREF": { + "type": "dword", + "value": 16809052 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scorph" + }, + "STRREF": { + "type": "dword", + "value": 16809056 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scorph002" + }, + "STRREF": { + "type": "dword", + "value": 16809060 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scorp003" + }, + "STRREF": { + "type": "dword", + "value": 16816308 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scorp" + }, + "STRREF": { + "type": "dword", + "value": 16816328 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_scorp002" + }, + "STRREF": { + "type": "dword", + "value": 16816344 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808675 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 11 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spidbloodbak" + }, + "STRREF": { + "type": "dword", + "value": 16808804 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spiddire" + }, + "STRREF": { + "type": "dword", + "value": 16808878 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.1666666716337204 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spiderling" + }, + "STRREF": { + "type": "dword", + "value": 16808932 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spidgiant" + }, + "STRREF": { + "type": "dword", + "value": 16808978 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spidice" + }, + "STRREF": { + "type": "dword", + "value": 16809090 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spidphase" + }, + "STRREF": { + "type": "dword", + "value": 16816288 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spidredback" + }, + "STRREF": { + "type": "dword", + "value": 16816310 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spiderlingsw" + }, + "STRREF": { + "type": "dword", + "value": 16816428 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spidwra" + }, + "STRREF": { + "type": "dword", + "value": 16816516 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6702 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6700 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 49 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 13.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_sphinxandro" + }, + "STRREF": { + "type": "dword", + "value": 16808742 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 8.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_sphinxgyno" + }, + "STRREF": { + "type": "dword", + "value": 16809002 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_sphinxhier" + }, + "STRREF": { + "type": "dword", + "value": 16809010 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_manticore" + }, + "STRREF": { + "type": "dword", + "value": 16809184 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 63246 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 13 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 39.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Dark Render" + }, + "RESREF": { + "type": "resref", + "value": "dopple2" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 1592 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 116 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_blackpuddl" + }, + "STRREF": { + "type": "dword", + "value": 16809100 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_brownpuddl" + }, + "STRREF": { + "type": "dword", + "value": 16809102 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_crystaloozel" + }, + "STRREF": { + "type": "dword", + "value": 16809106 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dunpuddingl" + }, + "STRREF": { + "type": "dword", + "value": 16809108 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_grayoozel" + }, + "STRREF": { + "type": "dword", + "value": 16809116 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_greenslimel" + }, + "STRREF": { + "type": "dword", + "value": 16809118 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_mustardjell" + }, + "STRREF": { + "type": "dword", + "value": 16809128 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_ochrejellyl" + }, + "STRREF": { + "type": "dword", + "value": 16809130 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_oliveslimel" + }, + "STRREF": { + "type": "dword", + "value": 16809132 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_slitheringl" + }, + "STRREF": { + "type": "dword", + "value": 16809140 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_whitepuddl" + }, + "STRREF": { + "type": "dword", + "value": 16809150 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_blackpuddm" + }, + "STRREF": { + "type": "dword", + "value": 16809196 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_brownpuddm" + }, + "STRREF": { + "type": "dword", + "value": 16809198 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_crystaloozem" + }, + "STRREF": { + "type": "dword", + "value": 16809200 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dunpuddingm" + }, + "STRREF": { + "type": "dword", + "value": 16809204 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_grayoozem" + }, + "STRREF": { + "type": "dword", + "value": 16809208 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_greenslimem" + }, + "STRREF": { + "type": "dword", + "value": 16809210 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_mustardjelm" + }, + "STRREF": { + "type": "dword", + "value": 16809214 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_ochrejellym" + }, + "STRREF": { + "type": "dword", + "value": 16816218 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_oliveslimem" + }, + "STRREF": { + "type": "dword", + "value": 16816220 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_slitheringm" + }, + "STRREF": { + "type": "dword", + "value": 16816222 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_whitepuddm" + }, + "STRREF": { + "type": "dword", + "value": 16816226 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_blackpudds" + }, + "STRREF": { + "type": "dword", + "value": 16816352 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_brownpudds" + }, + "STRREF": { + "type": "dword", + "value": 16816354 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_crystaloozes" + }, + "STRREF": { + "type": "dword", + "value": 16816356 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dunpuddings" + }, + "STRREF": { + "type": "dword", + "value": 16816358 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_grayoozes" + }, + "STRREF": { + "type": "dword", + "value": 16816366 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_greenslimes" + }, + "STRREF": { + "type": "dword", + "value": 16816368 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_mustardjels" + }, + "STRREF": { + "type": "dword", + "value": 16816378 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_ochrejellys" + }, + "STRREF": { + "type": "dword", + "value": 16816380 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_oliveslimes" + }, + "STRREF": { + "type": "dword", + "value": 16816382 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_slitherings" + }, + "STRREF": { + "type": "dword", + "value": 16816392 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_whitepudds" + }, + "STRREF": { + "type": "dword", + "value": 16816402 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808667 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 23 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "RESREF": { + "type": "resref", + "value": "zep_lupinal1" + }, + "STRREF": { + "type": "dword", + "value": 16808906 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "RESREF": { + "type": "resref", + "value": "zep_lupinal2" + }, + "STRREF": { + "type": "dword", + "value": 16808906 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "RESREF": { + "type": "resref", + "value": "zep_lupinal3" + }, + "STRREF": { + "type": "dword", + "value": 16808906 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "RESREF": { + "type": "resref", + "value": "zep_lupinal4" + }, + "STRREF": { + "type": "dword", + "value": 16808906 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 17.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "RESREF": { + "type": "resref", + "value": "zep_planetarf" + }, + "STRREF": { + "type": "dword", + "value": 16808908 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "RESREF": { + "type": "resref", + "value": "zep_lupinal7" + }, + "STRREF": { + "type": "dword", + "value": 16809162 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "RESREF": { + "type": "resref", + "value": "zep_lupinal5" + }, + "STRREF": { + "type": "dword", + "value": 16809172 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "RESREF": { + "type": "resref", + "value": "zep_lupinal6" + }, + "STRREF": { + "type": "dword", + "value": 16809172 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "RESREF": { + "type": "resref", + "value": "zep_lupinal8" + }, + "STRREF": { + "type": "dword", + "value": 16809172 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 16.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "RESREF": { + "type": "resref", + "value": "zep_planetarm" + }, + "STRREF": { + "type": "dword", + "value": 16809174 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6716 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 108 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 74.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_lolth" + }, + "STRREF": { + "type": "dword", + "value": 16809154 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 54.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_vecna" + }, + "STRREF": { + "type": "dword", + "value": 16816474 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808677 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 24 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 16.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_balrog" + }, + "STRREF": { + "type": "dword", + "value": 16808770 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_rakshasab" + }, + "STRREF": { + "type": "dword", + "value": 16808776 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 13.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_bebilithb" + }, + "STRREF": { + "type": "dword", + "value": 16808778 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_bebilithc" + }, + "STRREF": { + "type": "dword", + "value": 16808778 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_cornugon" + }, + "STRREF": { + "type": "dword", + "value": 16808858 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_cornugona" + }, + "STRREF": { + "type": "dword", + "value": 16808858 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_marilith" + }, + "STRREF": { + "type": "dword", + "value": 16808876 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_erinyes" + }, + "STRREF": { + "type": "dword", + "value": 16808892 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_erinyes2" + }, + "STRREF": { + "type": "dword", + "value": 16808892 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_halffiendf" + }, + "STRREF": { + "type": "dword", + "value": 16808904 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 13.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_gelugon" + }, + "STRREF": { + "type": "dword", + "value": 16808948 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 14.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_glabrezu" + }, + "STRREF": { + "type": "dword", + "value": 16808982 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 14.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_cornugongr" + }, + "STRREF": { + "type": "dword", + "value": 16808992 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_hamatula_35e" + }, + "STRREF": { + "type": "dword", + "value": 16808996 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_hamatula" + }, + "STRREF": { + "type": "dword", + "value": 16809006 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spidfiend1" + }, + "STRREF": { + "type": "dword", + "value": 16809092 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spidfiend2" + }, + "STRREF": { + "type": "dword", + "value": 16809158 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_halffiend" + }, + "STRREF": { + "type": "dword", + "value": 16809170 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_merilith2" + }, + "STRREF": { + "type": "dword", + "value": 16809186 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 28.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_marilithbg" + }, + "STRREF": { + "type": "dword", + "value": 16809188 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_osyluth1" + }, + "STRREF": { + "type": "dword", + "value": 16816701 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_osyluth2" + }, + "STRREF": { + "type": "dword", + "value": 16816701 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_osyluth3" + }, + "STRREF": { + "type": "dword", + "value": 16816701 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spidfiend3" + }, + "STRREF": { + "type": "dword", + "value": 16816290 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 16.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_pitfiend" + }, + "STRREF": { + "type": "dword", + "value": 16816294 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spidfiend4" + }, + "STRREF": { + "type": "dword", + "value": 16816304 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 10.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_spidfiend5" + }, + "STRREF": { + "type": "dword", + "value": 16816416 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_succubus" + }, + "STRREF": { + "type": "dword", + "value": 16816424 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_sucubusa" + }, + "STRREF": { + "type": "dword", + "value": 16816424 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 12.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_demonvorlan" + }, + "STRREF": { + "type": "dword", + "value": 16816486 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_rakshasaw" + }, + "STRREF": { + "type": "dword", + "value": 16816510 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6717 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 25 + }, + "STRREF": { + "type": "dword", + "value": 6718 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 47 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_bladeling" + }, + "STRREF": { + "type": "dword", + "value": 16808802 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_etherscarab" + }, + "STRREF": { + "type": "dword", + "value": 16808894 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_azerfemale" + }, + "STRREF": { + "type": "dword", + "value": 16808896 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_feyri" + }, + "STRREF": { + "type": "dword", + "value": 16808918 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_azermale" + }, + "STRREF": { + "type": "dword", + "value": 16809164 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_salanob" + }, + "STRREF": { + "type": "dword", + "value": 16816252 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_sala" + }, + "STRREF": { + "type": "dword", + "value": 16816320 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_salaflamebro" + }, + "STRREF": { + "type": "dword", + "value": 16816322 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 11.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_elderxorn" + }, + "STRREF": { + "type": "dword", + "value": 16816518 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6699 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 26 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 9.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_slaadgrn" + }, + "STRREF": { + "type": "dword", + "value": 16809000 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6719 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6715 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 109 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_vines1" + }, + "STRREF": { + "type": "dword", + "value": 16816715 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_vines2" + }, + "STRREF": { + "type": "dword", + "value": 16816715 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_myconid" + }, + "STRREF": { + "type": "dword", + "value": 16816242 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_myconidking" + }, + "STRREF": { + "type": "dword", + "value": 16816244 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_myconidspro" + }, + "STRREF": { + "type": "dword", + "value": 16816246 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.125 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_shrieker" + }, + "STRREF": { + "type": "dword", + "value": 16816332 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_thorny" + }, + "STRREF": { + "type": "dword", + "value": 16816434 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_thornyrider" + }, + "STRREF": { + "type": "dword", + "value": 16816436 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_thornyridert" + }, + "STRREF": { + "type": "dword", + "value": 16816436 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_thornyriderv" + }, + "STRREF": { + "type": "dword", + "value": 16816436 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 8.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_treant" + }, + "STRREF": { + "type": "dword", + "value": 16816675 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_vegepygmy" + }, + "STRREF": { + "type": "dword", + "value": 16816476 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_vegepygmyb" + }, + "STRREF": { + "type": "dword", + "value": 16816478 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_vegepygmych" + }, + "STRREF": { + "type": "dword", + "value": 16816480 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_vegepygmysc" + }, + "STRREF": { + "type": "dword", + "value": 16816482 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808678 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 12 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_barghest" + }, + "STRREF": { + "type": "dword", + "value": 16808772 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_doppelganger" + }, + "STRREF": { + "type": "dword", + "value": 16808884 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skulkf" + }, + "STRREF": { + "type": "dword", + "value": 16808910 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_goblinbargh" + }, + "STRREF": { + "type": "dword", + "value": 16808986 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 8.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_barghestg" + }, + "STRREF": { + "type": "dword", + "value": 16808990 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 6.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_goblinbarghg" + }, + "STRREF": { + "type": "dword", + "value": 16808994 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skulkm" + }, + "STRREF": { + "type": "dword", + "value": 16809176 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_werebat" + }, + "STRREF": { + "type": "dword", + "value": 16816697 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6703 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 27 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_iceghoul" + }, + "STRREF": { + "type": "dword", + "value": 16809082 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 2058 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 28 + }, + "STRREF": { + "type": "dword", + "value": 6722 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 29 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_batbattle" + }, + "STRREF": { + "type": "dword", + "value": 16808774 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_batbone" + }, + "STRREF": { + "type": "dword", + "value": 16808818 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 20.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Demi Lich" + }, + "RESREF": { + "type": "resref", + "value": "zep_demi_lich" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 42.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_dracolich" + }, + "STRREF": { + "type": "dword", + "value": 16808886 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_ghostpirate" + }, + "STRREF": { + "type": "dword", + "value": 16808950 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 8.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_wendigo" + }, + "STRREF": { + "type": "dword", + "value": 16816498 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 201 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 30 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_shade001" + }, + "STRREF": { + "type": "dword", + "value": 16809016 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_shade" + }, + "STRREF": { + "type": "dword", + "value": 16816330 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_vampireshad" + }, + "STRREF": { + "type": "dword", + "value": 16816472 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 2116 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 31 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skelredeyes" + }, + "STRREF": { + "type": "dword", + "value": 16808816 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skelflaming" + }, + "STRREF": { + "type": "dword", + "value": 16808936 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skelpurple" + }, + "STRREF": { + "type": "dword", + "value": 16809152 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skelgreen" + }, + "STRREF": { + "type": "dword", + "value": 16816298 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Restless Dead" + }, + "RESREF": { + "type": "resref", + "value": "zep_skelyellow" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skeldoll2" + }, + "STRREF": { + "type": "dword", + "value": 16816334 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.5 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skeldolls" + }, + "STRREF": { + "type": "dword", + "value": 16816334 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skeldwarf" + }, + "STRREF": { + "type": "dword", + "value": 16816336 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skeldwarf2" + }, + "STRREF": { + "type": "dword", + "value": 16816336 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skelogre" + }, + "STRREF": { + "type": "dword", + "value": 16816338 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skelpir1" + }, + "STRREF": { + "type": "dword", + "value": 16816340 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skelpir2" + }, + "STRREF": { + "type": "dword", + "value": 16816340 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skelpir3" + }, + "STRREF": { + "type": "dword", + "value": 16816340 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skelpir4" + }, + "STRREF": { + "type": "dword", + "value": 16816340 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skelpir5" + }, + "STRREF": { + "type": "dword", + "value": 16816340 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_skelpir6" + }, + "STRREF": { + "type": "dword", + "value": 16816340 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6723 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 32 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_visagegr" + }, + "STRREF": { + "type": "dword", + "value": 16808998 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 8.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_wraith1" + }, + "STRREF": { + "type": "dword", + "value": 16809018 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 8.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_wraith2" + }, + "STRREF": { + "type": "dword", + "value": 16809018 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_visage" + }, + "STRREF": { + "type": "dword", + "value": 16816484 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 2155 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 33 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_zombpir1" + }, + "STRREF": { + "type": "dword", + "value": 16816522 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_zombpir2" + }, + "STRREF": { + "type": "dword", + "value": 16816522 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_zombpir3" + }, + "STRREF": { + "type": "dword", + "value": 16816522 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 4.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_zombpir5" + }, + "STRREF": { + "type": "dword", + "value": 16816522 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6725 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 547 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6693 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 110 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_brownie" + }, + "STRREF": { + "type": "dword", + "value": 16808832 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808681 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 114 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_malekid002" + }, + "STRREF": { + "type": "dword", + "value": 16808820 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_malekid003" + }, + "STRREF": { + "type": "dword", + "value": 16808820 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_malekid004" + }, + "STRREF": { + "type": "dword", + "value": 16808820 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_malekid005" + }, + "STRREF": { + "type": "dword", + "value": 16808820 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_malekid1" + }, + "STRREF": { + "type": "dword", + "value": 16808820 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_femalekid002" + }, + "STRREF": { + "type": "dword", + "value": 16808980 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_femalekid003" + }, + "STRREF": { + "type": "dword", + "value": 16808980 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_femalekid004" + }, + "STRREF": { + "type": "dword", + "value": 16808980 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_femalekid005" + }, + "STRREF": { + "type": "dword", + "value": 16808980 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.25 + }, + "FACTION": { + "type": "cexostring", + "value": "Commoner" + }, + "RESREF": { + "type": "resref", + "value": "zep_femalekid1" + }, + "STRREF": { + "type": "dword", + "value": 16808980 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808680 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 112 + }, + "STRREF": { + "type": "dword", + "value": 16808683 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 38 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 27.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "NAME": { + "type": "cexostring", + "value": "Master Crafter" + }, + "RESREF": { + "type": "resref", + "value": "mastercrafter" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 23 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 39 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_blackrosef" + }, + "STRREF": { + "type": "dword", + "value": 16808898 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_blackrosem" + }, + "STRREF": { + "type": "dword", + "value": 16809166 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 25 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 40 + }, + "STRREF": { + "type": "dword", + "value": 27 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 42 + }, + "STRREF": { + "type": "dword", + "value": 31 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 41 + }, + "STRREF": { + "type": "dword", + "value": 29 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 43 + }, + "STRREF": { + "type": "dword", + "value": 33 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 44 + }, + "STRREF": { + "type": "dword", + "value": 35 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 45 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 3.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "RESREF": { + "type": "resref", + "value": "zep_cleric" + }, + "STRREF": { + "type": "dword", + "value": 16808846 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 8.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "RESREF": { + "type": "resref", + "value": "zep_npcking" + }, + "STRREF": { + "type": "dword", + "value": 16809094 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 201 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 113 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_tieflingf1" + }, + "STRREF": { + "type": "dword", + "value": 16808912 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_tiefling3" + }, + "STRREF": { + "type": "dword", + "value": 16809180 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 7.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_tieflingf2" + }, + "STRREF": { + "type": "dword", + "value": 16816248 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_tieflingm4" + }, + "STRREF": { + "type": "dword", + "value": 16816250 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808684 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 111 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_wemic1" + }, + "STRREF": { + "type": "dword", + "value": 16808914 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_wemicf2" + }, + "STRREF": { + "type": "dword", + "value": 16808914 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_wemic2" + }, + "STRREF": { + "type": "dword", + "value": 16809182 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 5.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "RESREF": { + "type": "resref", + "value": "zep_wemicm2" + }, + "STRREF": { + "type": "dword", + "value": 16809182 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16808682 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6731 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 0 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 55.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "NAME": { + "type": "cexostring", + "value": "Angel" + }, + "RESREF": { + "type": "resref", + "value": "angel003" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 55.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "NAME": { + "type": "cexostring", + "value": "Angel" + }, + "RESREF": { + "type": "resref", + "value": "angel2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1127.0 + }, + "FACTION": { + "type": "cexostring", + "value": "starfall" + }, + "NAME": { + "type": "cexostring", + "value": "Arch Angel Gabriel" + }, + "RESREF": { + "type": "resref", + "value": "starfall2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1755.0 + }, + "FACTION": { + "type": "cexostring", + "value": "starfall" + }, + "NAME": { + "type": "cexostring", + "value": "Arch Angel Starfall" + }, + "RESREF": { + "type": "resref", + "value": "starfall" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.125 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "RESREF": { + "type": "resref", + "value": "zep_armorstand" + }, + "STRREF": { + "type": "dword", + "value": 16808762 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 0.125 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "RESREF": { + "type": "resref", + "value": "zep_armorstandw" + }, + "STRREF": { + "type": "dword", + "value": 16808764 + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 954.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Death" + }, + "NAME": { + "type": "cexostring", + "value": "Death" + }, + "RESREF": { + "type": "resref", + "value": "death2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 55.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "NAME": { + "type": "cexostring", + "value": "Demon" + }, + "RESREF": { + "type": "resref", + "value": "angel004" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 55.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "NAME": { + "type": "cexostring", + "value": "Demon" + }, + "RESREF": { + "type": "resref", + "value": "demon" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 121.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Diablo" + }, + "RESREF": { + "type": "resref", + "value": "diablo" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 56.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "NAME": { + "type": "cexostring", + "value": "Guard" + }, + "RESREF": { + "type": "resref", + "value": "light_love_m001" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1127.0 + }, + "FACTION": { + "type": "cexostring", + "value": "starfall" + }, + "NAME": { + "type": "cexostring", + "value": "Hell Minion" + }, + "RESREF": { + "type": "resref", + "value": "starfall3" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 55.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "NAME": { + "type": "cexostring", + "value": "Khalae the Dark Enchantress" + }, + "RESREF": { + "type": "resref", + "value": "dark_love_f" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 1836.0 + }, + "FACTION": { + "type": "cexostring", + "value": "starfall" + }, + "NAME": { + "type": "cexostring", + "value": "Mephisto" + }, + "RESREF": { + "type": "resref", + "value": "mephisto" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 55.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "NAME": { + "type": "cexostring", + "value": "Nazerae the Scorceress of Light" + }, + "RESREF": { + "type": "resref", + "value": "light_love_f" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 54.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "NAME": { + "type": "cexostring", + "value": "Prince Charming" + }, + "RESREF": { + "type": "resref", + "value": "light_love_m" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 63.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Merchant" + }, + "NAME": { + "type": "cexostring", + "value": "Vorn the Dark Warlock" + }, + "RESREF": { + "type": "resref", + "value": "dark_love_m" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6688 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 1 + }, + "STRREF": { + "type": "dword", + "value": 6689 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 2 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 65.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Baal: Lord of Destruction" + }, + "RESREF": { + "type": "resref", + "value": "lord" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 94.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Baal: Lord of Destruction" + }, + "RESREF": { + "type": "resref", + "value": "notime3" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 38.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Balrog Lord" + }, + "RESREF": { + "type": "resref", + "value": "zep_balrog001" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 448.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Bard Heretic" + }, + "RESREF": { + "type": "resref", + "value": "bard2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 241.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Bard Heretic" + }, + "RESREF": { + "type": "resref", + "value": "palewarrior" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 70.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Dark Archer" + }, + "RESREF": { + "type": "resref", + "value": "darcher" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 34.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Death Wurm" + }, + "RESREF": { + "type": "resref", + "value": "dragon1" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 36.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Doom Reaver" + }, + "RESREF": { + "type": "resref", + "value": "dopple" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 967.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Fallen Disciple" + }, + "RESREF": { + "type": "resref", + "value": "death" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 461.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Kamaji Berserker" + }, + "RESREF": { + "type": "resref", + "value": "zep_marilithb001" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 170.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Lord Lucifer" + }, + "RESREF": { + "type": "resref", + "value": "lucifer" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 369.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Lord Lucifer" + }, + "RESREF": { + "type": "resref", + "value": "notime4" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 73.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Lucifer's Mistress" + }, + "RESREF": { + "type": "resref", + "value": "boss1" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 66.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Lucifer's Mistress" + }, + "RESREF": { + "type": "resref", + "value": "mistress2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 121.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Valdar Dragoon" + }, + "RESREF": { + "type": "resref", + "value": "zep_halfdrafn001" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 48.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "War Demon" + }, + "RESREF": { + "type": "resref", + "value": "zep_pitfiend001" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6690 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 3 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2527.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Arch Angel Tyriel" + }, + "RESREF": { + "type": "resref", + "value": "angel" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 2059.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Arch Angel Tyriel" + }, + "RESREF": { + "type": "resref", + "value": "notime2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 50.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Divine Archer" + }, + "RESREF": { + "type": "resref", + "value": "balrog2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 73.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Divine Archer" + }, + "RESREF": { + "type": "resref", + "value": "div2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 139.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Elk King" + }, + "RESREF": { + "type": "resref", + "value": "boss002" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 35.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Gold Dragon" + }, + "RESREF": { + "type": "resref", + "value": "dragon2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 131.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Guardian Angel" + }, + "RESREF": { + "type": "resref", + "value": "pfiend2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 45.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Horodrim Archmage" + }, + "RESREF": { + "type": "resref", + "value": "dopple001" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 98.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Horodrim Archmage" + }, + "RESREF": { + "type": "resref", + "value": "horod2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 420.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Shiva the Destroyer" + }, + "RESREF": { + "type": "resref", + "value": "beli2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 225.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Shogun Lord" + }, + "RESREF": { + "type": "resref", + "value": "pwar2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 379.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Shogun Lord" + }, + "RESREF": { + "type": "resref", + "value": "pwar3" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 158.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Soul Warrior" + }, + "RESREF": { + "type": "resref", + "value": "hdrag2" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 890.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Thor: God of Thunder" + }, + "RESREF": { + "type": "resref", + "value": "notime1" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 492.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile2" + }, + "NAME": { + "type": "cexostring", + "value": "Thor: God of Thunder" + }, + "RESREF": { + "type": "resref", + "value": "thor" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6691 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 4 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 41.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Defender" + }, + "NAME": { + "type": "cexostring", + "value": "(KH) Blademaster" + }, + "RESREF": { + "type": "resref", + "value": "blade" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 24.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Ancient Red Dragon" + }, + "RESREF": { + "type": "resref", + "value": "ancient_red" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 38.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Axle Steelgrind" + }, + "RESREF": { + "type": "resref", + "value": "steelgrind" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 78.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Bane" + }, + "RESREF": { + "type": "resref", + "value": "bane" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 21.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Damned Cleric" + }, + "RESREF": { + "type": "resref", + "value": "damned_cle" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 36.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Damned Warrior" + }, + "RESREF": { + "type": "resref", + "value": "damned_war" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 33.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Damned Wizard" + }, + "RESREF": { + "type": "resref", + "value": "damned_wiz" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 43.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Darkstarr" + }, + "RESREF": { + "type": "resref", + "value": "darkstarr" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 16.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Hell Wurm" + }, + "RESREF": { + "type": "resref", + "value": "hell_wurm" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 41.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Johnny " + }, + "RESREF": { + "type": "resref", + "value": "johnny" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 32.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Paremus Devil" + }, + "RESREF": { + "type": "resref", + "value": "paremus" + } + }, + { + "__struct_id": 0, + "CR": { + "type": "float", + "value": 37.0 + }, + "FACTION": { + "type": "cexostring", + "value": "Hostile" + }, + "NAME": { + "type": "cexostring", + "value": "Starseeker" + }, + "RESREF": { + "type": "resref", + "value": "starseeker" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6692 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6687 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 46 + }, + "STRREF": { + "type": "dword", + "value": 6732 + } + } + ] + } +} diff --git a/_module/itp/doorpalcus.itp.json b/_module/itp/doorpalcus.itp.json new file mode 100644 index 0000000..6c38da6 --- /dev/null +++ b/_module/itp/doorpalcus.itp.json @@ -0,0 +1,131 @@ +{ + "__data_type": "ITP ", + "MAIN": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 0 + }, + "STRREF": { + "type": "dword", + "value": 6688 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 1 + }, + "STRREF": { + "type": "dword", + "value": 6689 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 2 + }, + "STRREF": { + "type": "dword", + "value": 6690 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 3 + }, + "STRREF": { + "type": "dword", + "value": 6691 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 4 + }, + "STRREF": { + "type": "dword", + "value": 6692 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6687 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 5 + }, + "STRREF": { + "type": "dword", + "value": 6734 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 6 + }, + "STRREF": { + "type": "dword", + "value": 6736 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 7 + }, + "STRREF": { + "type": "dword", + "value": 6737 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 8 + }, + "STRREF": { + "type": "dword", + "value": 6738 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6735 + } + } + ] + } +} diff --git a/_module/itp/encounterpalcus.itp.json b/_module/itp/encounterpalcus.itp.json new file mode 100644 index 0000000..2cd3d64 --- /dev/null +++ b/_module/itp/encounterpalcus.itp.json @@ -0,0 +1,130 @@ +{ + "__data_type": "ITP ", + "MAIN": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 8 + }, + "STRREF": { + "type": "dword", + "value": 5546 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 9 + }, + "STRREF": { + "type": "dword", + "value": 5547 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 6 + }, + "STRREF": { + "type": "dword", + "value": 4817 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 7 + }, + "STRREF": { + "type": "dword", + "value": 5545 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 0 + }, + "STRREF": { + "type": "dword", + "value": 6688 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 1 + }, + "STRREF": { + "type": "dword", + "value": 6689 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 2 + }, + "STRREF": { + "type": "dword", + "value": 6690 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 3 + }, + "STRREF": { + "type": "dword", + "value": 6691 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 4 + }, + "STRREF": { + "type": "dword", + "value": 6692 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6687 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 5 + }, + "STRREF": { + "type": "dword", + "value": 5543 + } + } + ] + } +} diff --git a/_module/itp/itempalcus.itp.json b/_module/itp/itempalcus.itp.json new file mode 100644 index 0000000..c0136d0 --- /dev/null +++ b/_module/itp/itempalcus.itp.json @@ -0,0 +1,23692 @@ +{ + "__data_type": "ITP ", + "MAIN": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 5 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth028" + }, + "STRREF": { + "type": "dword", + "value": 100168 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Adept's Robe" + }, + "RESREF": { + "type": "resref", + "value": "cloth030" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth274" + }, + "STRREF": { + "type": "dword", + "value": 12928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_golemarmor" + }, + "STRREF": { + "type": "dword", + "value": 12928 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Adept's Tunic" + }, + "RESREF": { + "type": "resref", + "value": "cloth275" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_arabian" + }, + "STRREF": { + "type": "dword", + "value": 16807296 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "arch angels robe" + }, + "RESREF": { + "type": "resref", + "value": "cloth010" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Arch Angel's Robe" + }, + "RESREF": { + "type": "resref", + "value": "sequencer002" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_kimono3" + }, + "STRREF": { + "type": "dword", + "value": 16807314 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_003" + }, + "STRREF": { + "type": "dword", + "value": 41242 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Robe" + }, + "RESREF": { + "type": "resref", + "value": "cloth015" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Robe +8" + }, + "RESREF": { + "type": "resref", + "value": "cloth013" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "beckasoutfit" + }, + "STRREF": { + "type": "dword", + "value": 75032 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Blurred Robes of Death" + }, + "RESREF": { + "type": "resref", + "value": "cloth276" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Blurred Robes of Death" + }, + "RESREF": { + "type": "resref", + "value": "cloth277" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_brownieoutf" + }, + "STRREF": { + "type": "dword", + "value": 16807352 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "comcl001" + }, + "STRREF": { + "type": "dword", + "value": 41002 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1_cloth01" + }, + "STRREF": { + "type": "dword", + "value": 24969 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q3ccloth1" + }, + "STRREF": { + "type": "dword", + "value": 24837 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_common" + }, + "STRREF": { + "type": "dword", + "value": 16807382 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_commonw" + }, + "STRREF": { + "type": "dword", + "value": 16807384 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_010" + }, + "STRREF": { + "type": "dword", + "value": 41247 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1a09labrobe" + }, + "STRREF": { + "type": "dword", + "value": 47092 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_monk_robes" + }, + "STRREF": { + "type": "dword", + "value": 108017 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_monk_robes2" + }, + "STRREF": { + "type": "dword", + "value": 108017 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_monk_robes3" + }, + "STRREF": { + "type": "dword", + "value": 108017 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth005" + }, + "STRREF": { + "type": "dword", + "value": 94991 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mcloth006" + }, + "STRREF": { + "type": "dword", + "value": 95070 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "deadarmor" + }, + "STRREF": { + "type": "dword", + "value": 100169 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_deva_robes" + }, + "STRREF": { + "type": "dword", + "value": 107943 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Disciple's Robe" + }, + "RESREF": { + "type": "resref", + "value": "q3_deva_robes001" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_kimono2" + }, + "STRREF": { + "type": "dword", + "value": 16807420 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowdresstwo" + }, + "STRREF": { + "type": "dword", + "value": 95009 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowhandmaidenro" + }, + "STRREF": { + "type": "dword", + "value": 95011 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowhandmaide001" + }, + "STRREF": { + "type": "dword", + "value": 95010 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowpriestessrob" + }, + "STRREF": { + "type": "dword", + "value": 95017 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowpriestess001" + }, + "STRREF": { + "type": "dword", + "value": 95015 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowpriestess002" + }, + "STRREF": { + "type": "dword", + "value": 95016 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowrobes" + }, + "STRREF": { + "type": "dword", + "value": 95018 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_evoker" + }, + "STRREF": { + "type": "dword", + "value": 16807434 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Executioner's Suit" + }, + "RESREF": { + "type": "resref", + "value": "q3_deva_robes002" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth016" + }, + "STRREF": { + "type": "dword", + "value": 100167 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_006" + }, + "STRREF": { + "type": "dword", + "value": 41244 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_009" + }, + "STRREF": { + "type": "dword", + "value": 41244 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth012" + }, + "STRREF": { + "type": "dword", + "value": 63162 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "nw_cloth030" + }, + "STRREF": { + "type": "dword", + "value": 63162 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Fighter's Garb" + }, + "RESREF": { + "type": "resref", + "value": "cloth021" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gown4" + }, + "STRREF": { + "type": "dword", + "value": 16807452 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gown3" + }, + "STRREF": { + "type": "dword", + "value": 16807454 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_foppish" + }, + "STRREF": { + "type": "dword", + "value": 16807456 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_formalkilt" + }, + "STRREF": { + "type": "dword", + "value": 16807458 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mcloth005" + }, + "STRREF": { + "type": "dword", + "value": 109908 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "gatekeepersrobe" + }, + "STRREF": { + "type": "dword", + "value": 95373 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "githzeraistrappi" + }, + "STRREF": { + "type": "dword", + "value": 100173 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mcloth012" + }, + "STRREF": { + "type": "dword", + "value": 83066 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mcloth016" + }, + "STRREF": { + "type": "dword", + "value": 67727 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "sequencer004" + }, + "STRREF": { + "type": "dword", + "value": 91090 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "sequencer005" + }, + "STRREF": { + "type": "dword", + "value": 91090 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "sequencer006" + }, + "STRREF": { + "type": "dword", + "value": 91090 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "sequencer008" + }, + "STRREF": { + "type": "dword", + "value": 91090 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2d_halrobe1" + }, + "STRREF": { + "type": "dword", + "value": 95115 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2d_halrobe2" + }, + "STRREF": { + "type": "dword", + "value": 95115 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "handmaidendress" + }, + "STRREF": { + "type": "dword", + "value": 95033 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Heratic Robe" + }, + "RESREF": { + "type": "resref", + "value": "mcloth011" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth009" + }, + "STRREF": { + "type": "dword", + "value": 83043 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth011" + }, + "STRREF": { + "type": "dword", + "value": 83043 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Horodrim robe" + }, + "RESREF": { + "type": "resref", + "value": "mcloth009" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ilmaterrobe" + }, + "STRREF": { + "type": "dword", + "value": 75048 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "infdrslkf001" + }, + "STRREF": { + "type": "dword", + "value": 95043 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "infdrslkm001" + }, + "STRREF": { + "type": "dword", + "value": 95044 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_005" + }, + "STRREF": { + "type": "dword", + "value": 41243 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_jester" + }, + "STRREF": { + "type": "dword", + "value": 12915 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mcloth002" + }, + "STRREF": { + "type": "dword", + "value": 83065 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "loincloth" + }, + "STRREF": { + "type": "dword", + "value": 100205 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_007" + }, + "STRREF": { + "type": "dword", + "value": 41245 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_012" + }, + "STRREF": { + "type": "dword", + "value": 41245 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_013" + }, + "STRREF": { + "type": "dword", + "value": 41245 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x2vampirecloth" + }, + "STRREF": { + "type": "dword", + "value": 67730 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "qx_monk_robes" + }, + "STRREF": { + "type": "dword", + "value": 109918 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth017" + }, + "STRREF": { + "type": "dword", + "value": 83044 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth020" + }, + "STRREF": { + "type": "dword", + "value": 83044 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth022" + }, + "STRREF": { + "type": "dword", + "value": 83044 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth077" + }, + "STRREF": { + "type": "dword", + "value": 83044 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth078" + }, + "STRREF": { + "type": "dword", + "value": 83044 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth079" + }, + "STRREF": { + "type": "dword", + "value": 83044 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Meph Robe" + }, + "RESREF": { + "type": "resref", + "value": "sequencer010" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Mephisto's Robe" + }, + "RESREF": { + "type": "resref", + "value": "sequencer007" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_002" + }, + "STRREF": { + "type": "dword", + "value": 41241 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_011" + }, + "STRREF": { + "type": "dword", + "value": 41241 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_monk" + }, + "STRREF": { + "type": "dword", + "value": 16807594 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3clothing" + }, + "STRREF": { + "type": "dword", + "value": 79766 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_004" + }, + "STRREF": { + "type": "dword", + "value": 12904 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "nw_cloth100" + }, + "STRREF": { + "type": "dword", + "value": 12904 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gown" + }, + "STRREF": { + "type": "dword", + "value": 16807606 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Pale Habit" + }, + "RESREF": { + "type": "resref", + "value": "mcloth010" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_001" + }, + "STRREF": { + "type": "dword", + "value": 41240 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Pilgrim Habit" + }, + "RESREF": { + "type": "resref", + "value": "comcl002" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pixieoutfit" + }, + "STRREF": { + "type": "dword", + "value": 16807634 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "planetararmor" + }, + "STRREF": { + "type": "dword", + "value": 107978 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_planetouched" + }, + "STRREF": { + "type": "dword", + "value": 16807642 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth008" + }, + "STRREF": { + "type": "dword", + "value": 12908 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2amaeviirrobe1" + }, + "STRREF": { + "type": "dword", + "value": 12908 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "prisonersclothin" + }, + "STRREF": { + "type": "dword", + "value": 95075 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_kimono" + }, + "STRREF": { + "type": "dword", + "value": 16807652 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gown5" + }, + "STRREF": { + "type": "dword", + "value": 16807658 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2d8robe" + }, + "STRREF": { + "type": "dword", + "value": 107993 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Robe" + }, + "RESREF": { + "type": "resref", + "value": "robe" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "qx_balph_robe" + }, + "STRREF": { + "type": "dword", + "value": 109912 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "robeofelem" + }, + "STRREF": { + "type": "dword", + "value": 75197 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mcloth007" + }, + "STRREF": { + "type": "dword", + "value": 79752 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mcloth004" + }, + "STRREF": { + "type": "dword", + "value": 109906 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_015" + }, + "STRREF": { + "type": "dword", + "value": 59543 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth006" + }, + "STRREF": { + "type": "dword", + "value": 94992 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_008" + }, + "STRREF": { + "type": "dword", + "value": 41246 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth029" + }, + "STRREF": { + "type": "dword", + "value": 109881 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2aseerrobe1" + }, + "STRREF": { + "type": "dword", + "value": 107987 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "githzeraistra001" + }, + "STRREF": { + "type": "dword", + "value": 109882 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "sequencer003" + }, + "STRREF": { + "type": "dword", + "value": 91087 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "sequencer009" + }, + "STRREF": { + "type": "dword", + "value": 91087 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mcloth017" + }, + "STRREF": { + "type": "dword", + "value": 79759 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_cloth020" + }, + "STRREF": { + "type": "dword", + "value": 108004 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mcloth015" + }, + "STRREF": { + "type": "dword", + "value": 79754 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_slave" + }, + "STRREF": { + "type": "dword", + "value": 16807684 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth023" + }, + "STRREF": { + "type": "dword", + "value": 75033 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gown003" + }, + "STRREF": { + "type": "dword", + "value": 16807702 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gown2" + }, + "STRREF": { + "type": "dword", + "value": 16807702 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth014" + }, + "STRREF": { + "type": "dword", + "value": 94993 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x2_dreamrobe" + }, + "STRREF": { + "type": "dword", + "value": 108133 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mcloth003" + }, + "STRREF": { + "type": "dword", + "value": 95067 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Thor's robe" + }, + "RESREF": { + "type": "resref", + "value": "cloth019" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth018" + }, + "STRREF": { + "type": "dword", + "value": 83045 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth024" + }, + "STRREF": { + "type": "dword", + "value": 12924 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth031" + }, + "STRREF": { + "type": "dword", + "value": 12924 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_warmonk" + }, + "STRREF": { + "type": "dword", + "value": 16807772 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloth026" + }, + "STRREF": { + "type": "dword", + "value": 12926 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "White Armour" + }, + "RESREF": { + "type": "resref", + "value": "cloth025" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mcloth008" + }, + "STRREF": { + "type": "dword", + "value": 13850 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_wingcloth" + }, + "STRREF": { + "type": "dword", + "value": 108111 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_wingcloth002" + }, + "STRREF": { + "type": "dword", + "value": 108111 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_wingcloth001" + }, + "STRREF": { + "type": "dword", + "value": 108112 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "winterarmor" + }, + "STRREF": { + "type": "dword", + "value": 75200 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_wizardrobe" + }, + "STRREF": { + "type": "dword", + "value": 12906 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_wizardrobe001" + }, + "STRREF": { + "type": "dword", + "value": 12906 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wizrobes" + }, + "STRREF": { + "type": "dword", + "value": 16807778 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_014" + }, + "STRREF": { + "type": "dword", + "value": 41248 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_cloth_016" + }, + "STRREF": { + "type": "dword", + "value": 41248 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 186 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 8 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_illuskpaladi" + }, + "STRREF": { + "type": "dword", + "value": 65567 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_aribeth" + }, + "STRREF": { + "type": "dword", + "value": 16807300 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_ari_armor" + }, + "STRREF": { + "type": "dword", + "value": 100184 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_ari_armor001" + }, + "STRREF": { + "type": "dword", + "value": 100184 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q6aarmor01" + }, + "STRREF": { + "type": "dword", + "value": 26338 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q4armor1" + }, + "STRREF": { + "type": "dword", + "value": 24841 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Armour Of Creator" + }, + "RESREF": { + "type": "resref", + "value": "armor_003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Armour Of Creator" + }, + "RESREF": { + "type": "resref", + "value": "armor_005" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "nw_maarcl019" + }, + "STRREF": { + "type": "dword", + "value": 13721 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_blackarmor" + }, + "STRREF": { + "type": "dword", + "value": 83072 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Blackguard Armor" + }, + "RESREF": { + "type": "resref", + "value": "q2_blackarmor001" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "bloodplate" + }, + "STRREF": { + "type": "dword", + "value": 109879 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "bloodyplate" + }, + "STRREF": { + "type": "dword", + "value": 94986 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Crusader Plate" + }, + "RESREF": { + "type": "resref", + "value": "maarcl051" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Crusader Plate" + }, + "RESREF": { + "type": "resref", + "value": "maarcl052" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cultknightarmor" + }, + "STRREF": { + "type": "dword", + "value": 107944 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Damage Master's Plate" + }, + "RESREF": { + "type": "resref", + "value": "it_adaplate007" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "dark cupids armour" + }, + "RESREF": { + "type": "resref", + "value": "aarcl081" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Dark Plate" + }, + "RESREF": { + "type": "resref", + "value": "maarcl050" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "maarcl081" + }, + "STRREF": { + "type": "dword", + "value": 95065 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_knightarm3" + }, + "STRREF": { + "type": "dword", + "value": 16807422 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_duergplate" + }, + "STRREF": { + "type": "dword", + "value": 95079 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Executioner's Plate " + }, + "RESREF": { + "type": "resref", + "value": "it_adaplate005" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aarcl079" + }, + "STRREF": { + "type": "dword", + "value": 181 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Full Plate" + }, + "RESREF": { + "type": "resref", + "value": "aarcl009" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Full Plate" + }, + "RESREF": { + "type": "resref", + "value": "aarcl017" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Full Plate +8 " + }, + "RESREF": { + "type": "resref", + "value": "it_adaplate001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Full Plate +8 " + }, + "RESREF": { + "type": "resref", + "value": "it_adaplate002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Full Plate of the Master Tactician" + }, + "RESREF": { + "type": "resref", + "value": "armor_004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_goblin" + }, + "STRREF": { + "type": "dword", + "value": 16807476 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aarcl015" + }, + "STRREF": { + "type": "dword", + "value": 12839 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x0_hen_mis_armor" + }, + "STRREF": { + "type": "dword", + "value": 75204 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Heratic Plate" + }, + "RESREF": { + "type": "resref", + "value": "bloodplate001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Heratic Plate " + }, + "RESREF": { + "type": "resref", + "value": "it_adaplate004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1bguardarmor" + }, + "STRREF": { + "type": "dword", + "value": 75081 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Holy Plate" + }, + "RESREF": { + "type": "resref", + "value": "maarcl049" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "infdrpl001" + }, + "STRREF": { + "type": "dword", + "value": 95042 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_knightarmor" + }, + "STRREF": { + "type": "dword", + "value": 16807546 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "maarcl055" + }, + "STRREF": { + "type": "dword", + "value": 100206 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Mage Plate" + }, + "RESREF": { + "type": "resref", + "value": "it_adaplate009" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Mage Robes" + }, + "RESREF": { + "type": "resref", + "value": "it_adaplate010" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_arm_mwfp" + }, + "STRREF": { + "type": "dword", + "value": 16807910 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_arm_mwfp2" + }, + "STRREF": { + "type": "dword", + "value": 16807912 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_arm_mwfp4" + }, + "STRREF": { + "type": "dword", + "value": 16807914 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Matriarch Plate" + }, + "RESREF": { + "type": "resref", + "value": "it_adaplate008" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q7_matronarmo001" + }, + "STRREF": { + "type": "dword", + "value": 95066 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_merkilsplate" + }, + "STRREF": { + "type": "dword", + "value": 108060 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_knightarm6" + }, + "STRREF": { + "type": "dword", + "value": 16807622 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_armor_002" + }, + "STRREF": { + "type": "dword", + "value": 41238 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_armor_003" + }, + "STRREF": { + "type": "dword", + "value": 41238 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "linurobe01" + }, + "STRREF": { + "type": "dword", + "value": 95062 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aarcl012" + }, + "STRREF": { + "type": "dword", + "value": 79639 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "rusticarmor" + }, + "STRREF": { + "type": "dword", + "value": 83100 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Samurai Plate " + }, + "RESREF": { + "type": "resref", + "value": "it_adaplate006" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_goldenarmor" + }, + "STRREF": { + "type": "dword", + "value": 108037 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "maarcl022" + }, + "STRREF": { + "type": "dword", + "value": 107970 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_clothes2" + }, + "STRREF": { + "type": "dword", + "value": 107970 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Steelegrind's Plate" + }, + "RESREF": { + "type": "resref", + "value": "aarcl014" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_knightarm5" + }, + "STRREF": { + "type": "dword", + "value": 16807704 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_knightarm2" + }, + "STRREF": { + "type": "dword", + "value": 16807752 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_knightarm4" + }, + "STRREF": { + "type": "dword", + "value": 16807754 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hen_valplate" + }, + "STRREF": { + "type": "dword", + "value": 107959 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1valientplate" + }, + "STRREF": { + "type": "dword", + "value": 75245 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "war cupids armour" + }, + "RESREF": { + "type": "resref", + "value": "aarcl080" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "war cupids armour3" + }, + "RESREF": { + "type": "resref", + "value": "aarcl082" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "War Plate" + }, + "RESREF": { + "type": "resref", + "value": "it_adaplate003" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 4818 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 9 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_adahelm001" + }, + "STRREF": { + "type": "dword", + "value": 90531 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Black Hood" + }, + "RESREF": { + "type": "resref", + "value": "it_adahelm002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Black Hood" + }, + "RESREF": { + "type": "resref", + "value": "it_adahelm003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_blackhel" + }, + "STRREF": { + "type": "dword", + "value": 83074 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chitinhelm" + }, + "STRREF": { + "type": "dword", + "value": 16807963 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_arhelm002" + }, + "STRREF": { + "type": "dword", + "value": 95047 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Crown of Thorns" + }, + "RESREF": { + "type": "resref", + "value": "helm_005" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cultknighthelmen" + }, + "STRREF": { + "type": "dword", + "value": 107945 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "yj_head" + }, + "STRREF": { + "type": "dword", + "value": 109940 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_disguise" + }, + "STRREF": { + "type": "dword", + "value": 16807408 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ardrowhe003" + }, + "STRREF": { + "type": "dword", + "value": 90449 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_duergarhelm" + }, + "STRREF": { + "type": "dword", + "value": 95078 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_duergarhel001" + }, + "STRREF": { + "type": "dword", + "value": 95077 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2_elkwarhelm" + }, + "STRREF": { + "type": "dword", + "value": 47183 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Eyes of Charming" + }, + "RESREF": { + "type": "resref", + "value": "armhe004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "armhe005" + }, + "STRREF": { + "type": "dword", + "value": 40652 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "armhe006" + }, + "STRREF": { + "type": "dword", + "value": 40652 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "armhe007" + }, + "STRREF": { + "type": "dword", + "value": 40652 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Eyes of Doom" + }, + "RESREF": { + "type": "resref", + "value": "armhe008" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_arhelm004" + }, + "STRREF": { + "type": "dword", + "value": 84264 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Golden Circlet" + }, + "RESREF": { + "type": "resref", + "value": "armhe011" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Helm of Achilles" + }, + "RESREF": { + "type": "resref", + "value": "arhe004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "helmofrighteousn" + }, + "STRREF": { + "type": "dword", + "value": 109886 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_hel_dis" + }, + "STRREF": { + "type": "dword", + "value": 83080 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1bguardhelmet" + }, + "STRREF": { + "type": "dword", + "value": 75083 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "infdrhlm1" + }, + "STRREF": { + "type": "dword", + "value": 95040 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_merkilshelmet" + }, + "STRREF": { + "type": "dword", + "value": 108058 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "arhe007" + }, + "STRREF": { + "type": "dword", + "value": 12847 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "nw_arhe006" + }, + "STRREF": { + "type": "dword", + "value": 12847 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "rustichelmet" + }, + "STRREF": { + "type": "dword", + "value": 83101 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x2_helm_008" + }, + "STRREF": { + "type": "dword", + "value": 95123 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_searinghelmet" + }, + "STRREF": { + "type": "dword", + "value": 108066 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1shadowhelm" + }, + "STRREF": { + "type": "dword", + "value": 75130 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shadowhood" + }, + "STRREF": { + "type": "dword", + "value": 16807676 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_thayvian" + }, + "STRREF": { + "type": "dword", + "value": 16807720 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1valienthelm" + }, + "STRREF": { + "type": "dword", + "value": 75244 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wingedhelm" + }, + "STRREF": { + "type": "dword", + "value": 16807959 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6739 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 6 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aarcl021" + }, + "STRREF": { + "type": "dword", + "value": 24777 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_barbarianfur" + }, + "STRREF": { + "type": "dword", + "value": 16807961 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "bardsbarding" + }, + "STRREF": { + "type": "dword", + "value": 100164 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1chainofstealth" + }, + "STRREF": { + "type": "dword", + "value": 75218 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x0_hen_dorna_ar1" + }, + "STRREF": { + "type": "dword", + "value": 75203 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "infernallthra001" + }, + "STRREF": { + "type": "dword", + "value": 95045 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "infernallthrb001" + }, + "STRREF": { + "type": "dword", + "value": 95046 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x2drowleath3" + }, + "STRREF": { + "type": "dword", + "value": 95137 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "qx_inv_death" + }, + "STRREF": { + "type": "dword", + "value": 109916 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "qx_inv_death001" + }, + "STRREF": { + "type": "dword", + "value": 109916 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "maarcl073" + }, + "STRREF": { + "type": "dword", + "value": 79681 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "robeofleathers" + }, + "STRREF": { + "type": "dword", + "value": 109928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_studdedleath" + }, + "STRREF": { + "type": "dword", + "value": 16807957 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3lightarmor" + }, + "STRREF": { + "type": "dword", + "value": 79780 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "xp2_tomiarmor001" + }, + "STRREF": { + "type": "dword", + "value": 95140 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aarcl010" + }, + "STRREF": { + "type": "dword", + "value": 100163 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 4815 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 7 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aarcl011" + }, + "STRREF": { + "type": "dword", + "value": 24768 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aarcl003" + }, + "STRREF": { + "type": "dword", + "value": 24759 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q6marcarmor" + }, + "STRREF": { + "type": "dword", + "value": 24879 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "c_yhousegrd" + }, + "STRREF": { + "type": "dword", + "value": 24778 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Breastplate" + }, + "RESREF": { + "type": "resref", + "value": "maarcl041" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chainbikini" + }, + "STRREF": { + "type": "dword", + "value": 16807368 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chain" + }, + "STRREF": { + "type": "dword", + "value": 16807394 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_dragon_arm002" + }, + "STRREF": { + "type": "dword", + "value": 13739 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_dragon_arm003" + }, + "STRREF": { + "type": "dword", + "value": 13739 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_dragon_armor" + }, + "STRREF": { + "type": "dword", + "value": 13739 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_druidarmor" + }, + "STRREF": { + "type": "dword", + "value": 16807965 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_duergarchain" + }, + "STRREF": { + "type": "dword", + "value": 95076 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Elite Guard" + }, + "RESREF": { + "type": "resref", + "value": "maarcl017" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Guardian Angel Armour" + }, + "RESREF": { + "type": "resref", + "value": "aarcl013" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2hide" + }, + "STRREF": { + "type": "dword", + "value": 12840 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "infdrchf001" + }, + "STRREF": { + "type": "dword", + "value": 95036 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "infdrchm001" + }, + "STRREF": { + "type": "dword", + "value": 95039 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lamellar" + }, + "STRREF": { + "type": "dword", + "value": 16807955 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_armor_001" + }, + "STRREF": { + "type": "dword", + "value": 41237 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2_armor_004" + }, + "STRREF": { + "type": "dword", + "value": 41239 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "neverwintermilit" + }, + "STRREF": { + "type": "dword", + "value": 95073 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mdrowar025" + }, + "STRREF": { + "type": "dword", + "value": 107973 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3medarmor" + }, + "STRREF": { + "type": "dword", + "value": 79785 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_sabal_armor" + }, + "STRREF": { + "type": "dword", + "value": 108106 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Scale Mail" + }, + "RESREF": { + "type": "resref", + "value": "mdrowar022" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tieflingchn" + }, + "STRREF": { + "type": "dword", + "value": 16807728 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6669 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 58 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aocultistrobe" + }, + "STRREF": { + "type": "dword", + "value": 83039 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "nw9uniform" + }, + "STRREF": { + "type": "dword", + "value": 24978 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q6aarmor1" + }, + "STRREF": { + "type": "dword", + "value": 26339 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ayalasarmor" + }, + "STRREF": { + "type": "dword", + "value": 75031 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2dbluegladrobe" + }, + "STRREF": { + "type": "dword", + "value": 107994 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "burningmanloincl" + }, + "STRREF": { + "type": "dword", + "value": 79644 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q4cloth2" + }, + "STRREF": { + "type": "dword", + "value": 24844 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q0helmite" + }, + "STRREF": { + "type": "dword", + "value": 24767 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q6ahelmite" + }, + "STRREF": { + "type": "dword", + "value": 24767 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "nwuniform" + }, + "STRREF": { + "type": "dword", + "value": 24979 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aarcl016" + }, + "STRREF": { + "type": "dword", + "value": 24772 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1_tyrist" + }, + "STRREF": { + "type": "dword", + "value": 24779 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q0tyrran" + }, + "STRREF": { + "type": "dword", + "value": 26340 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "yj_devil_armor" + }, + "STRREF": { + "type": "dword", + "value": 109939 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowarmor" + }, + "STRREF": { + "type": "dword", + "value": 95005 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowarmor001" + }, + "STRREF": { + "type": "dword", + "value": 95007 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cut20_wiz_armor" + }, + "STRREF": { + "type": "dword", + "value": 95001 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cut20_wiz_armor2" + }, + "STRREF": { + "type": "dword", + "value": 95002 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cut20_wiz_arm001" + }, + "STRREF": { + "type": "dword", + "value": 95000 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "item003" + }, + "STRREF": { + "type": "dword", + "value": 83063 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "golemtatters" + }, + "STRREF": { + "type": "dword", + "value": 107954 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "graybanarmor1" + }, + "STRREF": { + "type": "dword", + "value": 95028 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_creitem148" + }, + "STRREF": { + "type": "dword", + "value": 13144 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "item004" + }, + "STRREF": { + "type": "dword", + "value": 75056 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "lordsrobes" + }, + "STRREF": { + "type": "dword", + "value": 95064 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1gauntlet" + }, + "STRREF": { + "type": "dword", + "value": 63158 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matronarmor" + }, + "STRREF": { + "type": "dword", + "value": 95066 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2dredgladrobe" + }, + "STRREF": { + "type": "dword", + "value": 107998 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2dredgladrobe2" + }, + "STRREF": { + "type": "dword", + "value": 107998 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x0_npc_xan_clo" + }, + "STRREF": { + "type": "dword", + "value": 75208 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6813 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 11 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ashmlw003" + }, + "STRREF": { + "type": "dword", + "value": 109876 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_azershield" + }, + "STRREF": { + "type": "dword", + "value": 16807308 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ashmlw006" + }, + "STRREF": { + "type": "dword", + "value": 109877 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Dimunitive Shield of the Cleric" + }, + "RESREF": { + "type": "resref", + "value": "ashlw007" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "adrowshl005" + }, + "STRREF": { + "type": "dword", + "value": 90446 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Guardian Angel's Shield" + }, + "RESREF": { + "type": "resref", + "value": "ashlw018" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ashlw002" + }, + "STRREF": { + "type": "dword", + "value": 1550 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Miracle Shield of the Holy" + }, + "RESREF": { + "type": "resref", + "value": "ashlw004" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Shield of the Holy Warrior" + }, + "RESREF": { + "type": "resref", + "value": "ashlw005" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Shield of the Wall" + }, + "RESREF": { + "type": "resref", + "value": "ashlw006" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Thor's Shield" + }, + "RESREF": { + "type": "resref", + "value": "ashlw003" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6822 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 10 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_buckler" + }, + "STRREF": { + "type": "dword", + "value": 16807360 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1map_shield" + }, + "STRREF": { + "type": "dword", + "value": 179 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Thor's Shield" + }, + "RESREF": { + "type": "resref", + "value": "ashsw002" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6741 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 12 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dirganswall" + }, + "STRREF": { + "type": "dword", + "value": 16807406 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Exceptionally Crafted Gold Tower Shield" + }, + "RESREF": { + "type": "resref", + "value": "ashto004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x0_hen_mis_shld1" + }, + "STRREF": { + "type": "dword", + "value": 75206 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Shield of the Master Tactician" + }, + "RESREF": { + "type": "resref", + "value": "ashto005" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ashto002" + }, + "STRREF": { + "type": "dword", + "value": 1551 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ashto017" + }, + "STRREF": { + "type": "dword", + "value": 1551 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Tower Shield" + }, + "RESREF": { + "type": "resref", + "value": "ashto003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ashmto005" + }, + "STRREF": { + "type": "dword", + "value": 90465 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ashmto006" + }, + "STRREF": { + "type": "dword", + "value": 90465 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ashmto007" + }, + "STRREF": { + "type": "dword", + "value": 90465 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ashmto008" + }, + "STRREF": { + "type": "dword", + "value": 90465 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Tower Shield of the High Priest" + }, + "RESREF": { + "type": "resref", + "value": "ashto006" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1valientdefend" + }, + "STRREF": { + "type": "dword", + "value": 75241 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6742 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6740 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 335 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 55 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Baals Bite" + }, + "RESREF": { + "type": "resref", + "value": "it_crewps006" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Balrog Bite" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfb004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_bebilc" + }, + "STRREF": { + "type": "dword", + "value": 16807320 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_bite0d1" + }, + "STRREF": { + "type": "dword", + "value": 16807884 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_d10drb" + }, + "STRREF": { + "type": "dword", + "value": 16807324 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_crewps025" + }, + "STRREF": { + "type": "dword", + "value": 13246 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_d4poib" + }, + "STRREF": { + "type": "dword", + "value": 16807326 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_crewps016" + }, + "STRREF": { + "type": "dword", + "value": 13247 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_crewps005" + }, + "STRREF": { + "type": "dword", + "value": 90635 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_bonebb" + }, + "STRREF": { + "type": "dword", + "value": 16807338 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_bugb" + }, + "STRREF": { + "type": "dword", + "value": 16807362 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Death Wurm Bite" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_bugb001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Death Wurm Bite2" + }, + "RESREF": { + "type": "resref", + "value": "it_crewps007" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_beetldb" + }, + "STRREF": { + "type": "dword", + "value": 16807402 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_dspdlb" + }, + "STRREF": { + "type": "dword", + "value": 16807404 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_driderb" + }, + "STRREF": { + "type": "dword", + "value": 16807424 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_hivemfb" + }, + "STRREF": { + "type": "dword", + "value": 16807446 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_fantb" + }, + "STRREF": { + "type": "dword", + "value": 16807448 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_waspb" + }, + "STRREF": { + "type": "dword", + "value": 16807904 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Gold Dragon Bite" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_bugb002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Gold Dragon Bite2" + }, + "RESREF": { + "type": "resref", + "value": "it_crewps008" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "crewphdfbt001" + }, + "STRREF": { + "type": "dword", + "value": 12941 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "crewphdfbt002" + }, + "STRREF": { + "type": "dword", + "value": 12941 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_beetlhb" + }, + "STRREF": { + "type": "dword", + "value": 16807516 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_hivemhb" + }, + "STRREF": { + "type": "dword", + "value": 16807524 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_viperhb" + }, + "STRREF": { + "type": "dword", + "value": 16807526 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_ighoulb" + }, + "STRREF": { + "type": "dword", + "value": 16807528 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_lrgbugb" + }, + "STRREF": { + "type": "dword", + "value": 16807560 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_beetlmb" + }, + "STRREF": { + "type": "dword", + "value": 16807584 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_vipermb" + }, + "STRREF": { + "type": "dword", + "value": 16807586 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_pspdlb" + }, + "STRREF": { + "type": "dword", + "value": 16807626 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfb" + }, + "STRREF": { + "type": "dword", + "value": 16807630 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfb001" + }, + "STRREF": { + "type": "dword", + "value": 16807630 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfb002" + }, + "STRREF": { + "type": "dword", + "value": 16807630 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfb003" + }, + "STRREF": { + "type": "dword", + "value": 16807630 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Render Bite" + }, + "RESREF": { + "type": "resref", + "value": "it_crewps017" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_hivemsb" + }, + "STRREF": { + "type": "dword", + "value": 16807692 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_d6stngb" + }, + "STRREF": { + "type": "dword", + "value": 16807698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_d3stngb" + }, + "STRREF": { + "type": "dword", + "value": 16807700 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_sspdlb" + }, + "STRREF": { + "type": "dword", + "value": 16807710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_thornb" + }, + "STRREF": { + "type": "dword", + "value": 16807722 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_beetltb" + }, + "STRREF": { + "type": "dword", + "value": 16807732 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_hivemtb" + }, + "STRREF": { + "type": "dword", + "value": 16807734 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_vipertb" + }, + "STRREF": { + "type": "dword", + "value": 16807736 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Valar Dragoon Bite" + }, + "RESREF": { + "type": "resref", + "value": "crewphdfbt003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "War Demon Bite" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfb005" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Wurm Bite" + }, + "RESREF": { + "type": "resref", + "value": "it_crewps021" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_xornb" + }, + "STRREF": { + "type": "dword", + "value": 16807780 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6810 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 13 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Baals Claw" + }, + "RESREF": { + "type": "resref", + "value": "it_crewpsp024" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Balrog Claw" + }, + "RESREF": { + "type": "resref", + "value": "it_crewpsp008" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_0d2c" + }, + "STRREF": { + "type": "dword", + "value": 16807374 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_crewpsp015" + }, + "STRREF": { + "type": "dword", + "value": 13261 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_crewpsp016" + }, + "STRREF": { + "type": "dword", + "value": 13261 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_crewpsp006" + }, + "STRREF": { + "type": "dword", + "value": 13265 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_d6massc" + }, + "STRREF": { + "type": "dword", + "value": 16807376 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_d8massc" + }, + "STRREF": { + "type": "dword", + "value": 16807378 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_crewpsp023" + }, + "STRREF": { + "type": "dword", + "value": 13280 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_crewpsp004" + }, + "STRREF": { + "type": "dword", + "value": 90700 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_crewpsp005" + }, + "STRREF": { + "type": "dword", + "value": 90700 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_crewpsp007" + }, + "STRREF": { + "type": "dword", + "value": 90701 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_cornugc" + }, + "STRREF": { + "type": "dword", + "value": 16807386 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Death Wurm Claw" + }, + "RESREF": { + "type": "resref", + "value": "it_crewpsp003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Gold Dragon Claw" + }, + "RESREF": { + "type": "resref", + "value": "it_crewpsp013" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_gcorngc" + }, + "STRREF": { + "type": "dword", + "value": 16807480 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_visag2c" + }, + "STRREF": { + "type": "dword", + "value": 16807490 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "crewphdfcl001" + }, + "STRREF": { + "type": "dword", + "value": 12942 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_ighoulc" + }, + "STRREF": { + "type": "dword", + "value": 16807530 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Lmistress Claw" + }, + "RESREF": { + "type": "resref", + "value": "it_crewpsp011" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Lucifers hand" + }, + "RESREF": { + "type": "resref", + "value": "it_crewpsp012" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Lucifers hand2" + }, + "RESREF": { + "type": "resref", + "value": "it_crewpsp014" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Render Claw" + }, + "RESREF": { + "type": "resref", + "value": "it_crewpsp009" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_twigblc" + }, + "STRREF": { + "type": "dword", + "value": 16807742 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Valdar Claw" + }, + "RESREF": { + "type": "resref", + "value": "crewphdfcl002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Valdar Dragoon" + }, + "RESREF": { + "type": "resref", + "value": "crewphdfcl003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_visagec" + }, + "STRREF": { + "type": "dword", + "value": 16807768 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "War Demon Claw" + }, + "RESREF": { + "type": "resref", + "value": "it_crewpsp010" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Wurm's Claw" + }, + "RESREF": { + "type": "resref", + "value": "it_crewpsp028" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_xornc" + }, + "STRREF": { + "type": "dword", + "value": 16807782 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6744 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 63 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_cornugs" + }, + "STRREF": { + "type": "dword", + "value": 16807390 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_gelugnt" + }, + "STRREF": { + "type": "dword", + "value": 16807464 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_gcorngs" + }, + "STRREF": { + "type": "dword", + "value": 16807484 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Kamaji Sting" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_osyst001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Kamaji Tail" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_cornu002" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_osyst" + }, + "STRREF": { + "type": "dword", + "value": 16807930 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6831 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 59 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_balorsword" + }, + "STRREF": { + "type": "dword", + "value": 13289 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_crewls002" + }, + "STRREF": { + "type": "dword", + "value": 13214 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Debug Great Sword" + }, + "RESREF": { + "type": "resref", + "value": "dbgs" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wdrowls006" + }, + "STRREF": { + "type": "dword", + "value": 91195 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_erinyrp" + }, + "STRREF": { + "type": "dword", + "value": 16807898 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "koboldiceblad001" + }, + "STRREF": { + "type": "dword", + "value": 75062 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "koboldiceblade" + }, + "STRREF": { + "type": "dword", + "value": 75064 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_maugaxe" + }, + "STRREF": { + "type": "dword", + "value": 16807948 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_maugsw" + }, + "STRREF": { + "type": "dword", + "value": 16807946 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_maugpulv" + }, + "STRREF": { + "type": "dword", + "value": 16807918 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_maug2sw" + }, + "STRREF": { + "type": "dword", + "value": 16807920 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_maug2sw1" + }, + "STRREF": { + "type": "dword", + "value": 16807922 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_maugwh4" + }, + "STRREF": { + "type": "dword", + "value": 16807924 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_maugwh5" + }, + "STRREF": { + "type": "dword", + "value": 16807926 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "meph_trident" + }, + "STRREF": { + "type": "dword", + "value": 100208 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_riderarrw" + }, + "STRREF": { + "type": "dword", + "value": 16807696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_crewgx003" + }, + "STRREF": { + "type": "dword", + "value": 83056 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6814 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 14 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_creitemdr006" + }, + "STRREF": { + "type": "dword", + "value": 13160 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Ancient Red Dragon Properties-NoHarms" + }, + "RESREF": { + "type": "resref", + "value": "it_creitemdro004" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Angel Armor" + }, + "RESREF": { + "type": "resref", + "value": "it_creitemdr010" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_arcbugh" + }, + "STRREF": { + "type": "dword", + "value": 16807298 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_plantsk" + }, + "STRREF": { + "type": "dword", + "value": 16807886 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Baals Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_glabr002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Baals Hide2" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_glabr005" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Balrog Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfh002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bard Heratic" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_bbath002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bard Heratic2" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_bbath006" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_barghh" + }, + "STRREF": { + "type": "dword", + "value": 16807316 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_beholdh" + }, + "STRREF": { + "type": "dword", + "value": 16807322 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_bladelh" + }, + "STRREF": { + "type": "dword", + "value": 16807332 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Blademaster's Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_glabr008" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_bbath" + }, + "STRREF": { + "type": "dword", + "value": 16807340 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_bbath001" + }, + "STRREF": { + "type": "dword", + "value": 16807340 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_bskelh" + }, + "STRREF": { + "type": "dword", + "value": 16807366 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_coldelh" + }, + "STRREF": { + "type": "dword", + "value": 16807380 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_cornugh" + }, + "STRREF": { + "type": "dword", + "value": 16807388 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Damned WarriorProperties" + }, + "RESREF": { + "type": "resref", + "value": "it_creitemunh001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Dark Archer Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfh007" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Darkstarrs Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_glabr006" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Death Wurm Hide" + }, + "RESREF": { + "type": "resref", + "value": "it_creitemdra002" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_demilh" + }, + "STRREF": { + "type": "dword", + "value": 16807400 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "devil Properties" + }, + "RESREF": { + "type": "resref", + "value": "it_shadow001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Div Archer Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfh005" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Div Archer Hide2" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfh006" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_doppelh" + }, + "STRREF": { + "type": "dword", + "value": 16807410 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_creitemdra001" + }, + "STRREF": { + "type": "dword", + "value": 13165 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_emgolh" + }, + "STRREF": { + "type": "dword", + "value": 16807892 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_eriny2h" + }, + "STRREF": { + "type": "dword", + "value": 16807430 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_erinyeh" + }, + "STRREF": { + "type": "dword", + "value": 16807430 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_feyrih" + }, + "STRREF": { + "type": "dword", + "value": 16807440 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_frogobh" + }, + "STRREF": { + "type": "dword", + "value": 16807460 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Gatekeeper Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_lolth002" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_gelugnh" + }, + "STRREF": { + "type": "dword", + "value": 16807462 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_glabr001" + }, + "STRREF": { + "type": "dword", + "value": 16807470 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_glabrh" + }, + "STRREF": { + "type": "dword", + "value": 16807470 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Gold Dragon Hide" + }, + "RESREF": { + "type": "resref", + "value": "it_creitemdra003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_groozeh" + }, + "STRREF": { + "type": "dword", + "value": 16807478 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_gcorngh" + }, + "STRREF": { + "type": "dword", + "value": 16807482 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_ghamath" + }, + "STRREF": { + "type": "dword", + "value": 16807486 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_visageh" + }, + "STRREF": { + "type": "dword", + "value": 16807492 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Guard angel Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfh004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_hamath" + }, + "STRREF": { + "type": "dword", + "value": 16807498 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Horodrim Hide" + }, + "RESREF": { + "type": "resref", + "value": "it_creitemdr008" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Horodrim Hide2" + }, + "RESREF": { + "type": "resref", + "value": "it_creitemdr009" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_ighoulh" + }, + "STRREF": { + "type": "dword", + "value": 16807532 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_ikobolh" + }, + "STRREF": { + "type": "dword", + "value": 16807534 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_golems" + }, + "STRREF": { + "type": "dword", + "value": 16807906 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Johnny" + }, + "RESREF": { + "type": "resref", + "value": "it_creitemdrf001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Kamaji Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_maril001" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_lninglh" + }, + "STRREF": { + "type": "dword", + "value": 16807564 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Lmistress Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_lolth001" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_lolthh" + }, + "STRREF": { + "type": "dword", + "value": 16807566 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Lucifers Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_hamat001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Lucifers Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_hamat004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_lupnalh" + }, + "STRREF": { + "type": "dword", + "value": 16807568 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_marilh" + }, + "STRREF": { + "type": "dword", + "value": 16807578 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_maugh" + }, + "STRREF": { + "type": "dword", + "value": 16807916 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_mflayh" + }, + "STRREF": { + "type": "dword", + "value": 16807592 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_myconh" + }, + "STRREF": { + "type": "dword", + "value": 16807596 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_oozeh" + }, + "STRREF": { + "type": "dword", + "value": 16807612 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_osys" + }, + "STRREF": { + "type": "dword", + "value": 16807928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_owlbh" + }, + "STRREF": { + "type": "dword", + "value": 16807620 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfh" + }, + "STRREF": { + "type": "dword", + "value": 16807632 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfh001" + }, + "STRREF": { + "type": "dword", + "value": 16807632 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_planeth" + }, + "STRREF": { + "type": "dword", + "value": 16807638 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Render Hide" + }, + "RESREF": { + "type": "resref", + "value": "it_creitemdr007" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_restlsh" + }, + "STRREF": { + "type": "dword", + "value": 16807654 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_rubgolh" + }, + "STRREF": { + "type": "dword", + "value": 16807932 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_salamh" + }, + "STRREF": { + "type": "dword", + "value": 16807664 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_scarech" + }, + "STRREF": { + "type": "dword", + "value": 16807670 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Shiva Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_maril004" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Shiva Hide2" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_maril005" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Shogun Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_bbath003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Shogun Hide2" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_bbath005" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_shriekh" + }, + "STRREF": { + "type": "dword", + "value": 16807678 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "creitemhd003" + }, + "STRREF": { + "type": "dword", + "value": 12935 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "creitemhd004" + }, + "STRREF": { + "type": "dword", + "value": 12935 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "skele Heratic" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_bbath004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_skelh" + }, + "STRREF": { + "type": "dword", + "value": 16807680 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_snakeh" + }, + "STRREF": { + "type": "dword", + "value": 16807694 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Soul Warr Hide" + }, + "RESREF": { + "type": "resref", + "value": "creitemhd006" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Soul Warr Hide" + }, + "RESREF": { + "type": "resref", + "value": "creitemhd007" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Starseeker" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_glabr009" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Steelgrind's Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_glabr007" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Template Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_cornu001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Thor Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_glabr003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Thor Hide2" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_glabr004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_thornh" + }, + "STRREF": { + "type": "dword", + "value": 16807724 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_twigblh" + }, + "STRREF": { + "type": "dword", + "value": 16807744 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Tyriels Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_hamat002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Tyriels Hide2" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_hamat003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Valdar Dragoon Hide" + }, + "RESREF": { + "type": "resref", + "value": "creitemhd005" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_vecnah" + }, + "STRREF": { + "type": "dword", + "value": 16807756 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_vegeh" + }, + "STRREF": { + "type": "dword", + "value": 16807760 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "War Demon Hide" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_pitfh003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_wendigh" + }, + "STRREF": { + "type": "dword", + "value": 16807774 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_xornh" + }, + "STRREF": { + "type": "dword", + "value": 16807784 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_zombih" + }, + "STRREF": { + "type": "dword", + "value": 16807790 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6809 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 56 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_asnvins" + }, + "STRREF": { + "type": "dword", + "value": 16807888 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_bskels" + }, + "STRREF": { + "type": "dword", + "value": 16807364 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_emgols" + }, + "STRREF": { + "type": "dword", + "value": 16807894 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "GateKeeper Fist" + }, + "RESREF": { + "type": "resref", + "value": "it_crewpb015" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "GateKeeper Fist2" + }, + "RESREF": { + "type": "resref", + "value": "it_crewpb016" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_ghamatc" + }, + "STRREF": { + "type": "dword", + "value": 16807488 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_hamatc" + }, + "STRREF": { + "type": "dword", + "value": 16807500 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_firelhs" + }, + "STRREF": { + "type": "dword", + "value": 16807518 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_icelhs" + }, + "STRREF": { + "type": "dword", + "value": 16807520 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_lninghs" + }, + "STRREF": { + "type": "dword", + "value": 16807522 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_illithb" + }, + "STRREF": { + "type": "dword", + "value": 16807536 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_crygols" + }, + "STRREF": { + "type": "dword", + "value": 16807908 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Kamaj Tail" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_maril003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_coldlls" + }, + "STRREF": { + "type": "dword", + "value": 16807554 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_firells" + }, + "STRREF": { + "type": "dword", + "value": 16807556 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_lningls" + }, + "STRREF": { + "type": "dword", + "value": 16807558 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Lucifer's Fork" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_asnvi001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Lucifer's Fork2" + }, + "RESREF": { + "type": "resref", + "value": "zep_cre_asnvi002" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_mskels" + }, + "STRREF": { + "type": "dword", + "value": 16807574 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_ooze1s" + }, + "STRREF": { + "type": "dword", + "value": 16807614 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_ooze2s" + }, + "STRREF": { + "type": "dword", + "value": 16807616 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_ooze3s" + }, + "STRREF": { + "type": "dword", + "value": 16807618 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_poisdc" + }, + "STRREF": { + "type": "dword", + "value": 16807646 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_restdc" + }, + "STRREF": { + "type": "dword", + "value": 16807656 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_rubgols" + }, + "STRREF": { + "type": "dword", + "value": 16807934 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_salams" + }, + "STRREF": { + "type": "dword", + "value": 16807666 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_scarecs" + }, + "STRREF": { + "type": "dword", + "value": 16807672 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_mycons" + }, + "STRREF": { + "type": "dword", + "value": 16807682 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_coldlss" + }, + "STRREF": { + "type": "dword", + "value": 16807686 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_firelss" + }, + "STRREF": { + "type": "dword", + "value": 16807688 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_lningss" + }, + "STRREF": { + "type": "dword", + "value": 16807690 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_maril002" + }, + "STRREF": { + "type": "dword", + "value": 16807712 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_marils" + }, + "STRREF": { + "type": "dword", + "value": 16807712 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_thorns" + }, + "STRREF": { + "type": "dword", + "value": 16807726 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_vecnas" + }, + "STRREF": { + "type": "dword", + "value": 16807758 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6811 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6743 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 60 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3c_journarwyl" + }, + "STRREF": { + "type": "dword", + "value": 47195 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bard Heretic" + }, + "RESREF": { + "type": "resref", + "value": "champ001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Pilgrim" + }, + "RESREF": { + "type": "resref", + "value": "bpilgrim" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6d_bloodwar" + }, + "STRREF": { + "type": "dword", + "value": 60289 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_book" + }, + "STRREF": { + "type": "dword", + "value": 16807890 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_brun" + }, + "STRREF": { + "type": "dword", + "value": 60994 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "burnedbook" + }, + "STRREF": { + "type": "dword", + "value": 107941 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Champion" + }, + "RESREF": { + "type": "resref", + "value": "champ" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3g_cultjourn" + }, + "STRREF": { + "type": "dword", + "value": 41174 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3_cultjournal1" + }, + "STRREF": { + "type": "dword", + "value": 65755 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3_cultjournal2" + }, + "STRREF": { + "type": "dword", + "value": 65755 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3_cultjournal3" + }, + "STRREF": { + "type": "dword", + "value": 65755 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Damage Master" + }, + "RESREF": { + "type": "resref", + "value": "damagemaster" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Dark Disciple" + }, + "RESREF": { + "type": "resref", + "value": "darkdisciple" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1trialbook" + }, + "STRREF": { + "type": "dword", + "value": 47101 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Doom Guard" + }, + "RESREF": { + "type": "resref", + "value": "sguard" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Dragoon" + }, + "RESREF": { + "type": "resref", + "value": "dragoon" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q5book3" + }, + "STRREF": { + "type": "dword", + "value": 24855 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q01idyddjour" + }, + "STRREF": { + "type": "dword", + "value": 41009 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3kexpjourn" + }, + "STRREF": { + "type": "dword", + "value": 65217 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Fighter Elite" + }, + "RESREF": { + "type": "resref", + "value": "fighterelite" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q5cultjrnl" + }, + "STRREF": { + "type": "dword", + "value": 41218 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Grand Master" + }, + "RESREF": { + "type": "resref", + "value": "grandmaster" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q5book1" + }, + "STRREF": { + "type": "dword", + "value": 24851 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1book" + }, + "STRREF": { + "type": "dword", + "value": 24906 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3c_journhodd" + }, + "STRREF": { + "type": "dword", + "value": 47196 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Holy Fighter" + }, + "RESREF": { + "type": "resref", + "value": "holyfighter" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2c05_journal" + }, + "STRREF": { + "type": "dword", + "value": 47124 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_lvl3labnote" + }, + "STRREF": { + "type": "dword", + "value": 65571 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q01timaskdeath" + }, + "STRREF": { + "type": "dword", + "value": 41015 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q01timaskfire" + }, + "STRREF": { + "type": "dword", + "value": 41017 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q01timaskice" + }, + "STRREF": { + "type": "dword", + "value": 41019 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q01timasklife" + }, + "STRREF": { + "type": "dword", + "value": 41021 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q01timaskreson" + }, + "STRREF": { + "type": "dword", + "value": 41023 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q5book2" + }, + "STRREF": { + "type": "dword", + "value": 24853 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q5book4" + }, + "STRREF": { + "type": "dword", + "value": 24857 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2d_book_1" + }, + "STRREF": { + "type": "dword", + "value": 47129 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2d_book_3" + }, + "STRREF": { + "type": "dword", + "value": 47133 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2d_book_2" + }, + "STRREF": { + "type": "dword", + "value": 47131 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_jnahjournal" + }, + "STRREF": { + "type": "dword", + "value": 75176 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "journal" + }, + "STRREF": { + "type": "dword", + "value": 75057 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q5xkarfrag" + }, + "STRREF": { + "type": "dword", + "value": 41233 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6e_gethjournal" + }, + "STRREF": { + "type": "dword", + "value": 60292 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_book005" + }, + "STRREF": { + "type": "dword", + "value": 24789 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q3ameldjournal" + }, + "STRREF": { + "type": "dword", + "value": 24831 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_labnote002" + }, + "STRREF": { + "type": "dword", + "value": 108049 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_labnote003" + }, + "STRREF": { + "type": "dword", + "value": 108049 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_labnote004" + }, + "STRREF": { + "type": "dword", + "value": 108049 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_labnote01" + }, + "STRREF": { + "type": "dword", + "value": 108049 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_book002" + }, + "STRREF": { + "type": "dword", + "value": 24783 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_matronletter" + }, + "STRREF": { + "type": "dword", + "value": 108013 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_dictionary" + }, + "STRREF": { + "type": "dword", + "value": 108034 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Lore Guardian" + }, + "RESREF": { + "type": "resref", + "value": "lguard" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "magicsofgolemenh" + }, + "STRREF": { + "type": "dword", + "value": 107971 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_tymo_book" + }, + "STRREF": { + "type": "dword", + "value": 75181 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Pale Defender" + }, + "RESREF": { + "type": "resref", + "value": "paledef" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Pale Monk" + }, + "RESREF": { + "type": "resref", + "value": "palemonk" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "nw_it_book032" + }, + "STRREF": { + "type": "dword", + "value": 13043 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_book003" + }, + "STRREF": { + "type": "dword", + "value": 24785 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_book004" + }, + "STRREF": { + "type": "dword", + "value": 24787 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q1_marrokbook" + }, + "STRREF": { + "type": "dword", + "value": 66112 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2gjrnrelmar" + }, + "STRREF": { + "type": "dword", + "value": 41148 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "scripturesofthec" + }, + "STRREF": { + "type": "dword", + "value": 108122 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "alchemicaltreati" + }, + "STRREF": { + "type": "dword", + "value": 75025 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "theguardianguide" + }, + "STRREF": { + "type": "dword", + "value": 108128 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_book001" + }, + "STRREF": { + "type": "dword", + "value": 24781 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1itkarjourn" + }, + "STRREF": { + "type": "dword", + "value": 41085 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3rustybook" + }, + "STRREF": { + "type": "dword", + "value": 75172 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_dracohint" + }, + "STRREF": { + "type": "dword", + "value": 108007 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1tomeofknow" + }, + "STRREF": { + "type": "dword", + "value": 75236 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3itjournhero" + }, + "STRREF": { + "type": "dword", + "value": 66853 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2ittreatspiri" + }, + "STRREF": { + "type": "dword", + "value": 41158 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_vampirehint" + }, + "STRREF": { + "type": "dword", + "value": 108025 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3iwanevbedjou" + }, + "STRREF": { + "type": "dword", + "value": 41188 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3iwanevcook" + }, + "STRREF": { + "type": "dword", + "value": 41190 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3iwanevlabjou" + }, + "STRREF": { + "type": "dword", + "value": 41194 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "White Knight" + }, + "RESREF": { + "type": "resref", + "value": "wnite" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "bookoflegends" + }, + "STRREF": { + "type": "dword", + "value": 94987 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6815 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 16 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Aqua - Belt" + }, + "RESREF": { + "type": "resref", + "value": "it_mbelt017" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_calianbelt" + }, + "STRREF": { + "type": "dword", + "value": 83088 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Ceremonial Uthgardt Chiefs Belt" + }, + "RESREF": { + "type": "resref", + "value": "it_mbelt004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "sashofsearing" + }, + "STRREF": { + "type": "dword", + "value": 109930 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6745 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 15 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Boots of Crippling Speed" + }, + "RESREF": { + "type": "resref", + "value": "it_mboots021" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mboots003" + }, + "STRREF": { + "type": "dword", + "value": 13337 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mboots005" + }, + "STRREF": { + "type": "dword", + "value": 13337 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mboots007" + }, + "STRREF": { + "type": "dword", + "value": 13337 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mboots024" + }, + "STRREF": { + "type": "dword", + "value": 67780 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Boots of Hardiness +4" + }, + "RESREF": { + "type": "resref", + "value": "it_mboots020" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mboots012" + }, + "STRREF": { + "type": "dword", + "value": 56611 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mboots004" + }, + "STRREF": { + "type": "dword", + "value": 107966 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Speed Boots" + }, + "RESREF": { + "type": "resref", + "value": "it_mboots018" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Speed Boots" + }, + "RESREF": { + "type": "resref", + "value": "it_mboots019" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 1520 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 17 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "xan_bracer" + }, + "STRREF": { + "type": "dword", + "value": 75247 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6746 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 18 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloakofao" + }, + "STRREF": { + "type": "dword", + "value": 83040 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1ascalhorn" + }, + "STRREF": { + "type": "dword", + "value": 75215 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x2cloakbedazzle" + }, + "STRREF": { + "type": "dword", + "value": 95132 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mcloak007" + }, + "STRREF": { + "type": "dword", + "value": 90864 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cloakofthesentry" + }, + "STRREF": { + "type": "dword", + "value": 94989 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Debugger Cloak" + }, + "RESREF": { + "type": "resref", + "value": "cloakofao001" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_drowcl003" + }, + "STRREF": { + "type": "dword", + "value": 90751 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Mantle of Evocation" + }, + "RESREF": { + "type": "resref", + "value": "it_mcloak004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s3cloak" + }, + "STRREF": { + "type": "dword", + "value": 24953 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aarcl008" + }, + "STRREF": { + "type": "dword", + "value": 24764 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_worg_cloak" + }, + "STRREF": { + "type": "dword", + "value": 109899 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "shroudofkings" + }, + "STRREF": { + "type": "dword", + "value": 100232 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1szarencloak" + }, + "STRREF": { + "type": "dword", + "value": 75134 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6747 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 100 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_crystalball" + }, + "STRREF": { + "type": "dword", + "value": 16807392 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fan" + }, + "STRREF": { + "type": "dword", + "value": 16807438 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_papoose" + }, + "STRREF": { + "type": "dword", + "value": 16807624 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_umbrella" + }, + "STRREF": { + "type": "dword", + "value": 16807746 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16807260 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 19 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Angel Gloves" + }, + "RESREF": { + "type": "resref", + "value": "it_mglove015" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Angel Gloves" + }, + "RESREF": { + "type": "resref", + "value": "it_mglove017" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Angel Gloves" + }, + "RESREF": { + "type": "resref", + "value": "it_mglove019" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_monk_gloves" + }, + "STRREF": { + "type": "dword", + "value": 108015 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_monk_gloves2" + }, + "STRREF": { + "type": "dword", + "value": 108016 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_monk_gloves3" + }, + "STRREF": { + "type": "dword", + "value": 108016 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_monk_gloves4" + }, + "STRREF": { + "type": "dword", + "value": 108016 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1fistofthenorth" + }, + "STRREF": { + "type": "dword", + "value": 75223 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Gauntlet of Fury" + }, + "RESREF": { + "type": "resref", + "value": "it_mglove007" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Gauntlet of The High Ogre" + }, + "RESREF": { + "type": "resref", + "value": "it_mglove006" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "gauntletsofbondi" + }, + "STRREF": { + "type": "dword", + "value": 95027 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mglove009" + }, + "STRREF": { + "type": "dword", + "value": 56623 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Greater Gauntlets of Ogre Power" + }, + "RESREF": { + "type": "resref", + "value": "it_mbracer014" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Monk's Gloves +7" + }, + "RESREF": { + "type": "resref", + "value": "it_mglove008" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 1530 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 186 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 64 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x2_it_bebpoison" + }, + "STRREF": { + "type": "dword", + "value": 108135 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Beige" + }, + "RESREF": { + "type": "resref", + "value": "dyec10" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Black" + }, + "RESREF": { + "type": "resref", + "value": "dyec45" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Blue" + }, + "RESREF": { + "type": "resref", + "value": "dyec27" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Bright Copper" + }, + "RESREF": { + "type": "resref", + "value": "dyec59" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Bright Orange" + }, + "RESREF": { + "type": "resref", + "value": "dyec58" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Brown" + }, + "RESREF": { + "type": "resref", + "value": "dyec02" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Burnt Orange" + }, + "RESREF": { + "type": "resref", + "value": "dyec35" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Cerulean" + }, + "RESREF": { + "type": "resref", + "value": "dyec26" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Dark Beige" + }, + "RESREF": { + "type": "resref", + "value": "dyec11" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Dark Brown" + }, + "RESREF": { + "type": "resref", + "value": "dyec03" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Dark Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyec23" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Dark Olive" + }, + "RESREF": { + "type": "resref", + "value": "dyec19" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Dark Tan" + }, + "RESREF": { + "type": "resref", + "value": "dyec07" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Dark Taupe" + }, + "RESREF": { + "type": "resref", + "value": "dyec15" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Forest Green" + }, + "RESREF": { + "type": "resref", + "value": "dyec31" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Fuchsia" + }, + "RESREF": { + "type": "resref", + "value": "dyec39" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Goldenrod" + }, + "RESREF": { + "type": "resref", + "value": "dyec33" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Green" + }, + "RESREF": { + "type": "resref", + "value": "dyec30" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyec22" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Indigo" + }, + "RESREF": { + "type": "resref", + "value": "dyec43" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Lavender" + }, + "RESREF": { + "type": "resref", + "value": "dyec42" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Light Beige" + }, + "RESREF": { + "type": "resref", + "value": "dyec09" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Light Brown" + }, + "RESREF": { + "type": "resref", + "value": "dyec01" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Light Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyec21" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Light Olive" + }, + "RESREF": { + "type": "resref", + "value": "dyec17" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Light Red" + }, + "RESREF": { + "type": "resref", + "value": "dyec36" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Light Tan" + }, + "RESREF": { + "type": "resref", + "value": "dyec05" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Light Taupe" + }, + "RESREF": { + "type": "resref", + "value": "dyec13" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Lightest Beige" + }, + "RESREF": { + "type": "resref", + "value": "dyec08" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Lightest Brown" + }, + "RESREF": { + "type": "resref", + "value": "dyec00" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Lightest Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyec20" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Lightest Olive" + }, + "RESREF": { + "type": "resref", + "value": "dyec16" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Lightest Tan" + }, + "RESREF": { + "type": "resref", + "value": "dyec04" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Lightest Taupe" + }, + "RESREF": { + "type": "resref", + "value": "dyec12" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Navy" + }, + "RESREF": { + "type": "resref", + "value": "dyec25" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Obsidian" + }, + "RESREF": { + "type": "resref", + "value": "dyec57" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Olive" + }, + "RESREF": { + "type": "resref", + "value": "dyec18" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Orange" + }, + "RESREF": { + "type": "resref", + "value": "dyec34" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Orchid" + }, + "RESREF": { + "type": "resref", + "value": "dyec40" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Pink" + }, + "RESREF": { + "type": "resref", + "value": "dyec38" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Pure Black" + }, + "RESREF": { + "type": "resref", + "value": "dyec63" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Pure White" + }, + "RESREF": { + "type": "resref", + "value": "dyec62" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Purple" + }, + "RESREF": { + "type": "resref", + "value": "dyec41" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Red" + }, + "RESREF": { + "type": "resref", + "value": "dyec37" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Reflective" + }, + "RESREF": { + "type": "resref", + "value": "dyec61" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Shiny Blue" + }, + "RESREF": { + "type": "resref", + "value": "dyec47" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Shiny Burnt Orange" + }, + "RESREF": { + "type": "resref", + "value": "dyec51" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Shiny Forest Green" + }, + "RESREF": { + "type": "resref", + "value": "dyec49" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Shiny Fuchsia" + }, + "RESREF": { + "type": "resref", + "value": "dyec53" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Shiny Goldenrod" + }, + "RESREF": { + "type": "resref", + "value": "dyec50" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Shiny Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyec60" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Shiny Indigo" + }, + "RESREF": { + "type": "resref", + "value": "dyec55" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Shiny Navy" + }, + "RESREF": { + "type": "resref", + "value": "dyec46" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Shiny Purple" + }, + "RESREF": { + "type": "resref", + "value": "dyec54" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Shiny Red" + }, + "RESREF": { + "type": "resref", + "value": "dyec52" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Shiny Teal" + }, + "RESREF": { + "type": "resref", + "value": "dyec48" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Silver" + }, + "RESREF": { + "type": "resref", + "value": "dyec56" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Slate" + }, + "RESREF": { + "type": "resref", + "value": "dyec24" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Tan" + }, + "RESREF": { + "type": "resref", + "value": "dyec06" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Taupe" + }, + "RESREF": { + "type": "resref", + "value": "dyec14" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Teal" + }, + "RESREF": { + "type": "resref", + "value": "dyec29" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Turquoise" + }, + "RESREF": { + "type": "resref", + "value": "dyec28" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, White" + }, + "RESREF": { + "type": "resref", + "value": "dyec44" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cloth Dye, Yellow" + }, + "RESREF": { + "type": "resref", + "value": "dyec32" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Beige" + }, + "RESREF": { + "type": "resref", + "value": "dyel10" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Black" + }, + "RESREF": { + "type": "resref", + "value": "dyel45" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Blue" + }, + "RESREF": { + "type": "resref", + "value": "dyel27" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Bright Copper" + }, + "RESREF": { + "type": "resref", + "value": "dyel59" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Bright Orange" + }, + "RESREF": { + "type": "resref", + "value": "dyel58" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Brown" + }, + "RESREF": { + "type": "resref", + "value": "dyel02" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Burnt Orange" + }, + "RESREF": { + "type": "resref", + "value": "dyel35" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Cerulean" + }, + "RESREF": { + "type": "resref", + "value": "dyel26" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Dark Beige" + }, + "RESREF": { + "type": "resref", + "value": "dyel11" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Dark Brown" + }, + "RESREF": { + "type": "resref", + "value": "dyel03" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Dark Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyel23" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Dark Olive" + }, + "RESREF": { + "type": "resref", + "value": "dyel19" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Dark Tan" + }, + "RESREF": { + "type": "resref", + "value": "dyel07" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Dark Taupe" + }, + "RESREF": { + "type": "resref", + "value": "dyel15" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Forest Green" + }, + "RESREF": { + "type": "resref", + "value": "dyel31" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Fuchsia" + }, + "RESREF": { + "type": "resref", + "value": "dyel39" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Goldenrod" + }, + "RESREF": { + "type": "resref", + "value": "dyel33" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Green" + }, + "RESREF": { + "type": "resref", + "value": "dyel30" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyel22" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Indigo" + }, + "RESREF": { + "type": "resref", + "value": "dyel43" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Lavender" + }, + "RESREF": { + "type": "resref", + "value": "dyel42" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Light Beige" + }, + "RESREF": { + "type": "resref", + "value": "dyel09" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Light Brown" + }, + "RESREF": { + "type": "resref", + "value": "dyel01" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Light Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyel21" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Light Olive" + }, + "RESREF": { + "type": "resref", + "value": "dyel17" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Light Red" + }, + "RESREF": { + "type": "resref", + "value": "dyel36" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Light Tan" + }, + "RESREF": { + "type": "resref", + "value": "dyel05" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Light Taupe" + }, + "RESREF": { + "type": "resref", + "value": "dyel13" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Lightest Beige" + }, + "RESREF": { + "type": "resref", + "value": "dyel08" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Lightest Brown" + }, + "RESREF": { + "type": "resref", + "value": "dyel00" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Lightest Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyel20" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Lightest Olive" + }, + "RESREF": { + "type": "resref", + "value": "dyel16" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Lightest Tan" + }, + "RESREF": { + "type": "resref", + "value": "dyel04" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Lightest Taupe" + }, + "RESREF": { + "type": "resref", + "value": "dyel12" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Navy" + }, + "RESREF": { + "type": "resref", + "value": "dyel25" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Obsidian" + }, + "RESREF": { + "type": "resref", + "value": "dyel57" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Olive" + }, + "RESREF": { + "type": "resref", + "value": "dyel18" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Orange" + }, + "RESREF": { + "type": "resref", + "value": "dyel34" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Orchid" + }, + "RESREF": { + "type": "resref", + "value": "dyel40" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Pink" + }, + "RESREF": { + "type": "resref", + "value": "dyel38" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Pure Black" + }, + "RESREF": { + "type": "resref", + "value": "dyel63" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Pure White" + }, + "RESREF": { + "type": "resref", + "value": "dyel62" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Purple" + }, + "RESREF": { + "type": "resref", + "value": "dyel41" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Red" + }, + "RESREF": { + "type": "resref", + "value": "dyel37" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Reflective" + }, + "RESREF": { + "type": "resref", + "value": "dyel61" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Shiny Blue" + }, + "RESREF": { + "type": "resref", + "value": "dyel47" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Shiny Burnt Orange" + }, + "RESREF": { + "type": "resref", + "value": "dyel51" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Shiny Forest Green" + }, + "RESREF": { + "type": "resref", + "value": "dyel49" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Shiny Fuchsia" + }, + "RESREF": { + "type": "resref", + "value": "dyel53" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Shiny Goldenrod" + }, + "RESREF": { + "type": "resref", + "value": "dyel50" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Shiny Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyel60" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Shiny Indigo" + }, + "RESREF": { + "type": "resref", + "value": "dyel55" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Shiny Navy" + }, + "RESREF": { + "type": "resref", + "value": "dyel46" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Shiny Purple" + }, + "RESREF": { + "type": "resref", + "value": "dyel54" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Shiny Red" + }, + "RESREF": { + "type": "resref", + "value": "dyel52" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Shiny Teal" + }, + "RESREF": { + "type": "resref", + "value": "dyel48" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Silver" + }, + "RESREF": { + "type": "resref", + "value": "dyel56" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Slate" + }, + "RESREF": { + "type": "resref", + "value": "dyel24" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Tan" + }, + "RESREF": { + "type": "resref", + "value": "dyel06" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Taupe" + }, + "RESREF": { + "type": "resref", + "value": "dyel014" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Teal" + }, + "RESREF": { + "type": "resref", + "value": "dyel29" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Turquoise" + }, + "RESREF": { + "type": "resref", + "value": "dyel28" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, White" + }, + "RESREF": { + "type": "resref", + "value": "dyel44" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Leather Dye, Yellow" + }, + "RESREF": { + "type": "resref", + "value": "dyel32" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Black" + }, + "RESREF": { + "type": "resref", + "value": "dyem07" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Blue" + }, + "RESREF": { + "type": "resref", + "value": "dyem32" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Bright Copper" + }, + "RESREF": { + "type": "resref", + "value": "dyem20" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Bright Gold" + }, + "RESREF": { + "type": "resref", + "value": "dyem12" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Bright Orange" + }, + "RESREF": { + "type": "resref", + "value": "dyem16" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Bright Yellow" + }, + "RESREF": { + "type": "resref", + "value": "dyem08" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Copper" + }, + "RESREF": { + "type": "resref", + "value": "dyem21" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Dark Copper" + }, + "RESREF": { + "type": "resref", + "value": "dyem23" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Dark Gold" + }, + "RESREF": { + "type": "resref", + "value": "dyem15" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Dark Green" + }, + "RESREF": { + "type": "resref", + "value": "dyem41" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Dark Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyem06" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Dark Mottled Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyem55" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Dark Mottled Rust" + }, + "RESREF": { + "type": "resref", + "value": "dyem53" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Dark Orange" + }, + "RESREF": { + "type": "resref", + "value": "dyem19" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Dark Purple" + }, + "RESREF": { + "type": "resref", + "value": "dyem29" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Dark Rust" + }, + "RESREF": { + "type": "resref", + "value": "dyem52" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Dark Steel" + }, + "RESREF": { + "type": "resref", + "value": "dyem02" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Dark Yellow" + }, + "RESREF": { + "type": "resref", + "value": "dyem11" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Deep Green" + }, + "RESREF": { + "type": "resref", + "value": "dyem43" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Forest Green" + }, + "RESREF": { + "type": "resref", + "value": "dyem45" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Gold" + }, + "RESREF": { + "type": "resref", + "value": "dyem13" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Green" + }, + "RESREF": { + "type": "resref", + "value": "dyem40" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyem05" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Jungle Green" + }, + "RESREF": { + "type": "resref", + "value": "dyem47" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Lavender" + }, + "RESREF": { + "type": "resref", + "value": "dyem30" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Light Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyem04" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Light Rust" + }, + "RESREF": { + "type": "resref", + "value": "dyem50" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Lime Green" + }, + "RESREF": { + "type": "resref", + "value": "dyem44" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Maroon" + }, + "RESREF": { + "type": "resref", + "value": "dyem25" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Mottled Grey" + }, + "RESREF": { + "type": "resref", + "value": "dyem54" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Mottled Rust" + }, + "RESREF": { + "type": "resref", + "value": "dyem51" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Blue" + }, + "RESREF": { + "type": "resref", + "value": "dyem34" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Copper" + }, + "RESREF": { + "type": "resref", + "value": "dyem22" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Gold" + }, + "RESREF": { + "type": "resref", + "value": "dyem14" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Green" + }, + "RESREF": { + "type": "resref", + "value": "dyem42" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Lavender" + }, + "RESREF": { + "type": "resref", + "value": "dyem31" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Maroon" + }, + "RESREF": { + "type": "resref", + "value": "dyem27" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Navy" + }, + "RESREF": { + "type": "resref", + "value": "dyem35" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Orange" + }, + "RESREF": { + "type": "resref", + "value": "dyem18" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Rainbow" + }, + "RESREF": { + "type": "resref", + "value": "dyem49" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Red" + }, + "RESREF": { + "type": "resref", + "value": "dyem26" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Teal" + }, + "RESREF": { + "type": "resref", + "value": "dyem39" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Turquoise" + }, + "RESREF": { + "type": "resref", + "value": "dyem38" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Muted Yellow" + }, + "RESREF": { + "type": "resref", + "value": "dyem10" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Navy" + }, + "RESREF": { + "type": "resref", + "value": "dyem33" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Obsidian" + }, + "RESREF": { + "type": "resref", + "value": "dyem03" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Orange" + }, + "RESREF": { + "type": "resref", + "value": "dyem17" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Pale Green" + }, + "RESREF": { + "type": "resref", + "value": "dyem46" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Pure Black" + }, + "RESREF": { + "type": "resref", + "value": "dyem63" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Pure White" + }, + "RESREF": { + "type": "resref", + "value": "dyem62" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Purple" + }, + "RESREF": { + "type": "resref", + "value": "dyem28" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Rainbow" + }, + "RESREF": { + "type": "resref", + "value": "dyem48" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Red" + }, + "RESREF": { + "type": "resref", + "value": "dyem24" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Reflective" + }, + "RESREF": { + "type": "resref", + "value": "dyem61" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Shiny Black" + }, + "RESREF": { + "type": "resref", + "value": "dyem60" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Silver" + }, + "RESREF": { + "type": "resref", + "value": "dyem00" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Steel" + }, + "RESREF": { + "type": "resref", + "value": "dyem01" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Teal" + }, + "RESREF": { + "type": "resref", + "value": "dyem37" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Turquoise" + }, + "RESREF": { + "type": "resref", + "value": "dyem36" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Metal Dye, Yellow" + }, + "RESREF": { + "type": "resref", + "value": "dyem09" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 83602 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 101 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flagstandard" + }, + "STRREF": { + "type": "dword", + "value": 16807450 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16807291 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 57 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "blackpearl" + }, + "STRREF": { + "type": "dword", + "value": 107938 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3dgem012" + }, + "STRREF": { + "type": "dword", + "value": 47205 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3dgem005" + }, + "STRREF": { + "type": "dword", + "value": 47201 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3dgem003" + }, + "STRREF": { + "type": "dword", + "value": 47199 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3dgem008" + }, + "STRREF": { + "type": "dword", + "value": 47203 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "bk_pearl_ix" + }, + "STRREF": { + "type": "dword", + "value": 107932 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "bk_pearl_tongue" + }, + "STRREF": { + "type": "dword", + "value": 107934 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_gem007" + }, + "STRREF": { + "type": "dword", + "value": 13300 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1itgemsetara" + }, + "STRREF": { + "type": "dword", + "value": 41079 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "soulgem" + }, + "STRREF": { + "type": "dword", + "value": 108124 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3d_succstone" + }, + "STRREF": { + "type": "dword", + "value": 61031 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1itgemwanev" + }, + "STRREF": { + "type": "dword", + "value": 41083 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1itgemshart" + }, + "STRREF": { + "type": "dword", + "value": 41081 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6812 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 102 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_holysymbol" + }, + "STRREF": { + "type": "dword", + "value": 16807514 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16807292 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 21 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "amuletofascalhor" + }, + "STRREF": { + "type": "dword", + "value": 75027 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mneck002" + }, + "STRREF": { + "type": "dword", + "value": 13380 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Amulet of the Turtle" + }, + "RESREF": { + "type": "resref", + "value": "it_mneck003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "amuletofultravis" + }, + "STRREF": { + "type": "dword", + "value": 79641 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Crafted Smooth Shadow Ideal Emerald Amulet" + }, + "RESREF": { + "type": "resref", + "value": "it_mneck037" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cravensnecklace" + }, + "STRREF": { + "type": "dword", + "value": 94997 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_artifact" + }, + "STRREF": { + "type": "dword", + "value": 108002 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q04ilocket" + }, + "STRREF": { + "type": "dword", + "value": 24804 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "dragontoothamule" + }, + "STRREF": { + "type": "dword", + "value": 95003 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_deek_amul" + }, + "STRREF": { + "type": "dword", + "value": 83076 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "qx_amulet2" + }, + "STRREF": { + "type": "dword", + "value": 109911 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "faerunstears" + }, + "STRREF": { + "type": "dword", + "value": 95023 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q04inobamulet" + }, + "STRREF": { + "type": "dword", + "value": 24806 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Periapt of Charisma +6" + }, + "RESREF": { + "type": "resref", + "value": "it_mneck008" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Periapt of Constitution +6" + }, + "RESREF": { + "type": "resref", + "value": "it_mneck009" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Periapt of Intelligence +6" + }, + "RESREF": { + "type": "resref", + "value": "it_mneck007" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3d_succneck" + }, + "STRREF": { + "type": "dword", + "value": 61027 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q7_talisman" + }, + "STRREF": { + "type": "dword", + "value": 108118 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "qx_talisman" + }, + "STRREF": { + "type": "dword", + "value": 109927 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2broach" + }, + "STRREF": { + "type": "dword", + "value": 24919 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1luckycharm" + }, + "STRREF": { + "type": "dword", + "value": 75229 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4a_heal_item" + }, + "STRREF": { + "type": "dword", + "value": 100217 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6750 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 22 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Biblical Ring" + }, + "RESREF": { + "type": "resref", + "value": "it_mring004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1itring02" + }, + "STRREF": { + "type": "dword", + "value": 41089 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2a10bretband" + }, + "STRREF": { + "type": "dword", + "value": 47116 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Charisma Ring +5" + }, + "RESREF": { + "type": "resref", + "value": "it_mring025" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Constitution Ring +5" + }, + "RESREF": { + "type": "resref", + "value": "it_mring028" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Crafted Smooth Mithral Ideal Ruby Ring" + }, + "RESREF": { + "type": "resref", + "value": "it_mring023" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cursed Ring of Withering" + }, + "RESREF": { + "type": "resref", + "value": "cursering" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Dexterity Ring +5" + }, + "RESREF": { + "type": "resref", + "value": "it_mring027" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1itring03" + }, + "STRREF": { + "type": "dword", + "value": 41091 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2cc06_signet" + }, + "STRREF": { + "type": "dword", + "value": 41116 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Intelligence Ring +5" + }, + "RESREF": { + "type": "resref", + "value": "it_mring274" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1kilravsring" + }, + "STRREF": { + "type": "dword", + "value": 75228 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1_drunk" + }, + "STRREF": { + "type": "dword", + "value": 63149 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_necro_ring" + }, + "STRREF": { + "type": "dword", + "value": 16807602 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q7_meph_props" + }, + "STRREF": { + "type": "dword", + "value": 13470 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Ring of Dexterity" + }, + "RESREF": { + "type": "resref", + "value": "it_novel002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Ring of Dexterity" + }, + "RESREF": { + "type": "resref", + "value": "it_novel003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Ring of Extreme Strength" + }, + "RESREF": { + "type": "resref", + "value": "it_mring022" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mring035" + }, + "STRREF": { + "type": "dword", + "value": 67529 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2e_ring4" + }, + "STRREF": { + "type": "dword", + "value": 41144 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2e_ring1" + }, + "STRREF": { + "type": "dword", + "value": 41138 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2e_ring3" + }, + "STRREF": { + "type": "dword", + "value": 41142 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2e_ring2" + }, + "STRREF": { + "type": "dword", + "value": 41140 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1wolfring" + }, + "STRREF": { + "type": "dword", + "value": 75137 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1_yusamring" + }, + "STRREF": { + "type": "dword", + "value": 66782 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "xp2_sharring" + }, + "STRREF": { + "type": "dword", + "value": 95138 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q06itwilring" + }, + "STRREF": { + "type": "dword", + "value": 41075 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Strength Ring +5" + }, + "RESREF": { + "type": "resref", + "value": "it_mring026" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3d_succring" + }, + "STRREF": { + "type": "dword", + "value": 61029 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "The Phoenix Ring" + }, + "RESREF": { + "type": "resref", + "value": "final_ring" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q5signet1" + }, + "STRREF": { + "type": "dword", + "value": 24795 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1itring01" + }, + "STRREF": { + "type": "dword", + "value": 41087 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Wisdom Ring +5" + }, + "RESREF": { + "type": "resref", + "value": "it_mring024" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q5c04ring" + }, + "STRREF": { + "type": "dword", + "value": 24861 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6751 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6749 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 20 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Epic Acid Splash Trap Kit" + }, + "RESREF": { + "type": "resref", + "value": "x2_it_trap005" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Epic Blob of Acid Trap Kit" + }, + "RESREF": { + "type": "resref", + "value": "x2_it_trap006" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Epic Gas Trap Kit" + }, + "RESREF": { + "type": "resref", + "value": "x2_it_trap007" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Epic Holy Trap Kit" + }, + "RESREF": { + "type": "resref", + "value": "x2_it_trap008" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Epic Negative Trap Kit" + }, + "RESREF": { + "type": "resref", + "value": "x2_it_trap009" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Epic Spike Trap Kit" + }, + "RESREF": { + "type": "resref", + "value": "x2_it_trap010" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Epic Tangle Trap Kit" + }, + "RESREF": { + "type": "resref", + "value": "x2_it_trap011" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6748 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 103 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_guitar" + }, + "STRREF": { + "type": "dword", + "value": 16807496 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_harp" + }, + "STRREF": { + "type": "dword", + "value": 16807504 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lute" + }, + "STRREF": { + "type": "dword", + "value": 16807570 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pipes" + }, + "STRREF": { + "type": "dword", + "value": 16807628 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tambourine" + }, + "STRREF": { + "type": "dword", + "value": 16807714 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_violinf" + }, + "STRREF": { + "type": "dword", + "value": 16807762 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_violinm" + }, + "STRREF": { + "type": "dword", + "value": 16807762 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_violinbow" + }, + "STRREF": { + "type": "dword", + "value": 16807766 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16807293 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 23 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1c2_puzznotes" + }, + "STRREF": { + "type": "dword", + "value": 61346 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f_golem" + }, + "STRREF": { + "type": "dword", + "value": 65762 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m0q0_key_door10" + }, + "STRREF": { + "type": "dword", + "value": 50988 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_babyholdable" + }, + "STRREF": { + "type": "dword", + "value": 16807312 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1_waterbowl" + }, + "STRREF": { + "type": "dword", + "value": 48946 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_msmlmisc003" + }, + "STRREF": { + "type": "dword", + "value": 49068 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1_firebrazier" + }, + "STRREF": { + "type": "dword", + "value": 75212 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4a_bucket_m" + }, + "STRREF": { + "type": "dword", + "value": 100215 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1_censerair" + }, + "STRREF": { + "type": "dword", + "value": 75210 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1monkitem" + }, + "STRREF": { + "type": "dword", + "value": 75116 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mthnmisc005" + }, + "STRREF": { + "type": "dword", + "value": 57980 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "confusiontoy" + }, + "STRREF": { + "type": "dword", + "value": 94995 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2cd07_scroll" + }, + "STRREF": { + "type": "dword", + "value": 41123 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2ce_cscroll1" + }, + "STRREF": { + "type": "dword", + "value": 41123 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1mageitem" + }, + "STRREF": { + "type": "dword", + "value": 75114 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4a_morph" + }, + "STRREF": { + "type": "dword", + "value": 100222 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2i_deadan" + }, + "STRREF": { + "type": "dword", + "value": 41160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2i_deadbody" + }, + "STRREF": { + "type": "dword", + "value": 41162 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "grapple_hook" + }, + "STRREF": { + "type": "dword", + "value": 100175 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1a2_dornakey" + }, + "STRREF": { + "type": "dword", + "value": 75071 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_msmlmis002" + }, + "STRREF": { + "type": "dword", + "value": 13499 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q7cegg" + }, + "STRREF": { + "type": "dword", + "value": 75195 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2e_key" + }, + "STRREF": { + "type": "dword", + "value": 41137 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4a_bucket" + }, + "STRREF": { + "type": "dword", + "value": 100213 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2_b07_feathe" + }, + "STRREF": { + "type": "dword", + "value": 47179 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_figure1" + }, + "STRREF": { + "type": "dword", + "value": 16807444 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_tymo_amulet" + }, + "STRREF": { + "type": "dword", + "value": 75179 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1ikey" + }, + "STRREF": { + "type": "dword", + "value": 75113 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1_c8_key" + }, + "STRREF": { + "type": "dword", + "value": 47107 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4_warzonekey" + }, + "STRREF": { + "type": "dword", + "value": 47107 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gempouch" + }, + "STRREF": { + "type": "dword", + "value": 16807466 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1rangeritem" + }, + "STRREF": { + "type": "dword", + "value": 75123 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "gold20000" + }, + "STRREF": { + "type": "dword", + "value": 535 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_gold003" + }, + "STRREF": { + "type": "dword", + "value": 535 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_gold004" + }, + "STRREF": { + "type": "dword", + "value": 535 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_gold005" + }, + "STRREF": { + "type": "dword", + "value": 535 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_gold006" + }, + "STRREF": { + "type": "dword", + "value": 535 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_gold007" + }, + "STRREF": { + "type": "dword", + "value": 535 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_gold008" + }, + "STRREF": { + "type": "dword", + "value": 535 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_gold009" + }, + "STRREF": { + "type": "dword", + "value": 535 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_gold010" + }, + "STRREF": { + "type": "dword", + "value": 535 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_gold011" + }, + "STRREF": { + "type": "dword", + "value": 535 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "golemattractor" + }, + "STRREF": { + "type": "dword", + "value": 107950 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4b_binder" + }, + "STRREF": { + "type": "dword", + "value": 108068 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4b_crasher" + }, + "STRREF": { + "type": "dword", + "value": 108080 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f_golemkey" + }, + "STRREF": { + "type": "dword", + "value": 65765 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1greenspore" + }, + "STRREF": { + "type": "dword", + "value": 75109 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2bmagglass" + }, + "STRREF": { + "type": "dword", + "value": 95083 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1heartofneely" + }, + "STRREF": { + "type": "dword", + "value": 75226 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1footstagtrophy" + }, + "STRREF": { + "type": "dword", + "value": 75107 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_illuskheart" + }, + "STRREF": { + "type": "dword", + "value": 65565 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2ce_hscroll1" + }, + "STRREF": { + "type": "dword", + "value": 41127 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2ce_hscroll2" + }, + "STRREF": { + "type": "dword", + "value": 41127 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1clericitem" + }, + "STRREF": { + "type": "dword", + "value": 75086 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Holy Water" + }, + "RESREF": { + "type": "resref", + "value": "zep_holy_water" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1rogueitem" + }, + "STRREF": { + "type": "dword", + "value": 75125 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1foot_horns" + }, + "STRREF": { + "type": "dword", + "value": 75105 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1barbitem" + }, + "STRREF": { + "type": "dword", + "value": 75075 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1paladinitem" + }, + "STRREF": { + "type": "dword", + "value": 75120 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f_balorkey" + }, + "STRREF": { + "type": "dword", + "value": 1560 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2c06_key" + }, + "STRREF": { + "type": "dword", + "value": 95097 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Key of the Wurms" + }, + "RESREF": { + "type": "resref", + "value": "wurm_key" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lantern" + }, + "STRREF": { + "type": "dword", + "value": 16807552 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mthnmisc012" + }, + "STRREF": { + "type": "dword", + "value": 62345 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_cultistlette" + }, + "STRREF": { + "type": "dword", + "value": 42555 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1_a11_lil_not" + }, + "STRREF": { + "type": "dword", + "value": 47102 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1_map_m1q3a" + }, + "STRREF": { + "type": "dword", + "value": 24972 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1_map_m1q5a" + }, + "STRREF": { + "type": "dword", + "value": 24976 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1_map_m1q4a" + }, + "STRREF": { + "type": "dword", + "value": 24974 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1_map_m1q2a" + }, + "STRREF": { + "type": "dword", + "value": 24970 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2itmirrorvan" + }, + "STRREF": { + "type": "dword", + "value": 41153 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_advennote" + }, + "STRREF": { + "type": "dword", + "value": 47216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_sewnote" + }, + "STRREF": { + "type": "dword", + "value": 47216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3trapscroll" + }, + "STRREF": { + "type": "dword", + "value": 76454 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ointmentofremove" + }, + "STRREF": { + "type": "dword", + "value": 83067 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3a_orchead" + }, + "STRREF": { + "type": "dword", + "value": 47186 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_gold002" + }, + "STRREF": { + "type": "dword", + "value": 95052 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_promissary" + }, + "STRREF": { + "type": "dword", + "value": 75153 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1barditem" + }, + "STRREF": { + "type": "dword", + "value": 75077 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_msmlmisc012" + }, + "STRREF": { + "type": "dword", + "value": 13493 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1sorcereritem" + }, + "STRREF": { + "type": "dword", + "value": 75132 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "nw_rogue_item" + }, + "STRREF": { + "type": "dword", + "value": 50990 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1a2drogankey" + }, + "STRREF": { + "type": "dword", + "value": 75073 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "rope" + }, + "STRREF": { + "type": "dword", + "value": 108120 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4a_rusty" + }, + "STRREF": { + "type": "dword", + "value": 100224 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1fighteritem" + }, + "STRREF": { + "type": "dword", + "value": 75100 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1druiditem" + }, + "STRREF": { + "type": "dword", + "value": 75098 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2cc_key" + }, + "STRREF": { + "type": "dword", + "value": 41121 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2cd_key" + }, + "STRREF": { + "type": "dword", + "value": 41121 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q7acavekey" + }, + "STRREF": { + "type": "dword", + "value": 75194 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q4silver" + }, + "STRREF": { + "type": "dword", + "value": 24847 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_illuskhead" + }, + "STRREF": { + "type": "dword", + "value": 65563 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2cgobkey" + }, + "STRREF": { + "type": "dword", + "value": 95107 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2chobkey" + }, + "STRREF": { + "type": "dword", + "value": 95109 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4a_box_key" + }, + "STRREF": { + "type": "dword", + "value": 100211 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4a_water_breath" + }, + "STRREF": { + "type": "dword", + "value": 100226 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "stingerpotiongla" + }, + "STRREF": { + "type": "dword", + "value": 83104 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2ce_key" + }, + "STRREF": { + "type": "dword", + "value": 41133 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "gargoyle_ear" + }, + "STRREF": { + "type": "dword", + "value": 100170 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1_earthstone" + }, + "STRREF": { + "type": "dword", + "value": 57966 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3d_ped_blue" + }, + "STRREF": { + "type": "dword", + "value": 66106 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3d_ped_green" + }, + "STRREF": { + "type": "dword", + "value": 66107 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3d_ped_purple" + }, + "STRREF": { + "type": "dword", + "value": 66103 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3d_ped_white" + }, + "STRREF": { + "type": "dword", + "value": 66105 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2ce_tjrnl" + }, + "STRREF": { + "type": "dword", + "value": 41134 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1srlimaskdeth" + }, + "STRREF": { + "type": "dword", + "value": 41095 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1srlimaskfire" + }, + "STRREF": { + "type": "dword", + "value": 41097 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1srlimaskice" + }, + "STRREF": { + "type": "dword", + "value": 41099 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1srlimasklife" + }, + "STRREF": { + "type": "dword", + "value": 41101 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1srlimaskreso" + }, + "STRREF": { + "type": "dword", + "value": 41103 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "torchoftheveloxb" + }, + "STRREF": { + "type": "dword", + "value": 109934 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2itnotetroll" + }, + "STRREF": { + "type": "dword", + "value": 41156 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "bk_top" + }, + "STRREF": { + "type": "dword", + "value": 107936 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4a_heal_leaves" + }, + "STRREF": { + "type": "dword", + "value": 100220 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4a_water_mold" + }, + "STRREF": { + "type": "dword", + "value": 100228 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1a09whitepor" + }, + "STRREF": { + "type": "dword", + "value": 47098 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1a2_xanoskey" + }, + "STRREF": { + "type": "dword", + "value": 75072 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_zebrahide" + }, + "STRREF": { + "type": "dword", + "value": 16807788 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6699 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 24 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_illuskwater" + }, + "STRREF": { + "type": "dword", + "value": 65570 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Cyanide" + }, + "RESREF": { + "type": "resref", + "value": "deathpotion" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Poison" + }, + "RESREF": { + "type": "resref", + "value": "poisonpotion" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_potion" + }, + "STRREF": { + "type": "dword", + "value": 75151 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x2_it_ptgrrestor" + }, + "STRREF": { + "type": "dword", + "value": 95127 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_mpotion005" + }, + "STRREF": { + "type": "dword", + "value": 13417 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1potionvitality" + }, + "STRREF": { + "type": "dword", + "value": 75232 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2f2_poison" + }, + "STRREF": { + "type": "dword", + "value": 41147 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_berry_potion" + }, + "STRREF": { + "type": "dword", + "value": 100185 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5b_bottle" + }, + "STRREF": { + "type": "dword", + "value": 83096 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6753 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 26 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_sparscr216" + }, + "STRREF": { + "type": "dword", + "value": 13564 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Fire Storm" + }, + "RESREF": { + "type": "resref", + "value": "firestorm" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_sparscr403" + }, + "STRREF": { + "type": "dword", + "value": 79663 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_spdvscr002" + }, + "STRREF": { + "type": "dword", + "value": 79667 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_sparscr605" + }, + "STRREF": { + "type": "dword", + "value": 79665 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "War Cry" + }, + "RESREF": { + "type": "resref", + "value": "warcry" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6754 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 1592 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 54 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3b_note" + }, + "STRREF": { + "type": "dword", + "value": 83094 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aarin_amulet" + }, + "STRREF": { + "type": "dword", + "value": 47071 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aarin_amulet2" + }, + "STRREF": { + "type": "dword", + "value": 40998 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2cstone" + }, + "STRREF": { + "type": "dword", + "value": 95113 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1italhtooth" + }, + "STRREF": { + "type": "dword", + "value": 41077 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4f_ghoulamu" + }, + "STRREF": { + "type": "dword", + "value": 13388 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "ancientsword" + }, + "STRREF": { + "type": "dword", + "value": 75029 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_midmisc001" + }, + "STRREF": { + "type": "dword", + "value": 24793 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q1_letterconsp" + }, + "STRREF": { + "type": "dword", + "value": 24793 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q1_letterspy" + }, + "STRREF": { + "type": "dword", + "value": 24793 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3h_letterfire" + }, + "STRREF": { + "type": "dword", + "value": 41178 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3h_letterghos" + }, + "STRREF": { + "type": "dword", + "value": 41178 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3h_letterjust" + }, + "STRREF": { + "type": "dword", + "value": 41178 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "aribeth_ring" + }, + "STRREF": { + "type": "dword", + "value": 41000 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4aribsword" + }, + "STRREF": { + "type": "dword", + "value": 68434 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2a14_arness" + }, + "STRREF": { + "type": "dword", + "value": 47120 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4asheeraamulet" + }, + "STRREF": { + "type": "dword", + "value": 68436 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q04iauction" + }, + "STRREF": { + "type": "dword", + "value": 24802 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1hbaby" + }, + "STRREF": { + "type": "dword", + "value": 75111 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_barambasekey" + }, + "STRREF": { + "type": "dword", + "value": 40979 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_baram_head" + }, + "STRREF": { + "type": "dword", + "value": 40980 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2jkey" + }, + "STRREF": { + "type": "dword", + "value": 41167 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_bearhorn" + }, + "STRREF": { + "type": "dword", + "value": 75142 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q6f08ritual" + }, + "STRREF": { + "type": "dword", + "value": 26342 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f22powder1" + }, + "STRREF": { + "type": "dword", + "value": 47147 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4b_comp1" + }, + "STRREF": { + "type": "dword", + "value": 108070 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3barunbook" + }, + "STRREF": { + "type": "dword", + "value": 531 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q6book_helm" + }, + "STRREF": { + "type": "dword", + "value": 26358 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1a07writ" + }, + "STRREF": { + "type": "dword", + "value": 47090 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_cage_key" + }, + "STRREF": { + "type": "dword", + "value": 75144 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3h_judgekey" + }, + "STRREF": { + "type": "dword", + "value": 41177 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3h_riddlekey" + }, + "STRREF": { + "type": "dword", + "value": 41185 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3i_karlatkey" + }, + "STRREF": { + "type": "dword", + "value": 41201 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3i_quintkey" + }, + "STRREF": { + "type": "dword", + "value": 41203 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q6f09key" + }, + "STRREF": { + "type": "dword", + "value": 26345 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2_nymphdagger" + }, + "STRREF": { + "type": "dword", + "value": 65214 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q4a_child_toy" + }, + "STRREF": { + "type": "dword", + "value": 41216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2ccrbook" + }, + "STRREF": { + "type": "dword", + "value": 65215 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4d_golemamulet" + }, + "STRREF": { + "type": "dword", + "value": 108084 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4d_golemamulet2" + }, + "STRREF": { + "type": "dword", + "value": 108084 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q5enote" + }, + "STRREF": { + "type": "dword", + "value": 24871 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4e_cryptdoor" + }, + "STRREF": { + "type": "dword", + "value": 60272 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05icrysegg" + }, + "STRREF": { + "type": "dword", + "value": 41033 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05icrysfrog" + }, + "STRREF": { + "type": "dword", + "value": 41035 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05icrysinsect" + }, + "STRREF": { + "type": "dword", + "value": 41037 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05icrysskull" + }, + "STRREF": { + "type": "dword", + "value": 41039 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Debugging Ring" + }, + "RESREF": { + "type": "resref", + "value": "m2q1itring003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Debugging Rod" + }, + "RESREF": { + "type": "resref", + "value": "debuggingrod" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q04idelilahear" + }, + "STRREF": { + "type": "dword", + "value": 41029 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q5dergiabhead" + }, + "STRREF": { + "type": "dword", + "value": 41220 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_alrashid1" + }, + "STRREF": { + "type": "dword", + "value": 83070 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_alrashid2" + }, + "STRREF": { + "type": "dword", + "value": 83070 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_alrashid3" + }, + "STRREF": { + "type": "dword", + "value": 83070 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_alrashid4" + }, + "STRREF": { + "type": "dword", + "value": 83070 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3c_blood" + }, + "STRREF": { + "type": "dword", + "value": 108030 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q06iaarinpass" + }, + "STRREF": { + "type": "dword", + "value": 42591 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_letter02" + }, + "STRREF": { + "type": "dword", + "value": 42563 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "alldemonbottle" + }, + "STRREF": { + "type": "dword", + "value": 94975 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drogansrobes" + }, + "STRREF": { + "type": "dword", + "value": 75041 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2a10ecknote" + }, + "STRREF": { + "type": "dword", + "value": 47118 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "elvenhalloftrial" + }, + "STRREF": { + "type": "dword", + "value": 75042 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "elventrapprotect" + }, + "STRREF": { + "type": "dword", + "value": 75044 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4a_elynring" + }, + "STRREF": { + "type": "dword", + "value": 60269 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "energyorb" + }, + "STRREF": { + "type": "dword", + "value": 107948 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_erbsring" + }, + "STRREF": { + "type": "dword", + "value": 40981 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q5dpassstone" + }, + "STRREF": { + "type": "dword", + "value": 24865 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q6fhelmgem" + }, + "STRREF": { + "type": "dword", + "value": 26346 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "elynwyd_ring" + }, + "STRREF": { + "type": "dword", + "value": 41003 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_ringpiece_2" + }, + "STRREF": { + "type": "dword", + "value": 100196 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2fsprite" + }, + "STRREF": { + "type": "dword", + "value": 61015 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2b03fairydust" + }, + "STRREF": { + "type": "dword", + "value": 95080 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4c_ferron_head" + }, + "STRREF": { + "type": "dword", + "value": 108082 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "focuscrystal" + }, + "STRREF": { + "type": "dword", + "value": 75046 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_formcrystal" + }, + "STRREF": { + "type": "dword", + "value": 83090 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1bcards" + }, + "STRREF": { + "type": "dword", + "value": 75079 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q7_banditbook" + }, + "STRREF": { + "type": "dword", + "value": 75191 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "gate key" + }, + "STRREF": { + "type": "dword", + "value": 47107 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s04ifightpass" + }, + "STRREF": { + "type": "dword", + "value": 24902 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_mimic_gem" + }, + "STRREF": { + "type": "dword", + "value": 100191 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_glowsphere" + }, + "STRREF": { + "type": "dword", + "value": 40982 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_key_chief" + }, + "STRREF": { + "type": "dword", + "value": 75146 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3a_key_jail" + }, + "STRREF": { + "type": "dword", + "value": 75166 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_elemnote" + }, + "STRREF": { + "type": "dword", + "value": 78861 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q4dragon_eggs" + }, + "STRREF": { + "type": "dword", + "value": 61036 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4b_comp5" + }, + "STRREF": { + "type": "dword", + "value": 108076 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6e_controlrod" + }, + "STRREF": { + "type": "dword", + "value": 42558 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4d_golemhead" + }, + "STRREF": { + "type": "dword", + "value": 108087 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_gollefthand" + }, + "STRREF": { + "type": "dword", + "value": 108042 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_golleftleg" + }, + "STRREF": { + "type": "dword", + "value": 108043 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_mach_act" + }, + "STRREF": { + "type": "dword", + "value": 108054 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6e_golemrod" + }, + "STRREF": { + "type": "dword", + "value": 60294 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_golrighthand" + }, + "STRREF": { + "type": "dword", + "value": 108044 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_golrightleg" + }, + "STRREF": { + "type": "dword", + "value": 108045 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "golemseal" + }, + "STRREF": { + "type": "dword", + "value": 107952 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_golemtorso" + }, + "STRREF": { + "type": "dword", + "value": 108040 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_power_source" + }, + "STRREF": { + "type": "dword", + "value": 108064 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2c2_chain_gre" + }, + "STRREF": { + "type": "dword", + "value": 95099 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q4dragon_egggr" + }, + "STRREF": { + "type": "dword", + "value": 61035 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05idungeonkey" + }, + "STRREF": { + "type": "dword", + "value": 41044 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05idoorpuzkey" + }, + "STRREF": { + "type": "dword", + "value": 41042 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4dragonkey" + }, + "STRREF": { + "type": "dword", + "value": 68439 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3igulgheart" + }, + "STRREF": { + "type": "dword", + "value": 41186 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3_a02guzud" + }, + "STRREF": { + "type": "dword", + "value": 47208 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_ringpiece_1" + }, + "STRREF": { + "type": "dword", + "value": 100194 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "bk_daelan_bracer" + }, + "STRREF": { + "type": "dword", + "value": 94980 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q3iloxarhead" + }, + "STRREF": { + "type": "dword", + "value": 63154 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05ibugbhead" + }, + "STRREF": { + "type": "dword", + "value": 41031 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05iorchead" + }, + "STRREF": { + "type": "dword", + "value": 41049 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "head_m2q2alent" + }, + "STRREF": { + "type": "dword", + "value": 41005 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1cureing3" + }, + "STRREF": { + "type": "dword", + "value": 75092 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q6a0seal" + }, + "STRREF": { + "type": "dword", + "value": 41235 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q4_c03_giant_h" + }, + "STRREF": { + "type": "dword", + "value": 47222 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2amaeviirkey" + }, + "STRREF": { + "type": "dword", + "value": 107983 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_impgore" + }, + "STRREF": { + "type": "dword", + "value": 42562 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2cbktomb" + }, + "STRREF": { + "type": "dword", + "value": 41112 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1c16_inkwell" + }, + "STRREF": { + "type": "dword", + "value": 49128 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1b25aribkey" + }, + "STRREF": { + "type": "dword", + "value": 49124 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q04inotecallik" + }, + "STRREF": { + "type": "dword", + "value": 24809 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "bk_note2" + }, + "STRREF": { + "type": "dword", + "value": 94984 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2_wall2gate" + }, + "STRREF": { + "type": "dword", + "value": 1560 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1c14_mkey" + }, + "STRREF": { + "type": "dword", + "value": 1560 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m_last_key" + }, + "STRREF": { + "type": "dword", + "value": 1560 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1c07key2" + }, + "STRREF": { + "type": "dword", + "value": 61343 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1c07key" + }, + "STRREF": { + "type": "dword", + "value": 61341 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q4_f02_klauth" + }, + "STRREF": { + "type": "dword", + "value": 47224 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_kurthbasekey" + }, + "STRREF": { + "type": "dword", + "value": 40984 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_kurth_head" + }, + "STRREF": { + "type": "dword", + "value": 41694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_ringpiece_3" + }, + "STRREF": { + "type": "dword", + "value": 100198 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_maugrimlette" + }, + "STRREF": { + "type": "dword", + "value": 42555 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3h_letterridd" + }, + "STRREF": { + "type": "dword", + "value": 41182 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1letter" + }, + "STRREF": { + "type": "dword", + "value": 24913 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2letter1" + }, + "STRREF": { + "type": "dword", + "value": 24935 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_portalinst" + }, + "STRREF": { + "type": "dword", + "value": 60300 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q06ilettneva" + }, + "STRREF": { + "type": "dword", + "value": 41071 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3j_quintlett" + }, + "STRREF": { + "type": "dword", + "value": 41206 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_lettergolem" + }, + "STRREF": { + "type": "dword", + "value": 42565 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q06ilettsolomo" + }, + "STRREF": { + "type": "dword", + "value": 41073 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1vardlet" + }, + "STRREF": { + "type": "dword", + "value": 41105 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "lowercryptkey" + }, + "STRREF": { + "type": "dword", + "value": 107968 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1d08_imm_blun" + }, + "STRREF": { + "type": "dword", + "value": 49132 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1d08_imm_cold" + }, + "STRREF": { + "type": "dword", + "value": 49133 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1d08_imm_elec" + }, + "STRREF": { + "type": "dword", + "value": 49134 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1d08_imm_fire" + }, + "STRREF": { + "type": "dword", + "value": 49135 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1d08_imm_othe" + }, + "STRREF": { + "type": "dword", + "value": 49136 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1d08_imm_pier" + }, + "STRREF": { + "type": "dword", + "value": 49137 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1d08_imm_pois" + }, + "STRREF": { + "type": "dword", + "value": 49138 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1d08_imm_slas" + }, + "STRREF": { + "type": "dword", + "value": 49139 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1d09_imm_mag" + }, + "STRREF": { + "type": "dword", + "value": 68441 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4b_comp4" + }, + "STRREF": { + "type": "dword", + "value": 108074 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3b_token" + }, + "STRREF": { + "type": "dword", + "value": 75170 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_maugrimjourn" + }, + "STRREF": { + "type": "dword", + "value": 42567 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "maug_jour" + }, + "STRREF": { + "type": "dword", + "value": 42567 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05igravekey" + }, + "STRREF": { + "type": "dword", + "value": 41046 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q3a00tooth" + }, + "STRREF": { + "type": "dword", + "value": 24827 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_compass" + }, + "STRREF": { + "type": "dword", + "value": 108098 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_mirror" + }, + "STRREF": { + "type": "dword", + "value": 108101 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_shard" + }, + "STRREF": { + "type": "dword", + "value": 108109 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4b_comp6" + }, + "STRREF": { + "type": "dword", + "value": 108078 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mithril" + }, + "STRREF": { + "type": "dword", + "value": 95071 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3c_entry_key" + }, + "STRREF": { + "type": "dword", + "value": 108032 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5b_idol" + }, + "STRREF": { + "type": "dword", + "value": 83098 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "xp1_mystrashand" + }, + "STRREF": { + "type": "dword", + "value": 75249 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1norawedring" + }, + "STRREF": { + "type": "dword", + "value": 75118 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "halasternote" + }, + "STRREF": { + "type": "dword", + "value": 95031 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2note1" + }, + "STRREF": { + "type": "dword", + "value": 47216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2note2" + }, + "STRREF": { + "type": "dword", + "value": 47216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2note3" + }, + "STRREF": { + "type": "dword", + "value": 47216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3oboulddrow" + }, + "STRREF": { + "type": "dword", + "value": 47216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4lusknote" + }, + "STRREF": { + "type": "dword", + "value": 47216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "nw_m4q01c08_spyn" + }, + "STRREF": { + "type": "dword", + "value": 47216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2letter4" + }, + "STRREF": { + "type": "dword", + "value": 24941 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "nullifierrod" + }, + "STRREF": { + "type": "dword", + "value": 107976 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_obeliskscore" + }, + "STRREF": { + "type": "dword", + "value": 108094 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3_a02oboul" + }, + "STRREF": { + "type": "dword", + "value": 47210 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3kscroll" + }, + "STRREF": { + "type": "dword", + "value": 65219 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q4_calliknote" + }, + "STRREF": { + "type": "dword", + "value": 63156 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_parchments" + }, + "STRREF": { + "type": "dword", + "value": 75148 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2pass" + }, + "STRREF": { + "type": "dword", + "value": 24943 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1c07key3" + }, + "STRREF": { + "type": "dword", + "value": 61345 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3e_brooch" + }, + "STRREF": { + "type": "dword", + "value": 41168 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1_ice_phylac" + }, + "STRREF": { + "type": "dword", + "value": 75213 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1cureing2" + }, + "STRREF": { + "type": "dword", + "value": 75090 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1bpipersword" + }, + "STRREF": { + "type": "dword", + "value": 75084 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2a14_cure" + }, + "STRREF": { + "type": "dword", + "value": 47122 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2_a11blankets" + }, + "STRREF": { + "type": "dword", + "value": 47177 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q01iyesgarkey" + }, + "STRREF": { + "type": "dword", + "value": 41014 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6c_potion" + }, + "STRREF": { + "type": "dword", + "value": 108113 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x0_powerstone" + }, + "STRREF": { + "type": "dword", + "value": 83109 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2c2_chain_pur" + }, + "STRREF": { + "type": "dword", + "value": 95101 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_puzzle_ring" + }, + "STRREF": { + "type": "dword", + "value": 109897 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_quasitgore" + }, + "STRREF": { + "type": "dword", + "value": 42570 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4q1c16_quill" + }, + "STRREF": { + "type": "dword", + "value": 49130 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_smlmisc001" + }, + "STRREF": { + "type": "dword", + "value": 47074 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2c2_chain_red" + }, + "STRREF": { + "type": "dword", + "value": 95103 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f22powder2" + }, + "STRREF": { + "type": "dword", + "value": 47149 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4b_comp2" + }, + "STRREF": { + "type": "dword", + "value": 108072 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2arring" + }, + "STRREF": { + "type": "dword", + "value": 41107 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_rod_blight" + }, + "STRREF": { + "type": "dword", + "value": 83082 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_rod_dawn" + }, + "STRREF": { + "type": "dword", + "value": 83084 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5rodofruler" + }, + "STRREF": { + "type": "dword", + "value": 75189 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1rumgutkey" + }, + "STRREF": { + "type": "dword", + "value": 75127 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2b_rune" + }, + "STRREF": { + "type": "dword", + "value": 83086 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5a_key_kobold_p" + }, + "STRREF": { + "type": "dword", + "value": 75187 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_sac_blade" + }, + "STRREF": { + "type": "dword", + "value": 83092 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2j7key" + }, + "STRREF": { + "type": "dword", + "value": 41165 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4f_machkey" + }, + "STRREF": { + "type": "dword", + "value": 40978 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q1a8ward" + }, + "STRREF": { + "type": "dword", + "value": 24813 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1silvercharm" + }, + "STRREF": { + "type": "dword", + "value": 41093 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3e_wolfhead" + }, + "STRREF": { + "type": "dword", + "value": 41170 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_thnmisc001" + }, + "STRREF": { + "type": "dword", + "value": 47075 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3a_key_slaves" + }, + "STRREF": { + "type": "dword", + "value": 75168 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_aribethbook" + }, + "STRREF": { + "type": "dword", + "value": 42553 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_abandon_key" + }, + "STRREF": { + "type": "dword", + "value": 110459 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_planartoken" + }, + "STRREF": { + "type": "dword", + "value": 40992 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q04ismugcoin" + }, + "STRREF": { + "type": "dword", + "value": 24811 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1_a11_lil_sno" + }, + "STRREF": { + "type": "dword", + "value": 47104 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "spellstaff" + }, + "STRREF": { + "type": "dword", + "value": 83102 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_woodstake" + }, + "STRREF": { + "type": "dword", + "value": 108028 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1_a11_lil_sta" + }, + "STRREF": { + "type": "dword", + "value": 47106 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q03istirgeear" + }, + "STRREF": { + "type": "dword", + "value": 41027 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_tymo_exit" + }, + "STRREF": { + "type": "dword", + "value": 75183 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_stoneslab" + }, + "STRREF": { + "type": "dword", + "value": 108096 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_deekin_shoe" + }, + "STRREF": { + "type": "dword", + "value": 75174 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6e_cure" + }, + "STRREF": { + "type": "dword", + "value": 108115 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1dragontooth" + }, + "STRREF": { + "type": "dword", + "value": 75220 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1mask" + }, + "STRREF": { + "type": "dword", + "value": 75230 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mummifiedhand" + }, + "STRREF": { + "type": "dword", + "value": 75069 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3_oathbelial" + }, + "STRREF": { + "type": "dword", + "value": 41208 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3_oathkarlat" + }, + "STRREF": { + "type": "dword", + "value": 41210 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3_oathquint" + }, + "STRREF": { + "type": "dword", + "value": 41212 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3_phylactery" + }, + "STRREF": { + "type": "dword", + "value": 41214 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1towercrystal" + }, + "STRREF": { + "type": "dword", + "value": 75239 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1tower" + }, + "STRREF": { + "type": "dword", + "value": 75237 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2ftime_cry" + }, + "STRREF": { + "type": "dword", + "value": 47160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05itombkey" + }, + "STRREF": { + "type": "dword", + "value": 41060 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1a09tomeofboo" + }, + "STRREF": { + "type": "dword", + "value": 47094 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1a09tomeofpow" + }, + "STRREF": { + "type": "dword", + "value": 47095 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1a09tomeofrob" + }, + "STRREF": { + "type": "dword", + "value": 47097 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1a09tomeofamu" + }, + "STRREF": { + "type": "dword", + "value": 47093 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1a09tomeofrin" + }, + "STRREF": { + "type": "dword", + "value": 47096 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6b_securekey" + }, + "STRREF": { + "type": "dword", + "value": 42557 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s3scroll" + }, + "STRREF": { + "type": "dword", + "value": 24967 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1cureing1" + }, + "STRREF": { + "type": "dword", + "value": 75088 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q2itkeytroll" + }, + "STRREF": { + "type": "dword", + "value": 41110 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_tymo_head" + }, + "STRREF": { + "type": "dword", + "value": 75185 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2ultargseed" + }, + "STRREF": { + "type": "dword", + "value": 47174 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3_a02vaath" + }, + "STRREF": { + "type": "dword", + "value": 47212 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4a_londa_key" + }, + "STRREF": { + "type": "dword", + "value": 40977 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_fire_berries" + }, + "STRREF": { + "type": "dword", + "value": 100187 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3iwanevcotkey" + }, + "STRREF": { + "type": "dword", + "value": 41193 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3iwanevsumkey" + }, + "STRREF": { + "type": "dword", + "value": 41197 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q01iwardwanev" + }, + "STRREF": { + "type": "dword", + "value": 41011 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05ileahring" + }, + "STRREF": { + "type": "dword", + "value": 41047 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1_wordpower3" + }, + "STRREF": { + "type": "dword", + "value": 47153 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4_wordofpower" + }, + "STRREF": { + "type": "dword", + "value": 47153 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2letter2" + }, + "STRREF": { + "type": "dword", + "value": 24937 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_orders" + }, + "STRREF": { + "type": "dword", + "value": 60284 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q02iwyvernear" + }, + "STRREF": { + "type": "dword", + "value": 41025 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2c2_chain_yel" + }, + "STRREF": { + "type": "dword", + "value": 95105 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f22powder3" + }, + "STRREF": { + "type": "dword", + "value": 47151 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4b_comp3" + }, + "STRREF": { + "type": "dword", + "value": 108073 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05iyesgarear" + }, + "STRREF": { + "type": "dword", + "value": 41061 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_key001" + }, + "STRREF": { + "type": "dword", + "value": 41008 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_yvettesbaby" + }, + "STRREF": { + "type": "dword", + "value": 40997 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05izamithkey" + }, + "STRREF": { + "type": "dword", + "value": 41064 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05izamithkey2" + }, + "STRREF": { + "type": "dword", + "value": 41066 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2d08_zokan" + }, + "STRREF": { + "type": "dword", + "value": 47126 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q05izorear" + }, + "STRREF": { + "type": "dword", + "value": 41067 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6808 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 0 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x2_it_pkeg" + }, + "STRREF": { + "type": "dword", + "value": 95125 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Angel's Wrath" + }, + "RESREF": { + "type": "resref", + "value": "hell_rod" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_fireden_ring" + }, + "STRREF": { + "type": "dword", + "value": 100189 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Arch Angel Tyriel I" + }, + "RESREF": { + "type": "resref", + "value": "glucifer1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Arch Angel Tyriel II" + }, + "RESREF": { + "type": "resref", + "value": "glucifer2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Baal I" + }, + "RESREF": { + "type": "resref", + "value": "baal1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Baal II" + }, + "RESREF": { + "type": "resref", + "value": "baal2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Balrog Lord I" + }, + "RESREF": { + "type": "resref", + "value": "balroglord" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Balrog Lord II" + }, + "RESREF": { + "type": "resref", + "value": "balroglord2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Bard Heretic I" + }, + "RESREF": { + "type": "resref", + "value": "bardheratic" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Bard Heretic II" + }, + "RESREF": { + "type": "resref", + "value": "bardheratic2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Death Wurm I" + }, + "RESREF": { + "type": "resref", + "value": "deathwurm" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Death Wurm II" + }, + "RESREF": { + "type": "resref", + "value": "deathwurm2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Divine Archer I" + }, + "RESREF": { + "type": "resref", + "value": "gbalroglord" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Divine Archer II" + }, + "RESREF": { + "type": "resref", + "value": "gbalroglord2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Doom Reaver I" + }, + "RESREF": { + "type": "resref", + "value": "darkreaver" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Doom Reaver II" + }, + "RESREF": { + "type": "resref", + "value": "darkreaver2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Elk King I" + }, + "RESREF": { + "type": "resref", + "value": "gmistress" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Elk King II" + }, + "RESREF": { + "type": "resref", + "value": "gmistress2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Gold Dragon I" + }, + "RESREF": { + "type": "resref", + "value": "gdeathwurm" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Gold Dragon II" + }, + "RESREF": { + "type": "resref", + "value": "gdeathwurm2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Guardian Angel I" + }, + "RESREF": { + "type": "resref", + "value": "gwardemon" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Guardian Angel II" + }, + "RESREF": { + "type": "resref", + "value": "gwardemon2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Hordrim II" + }, + "RESREF": { + "type": "resref", + "value": "gdarkreaver2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Horodrim I" + }, + "RESREF": { + "type": "resref", + "value": "gdarkreaver" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Kamaji Beserker I" + }, + "RESREF": { + "type": "resref", + "value": "kamaji" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Kamaji Beserker II" + }, + "RESREF": { + "type": "resref", + "value": "kamaji2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Lord Lucifer I" + }, + "RESREF": { + "type": "resref", + "value": "lucifer1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Lord Lucifer II" + }, + "RESREF": { + "type": "resref", + "value": "lucifer2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Lucifer's Mistress I" + }, + "RESREF": { + "type": "resref", + "value": "mistress" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Lucifer's Mistress II" + }, + "RESREF": { + "type": "resref", + "value": "mistress2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Shiva I" + }, + "RESREF": { + "type": "resref", + "value": "gkamaji" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Shiva II" + }, + "RESREF": { + "type": "resref", + "value": "gkamaji2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Shogun Lord I" + }, + "RESREF": { + "type": "resref", + "value": "gbardheratic" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Shogun Lord II" + }, + "RESREF": { + "type": "resref", + "value": "gbardheratic2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Soul Warrior I" + }, + "RESREF": { + "type": "resref", + "value": "gthevaldar" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Soul Warrior II" + }, + "RESREF": { + "type": "resref", + "value": "gthevaldar2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - The Valdar I" + }, + "RESREF": { + "type": "resref", + "value": "thevaldar" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - The Valdar II" + }, + "RESREF": { + "type": "resref", + "value": "thevaldar2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Thor I" + }, + "RESREF": { + "type": "resref", + "value": "gbaal1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - Thor II" + }, + "RESREF": { + "type": "resref", + "value": "gbaal2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - War Demon I" + }, + "RESREF": { + "type": "resref", + "value": "wardemon" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Battle Tomb - War Demon II" + }, + "RESREF": { + "type": "resref", + "value": "wardemon2" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_guard_note2" + }, + "STRREF": { + "type": "dword", + "value": 109893 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bookshelf Key" + }, + "RESREF": { + "type": "resref", + "value": "div_key" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_sewage" + }, + "STRREF": { + "type": "dword", + "value": 40994 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2craksanctumkey" + }, + "STRREF": { + "type": "dword", + "value": 104015 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Chest Key" + }, + "RESREF": { + "type": "resref", + "value": "reward_key" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q4plotreagent" + }, + "STRREF": { + "type": "dword", + "value": 24845 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "key_crypt_01" + }, + "STRREF": { + "type": "dword", + "value": 79675 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q2plotreagent" + }, + "STRREF": { + "type": "dword", + "value": 24791 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6g_discipline" + }, + "STRREF": { + "type": "dword", + "value": 42559 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Brew" + }, + "RESREF": { + "type": "resref", + "value": "soulcleanse001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Water" + }, + "RESREF": { + "type": "resref", + "value": "faithdrink" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Doom Guard" + }, + "RESREF": { + "type": "resref", + "value": "doomguard" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2cdrowcomkey" + }, + "STRREF": { + "type": "dword", + "value": 104014 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Firework Wand" + }, + "RESREF": { + "type": "resref", + "value": "g_firework_wand" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_emtg" + }, + "STRREF": { + "type": "dword", + "value": 16807468 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "h2_gruul_artifac" + }, + "STRREF": { + "type": "dword", + "value": 109883 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Guard Armor" + }, + "RESREF": { + "type": "resref", + "value": "001" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "junk_ring" + }, + "STRREF": { + "type": "dword", + "value": 49120 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "koboldfiregrenad" + }, + "STRREF": { + "type": "dword", + "value": 95058 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "koboldgrenade" + }, + "STRREF": { + "type": "dword", + "value": 95060 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_leverstone" + }, + "STRREF": { + "type": "dword", + "value": 40985 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_leverwater" + }, + "STRREF": { + "type": "dword", + "value": 40986 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_leverwind" + }, + "STRREF": { + "type": "dword", + "value": 40987 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_smlmiscm1q3" + }, + "STRREF": { + "type": "dword", + "value": 24797 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2amaechain" + }, + "STRREF": { + "type": "dword", + "value": 100209 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2amaeplate" + }, + "STRREF": { + "type": "dword", + "value": 107982 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Magnetic Elixir" + }, + "RESREF": { + "type": "resref", + "value": "liquidtitanim" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Mysterious Key" + }, + "RESREF": { + "type": "resref", + "value": "katanakey" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Mysterious Parchment" + }, + "RESREF": { + "type": "resref", + "value": "divine_note" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Phase Drops" + }, + "RESREF": { + "type": "resref", + "value": "phasedrops" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Player Coin" + }, + "RESREF": { + "type": "resref", + "value": "coin" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2arebchain" + }, + "STRREF": { + "type": "dword", + "value": 100210 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2arebplate" + }, + "STRREF": { + "type": "dword", + "value": 107986 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "scavengerratbone" + }, + "STRREF": { + "type": "dword", + "value": 100230 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_guard_note3" + }, + "STRREF": { + "type": "dword", + "value": 109895 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2bratseeds" + }, + "STRREF": { + "type": "dword", + "value": 95085 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Shadow Skin" + }, + "RESREF": { + "type": "resref", + "value": "soulcleanse002" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2bhallofkingkey" + }, + "STRREF": { + "type": "dword", + "value": 104012 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Soul Cleanse" + }, + "RESREF": { + "type": "resref", + "value": "soulcleanse" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Stasis Syrup" + }, + "RESREF": { + "type": "resref", + "value": "stasissyrup" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_guard_note1" + }, + "STRREF": { + "type": "dword", + "value": 109891 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "The Ancient Phoenix Rod" + }, + "RESREF": { + "type": "resref", + "value": "phoenix_tome" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "item_deadwind" + }, + "STRREF": { + "type": "dword", + "value": 79671 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "The lost souls of hell" + }, + "RESREF": { + "type": "resref", + "value": "cursed_heart001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Your cursed heart" + }, + "RESREF": { + "type": "resref", + "value": "cursed_heart" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q5reagent" + }, + "STRREF": { + "type": "dword", + "value": 24873 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6688 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 1 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_stone01" + }, + "STRREF": { + "type": "dword", + "value": 42571 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_stone02" + }, + "STRREF": { + "type": "dword", + "value": 42573 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_stone03" + }, + "STRREF": { + "type": "dword", + "value": 42575 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_stone04" + }, + "STRREF": { + "type": "dword", + "value": 42577 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_stone05" + }, + "STRREF": { + "type": "dword", + "value": 42579 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_stone06" + }, + "STRREF": { + "type": "dword", + "value": 42581 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_stone07" + }, + "STRREF": { + "type": "dword", + "value": 42583 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_stone08" + }, + "STRREF": { + "type": "dword", + "value": 42585 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_stone09" + }, + "STRREF": { + "type": "dword", + "value": 42587 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2brodblue" + }, + "STRREF": { + "type": "dword", + "value": 95087 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1arrow" + }, + "STRREF": { + "type": "dword", + "value": 66841 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1shield" + }, + "STRREF": { + "type": "dword", + "value": 66840 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1sword" + }, + "STRREF": { + "type": "dword", + "value": 66839 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3_cyrilletter" + }, + "STRREF": { + "type": "dword", + "value": 47214 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "h2_mystery4clue" + }, + "STRREF": { + "type": "dword", + "value": 100178 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2_d08_dream" + }, + "STRREF": { + "type": "dword", + "value": 47181 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2arebleadhelm" + }, + "STRREF": { + "type": "dword", + "value": 107985 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2brodgreen" + }, + "STRREF": { + "type": "dword", + "value": 95089 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "library_inkwell" + }, + "STRREF": { + "type": "dword", + "value": 79677 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mythalguide" + }, + "STRREF": { + "type": "dword", + "value": 79797 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2_letter1" + }, + "STRREF": { + "type": "dword", + "value": 42555 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2g08ring" + }, + "STRREF": { + "type": "dword", + "value": 47166 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6k_grandstone" + }, + "STRREF": { + "type": "dword", + "value": 60296 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mechanicsflight" + }, + "STRREF": { + "type": "dword", + "value": 79760 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "moldytome" + }, + "STRREF": { + "type": "dword", + "value": 79795 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2g07puzzlen" + }, + "STRREF": { + "type": "dword", + "value": 47164 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "library_pen" + }, + "STRREF": { + "type": "dword", + "value": 79679 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_stone10" + }, + "STRREF": { + "type": "dword", + "value": 42589 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2brodred" + }, + "STRREF": { + "type": "dword", + "value": 95091 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "h2_senseiamulet" + }, + "STRREF": { + "type": "dword", + "value": 100180 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2stasis_scrol" + }, + "STRREF": { + "type": "dword", + "value": 47172 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2g_hints" + }, + "STRREF": { + "type": "dword", + "value": 47170 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "templerites" + }, + "STRREF": { + "type": "dword", + "value": 79811 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "artoflichdom" + }, + "STRREF": { + "type": "dword", + "value": 79642 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cityofshadows" + }, + "STRREF": { + "type": "dword", + "value": 79645 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "poetryoffilth" + }, + "STRREF": { + "type": "dword", + "value": 79799 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "item_wisewind" + }, + "STRREF": { + "type": "dword", + "value": 79673 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2gtranam" + }, + "STRREF": { + "type": "dword", + "value": 47168 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "h2_trumpet" + }, + "STRREF": { + "type": "dword", + "value": 100182 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2brodwhite" + }, + "STRREF": { + "type": "dword", + "value": 95093 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1_wordpower2" + }, + "STRREF": { + "type": "dword", + "value": 47153 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f25fakeword" + }, + "STRREF": { + "type": "dword", + "value": 47153 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2brodyellow" + }, + "STRREF": { + "type": "dword", + "value": 95095 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6689 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 2 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3c_swordages" + }, + "STRREF": { + "type": "dword", + "value": 47197 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "AOC Life Insurance Card" + }, + "RESREF": { + "type": "resref", + "value": "insurance" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "AOC Membership Card" + }, + "RESREF": { + "type": "resref", + "value": "sxillwa" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Australis Token" + }, + "RESREF": { + "type": "resref", + "value": "nordock_token" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3c_brokenages" + }, + "STRREF": { + "type": "dword", + "value": 47191 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bronze Arena Token" + }, + "RESREF": { + "type": "resref", + "value": "pearl" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bronze Arena Token" + }, + "RESREF": { + "type": "resref", + "value": "pearl002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Challenge Card" + }, + "RESREF": { + "type": "resref", + "value": "trqcva" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Damage Card" + }, + "RESREF": { + "type": "resref", + "value": "bsntfn" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Dark Talisman" + }, + "RESREF": { + "type": "resref", + "value": "dark_talisman2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Dark Talisman of Power" + }, + "RESREF": { + "type": "resref", + "value": "dark_talisman" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Deathmatch Card" + }, + "RESREF": { + "type": "resref", + "value": "fgnpde" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Deity Card" + }, + "RESREF": { + "type": "resref", + "value": "deitzy" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Talisman" + }, + "RESREF": { + "type": "resref", + "value": "divine_talisman2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Talisman of Power" + }, + "RESREF": { + "type": "resref", + "value": "divine_talisman" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3c_fixedages" + }, + "STRREF": { + "type": "dword", + "value": 47193 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Gold Arena Token" + }, + "RESREF": { + "type": "resref", + "value": "coin003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Gold Arena Token" + }, + "RESREF": { + "type": "resref", + "value": "coin1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Hit Card" + }, + "RESREF": { + "type": "resref", + "value": "qxcove" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3b_buildstaff" + }, + "STRREF": { + "type": "dword", + "value": 47188 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_necrojournal" + }, + "STRREF": { + "type": "dword", + "value": 40988 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Nordock Token" + }, + "RESREF": { + "type": "resref", + "value": "nordock" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_necroparchme" + }, + "STRREF": { + "type": "dword", + "value": 40990 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "portabledoor" + }, + "STRREF": { + "type": "dword", + "value": 79801 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "portabledoor2" + }, + "STRREF": { + "type": "dword", + "value": 79801 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4d_prisonkey" + }, + "STRREF": { + "type": "dword", + "value": 24819 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6h_prisonkey" + }, + "STRREF": { + "type": "dword", + "value": 24819 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Rating Card" + }, + "RESREF": { + "type": "resref", + "value": "arscod" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q3melfring" + }, + "STRREF": { + "type": "dword", + "value": 47206 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Rod of Epic Protection" + }, + "RESREF": { + "type": "resref", + "value": "epic_prot" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Score Card" + }, + "RESREF": { + "type": "resref", + "value": "bzedyer" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "shadowgem" + }, + "STRREF": { + "type": "dword", + "value": 79806 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Silver Arena Token" + }, + "RESREF": { + "type": "resref", + "value": "coin005" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Silver Arena Token" + }, + "RESREF": { + "type": "resref", + "value": "coin2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Star Lake Flower" + }, + "RESREF": { + "type": "resref", + "value": "show_ticket" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Stat Card" + }, + "RESREF": { + "type": "resref", + "value": "ahuvpw" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3all_magscroll" + }, + "STRREF": { + "type": "dword", + "value": 47076 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "item_darkwind" + }, + "STRREF": { + "type": "dword", + "value": 79669 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "The Worthy Champion Medal" + }, + "RESREF": { + "type": "resref", + "value": "duel_pass" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "The Worthy Champion Medal" + }, + "RESREF": { + "type": "resref", + "value": "duel_pass2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Time Hand" + }, + "RESREF": { + "type": "resref", + "value": "time_hand" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q1_wordpower1" + }, + "STRREF": { + "type": "dword", + "value": 47153 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6690 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 3 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1tyr" + }, + "STRREF": { + "type": "dword", + "value": 24917 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Assassin's Stone" + }, + "RESREF": { + "type": "resref", + "value": "keepstone" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Chapter II Ticket" + }, + "RESREF": { + "type": "resref", + "value": "chapterstone" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q04g_sphere2" + }, + "STRREF": { + "type": "dword", + "value": 47082 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q04g_sphere" + }, + "STRREF": { + "type": "dword", + "value": 47080 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Dwarf Stone" + }, + "RESREF": { + "type": "resref", + "value": "dwarfstone" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Elven Gem" + }, + "RESREF": { + "type": "resref", + "value": "treestone" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s03iflask" + }, + "STRREF": { + "type": "dword", + "value": 24886 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q04g_sphere3" + }, + "STRREF": { + "type": "dword", + "value": 47084 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2statue" + }, + "STRREF": { + "type": "dword", + "value": 24947 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s04ibadgelvl01" + }, + "STRREF": { + "type": "dword", + "value": 24892 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s04ibadgelvl02" + }, + "STRREF": { + "type": "dword", + "value": 24894 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s04ibadgelvl03" + }, + "STRREF": { + "type": "dword", + "value": 24896 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s04ibadgelvl04" + }, + "STRREF": { + "type": "dword", + "value": 24898 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2urn" + }, + "STRREF": { + "type": "dword", + "value": 24949 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_helmedsword" + }, + "STRREF": { + "type": "dword", + "value": 60298 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1armor" + }, + "STRREF": { + "type": "dword", + "value": 24904 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2dmentalshield" + }, + "STRREF": { + "type": "dword", + "value": 107995 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1quill" + }, + "STRREF": { + "type": "dword", + "value": 24915 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q04h07_lock" + }, + "STRREF": { + "type": "dword", + "value": 1560 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s03ikindling" + }, + "STRREF": { + "type": "dword", + "value": 24890 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "nath_cloak" + }, + "STRREF": { + "type": "dword", + "value": 107974 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q4d12_note" + }, + "STRREF": { + "type": "dword", + "value": 47216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q4d17_notes" + }, + "STRREF": { + "type": "dword", + "value": 47218 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q04_pass" + }, + "STRREF": { + "type": "dword", + "value": 47087 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2portrait" + }, + "STRREF": { + "type": "dword", + "value": 24945 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2d5cellkey" + }, + "STRREF": { + "type": "dword", + "value": 107991 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s03ifog" + }, + "STRREF": { + "type": "dword", + "value": 24888 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s03iclay" + }, + "STRREF": { + "type": "dword", + "value": 24882 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q04g_book" + }, + "STRREF": { + "type": "dword", + "value": 47078 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s3fetish" + }, + "STRREF": { + "type": "dword", + "value": 24957 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "winds_01_key" + }, + "STRREF": { + "type": "dword", + "value": 79828 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "giantflesh" + }, + "STRREF": { + "type": "dword", + "value": 79649 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Shimclaw's Quest Stone" + }, + "RESREF": { + "type": "resref", + "value": "queststone" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6691 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 4 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q5ekey" + }, + "STRREF": { + "type": "dword", + "value": 24870 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2key2" + }, + "STRREF": { + "type": "dword", + "value": 24934 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2dkey1" + }, + "STRREF": { + "type": "dword", + "value": 63160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1key1" + }, + "STRREF": { + "type": "dword", + "value": 24912 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f18_blue" + }, + "STRREF": { + "type": "dword", + "value": 47135 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2brileykey" + }, + "STRREF": { + "type": "dword", + "value": 66211 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s3key2" + }, + "STRREF": { + "type": "dword", + "value": 24966 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s04ifightkey" + }, + "STRREF": { + "type": "dword", + "value": 24901 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "golemmakersring" + }, + "STRREF": { + "type": "dword", + "value": 79651 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f18_green" + }, + "STRREF": { + "type": "dword", + "value": 47137 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1fkey" + }, + "STRREF": { + "type": "dword", + "value": 24911 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2f01key" + }, + "STRREF": { + "type": "dword", + "value": 24930 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q3akey1" + }, + "STRREF": { + "type": "dword", + "value": 24830 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q2ckey" + }, + "STRREF": { + "type": "dword", + "value": 66477 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2ekey" + }, + "STRREF": { + "type": "dword", + "value": 24928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q3bkey2" + }, + "STRREF": { + "type": "dword", + "value": 24836 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q3bkey1" + }, + "STRREF": { + "type": "dword", + "value": 24834 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q3a00meldkey" + }, + "STRREF": { + "type": "dword", + "value": 24826 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q3amillykey" + }, + "STRREF": { + "type": "dword", + "value": 63153 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s2key1" + }, + "STRREF": { + "type": "dword", + "value": 24932 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f18_orange" + }, + "STRREF": { + "type": "dword", + "value": 47139 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q2_prisonkey" + }, + "STRREF": { + "type": "dword", + "value": 24819 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q2_prisfloor2" + }, + "STRREF": { + "type": "dword", + "value": 24823 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q2b_storeroom" + }, + "STRREF": { + "type": "dword", + "value": 24817 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f18_purple" + }, + "STRREF": { + "type": "dword", + "value": 47141 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f18_red" + }, + "STRREF": { + "type": "dword", + "value": 47143 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "scarabkey" + }, + "STRREF": { + "type": "dword", + "value": 79803 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "stonekey" + }, + "STRREF": { + "type": "dword", + "value": 75183 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q2_keytangle" + }, + "STRREF": { + "type": "dword", + "value": 24821 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q04itavernkey" + }, + "STRREF": { + "type": "dword", + "value": 25295 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m3q2f18_yellow" + }, + "STRREF": { + "type": "dword", + "value": 47145 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s3key1" + }, + "STRREF": { + "type": "dword", + "value": 24964 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6692 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6687 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 53 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_qtrstaff" + }, + "STRREF": { + "type": "dword", + "value": 79732 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_dblaxe" + }, + "STRREF": { + "type": "dword", + "value": 79692 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_dblsword" + }, + "STRREF": { + "type": "dword", + "value": 79696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_longsword" + }, + "STRREF": { + "type": "dword", + "value": 79720 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_rapier" + }, + "STRREF": { + "type": "dword", + "value": 79734 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_dagger" + }, + "STRREF": { + "type": "dword", + "value": 79689 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_hvyxbow" + }, + "STRREF": { + "type": "dword", + "value": 79710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_ltxbow" + }, + "STRREF": { + "type": "dword", + "value": 79726 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_darts" + }, + "STRREF": { + "type": "dword", + "value": 66655 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_bstdsword" + }, + "STRREF": { + "type": "dword", + "value": 79685 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_dblmace" + }, + "STRREF": { + "type": "dword", + "value": 79694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_ltflail" + }, + "STRREF": { + "type": "dword", + "value": 79722 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_lthammer" + }, + "STRREF": { + "type": "dword", + "value": 79724 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_gloves" + }, + "STRREF": { + "type": "dword", + "value": 79698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_warhammer" + }, + "STRREF": { + "type": "dword", + "value": 79750 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_spear" + }, + "STRREF": { + "type": "dword", + "value": 79748 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_scythe" + }, + "STRREF": { + "type": "dword", + "value": 79738 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_hvyflail" + }, + "STRREF": { + "type": "dword", + "value": 79708 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_kukri" + }, + "STRREF": { + "type": "dword", + "value": 79716 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4demonhalb" + }, + "STRREF": { + "type": "dword", + "value": 68438 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_katana" + }, + "STRREF": { + "type": "dword", + "value": 79714 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_longbow" + }, + "STRREF": { + "type": "dword", + "value": 79718 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_handaxe" + }, + "STRREF": { + "type": "dword", + "value": 79706 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_mace" + }, + "STRREF": { + "type": "dword", + "value": 79728 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_grtaxe" + }, + "STRREF": { + "type": "dword", + "value": 79700 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_grtsword" + }, + "STRREF": { + "type": "dword", + "value": 79702 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_shuriken" + }, + "STRREF": { + "type": "dword", + "value": 66657 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_battleaxe" + }, + "STRREF": { + "type": "dword", + "value": 79683 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_mornstar" + }, + "STRREF": { + "type": "dword", + "value": 79730 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_sling" + }, + "STRREF": { + "type": "dword", + "value": 79746 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_shortbow" + }, + "STRREF": { + "type": "dword", + "value": 79740 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_sickle" + }, + "STRREF": { + "type": "dword", + "value": 79744 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_club" + }, + "STRREF": { + "type": "dword", + "value": 79687 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_shrtsword" + }, + "STRREF": { + "type": "dword", + "value": 79742 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_kama" + }, + "STRREF": { + "type": "dword", + "value": 79712 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_throwaxe" + }, + "STRREF": { + "type": "dword", + "value": 66653 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "tickle" + }, + "STRREF": { + "type": "dword", + "value": 95118 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_scimitar" + }, + "STRREF": { + "type": "dword", + "value": 79736 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "matron_halberd" + }, + "STRREF": { + "type": "dword", + "value": 79704 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6732 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 27 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": " Div Archer Arrow" + }, + "RESREF": { + "type": "resref", + "value": "q6arrow002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": " Div Archer Arrow2" + }, + "RESREF": { + "type": "resref", + "value": "q6arrow026" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6arrow" + }, + "STRREF": { + "type": "dword", + "value": 1517 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammar013" + }, + "STRREF": { + "type": "dword", + "value": 75807 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammar014" + }, + "STRREF": { + "type": "dword", + "value": 79814 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammar016" + }, + "STRREF": { + "type": "dword", + "value": 79814 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammar015" + }, + "STRREF": { + "type": "dword", + "value": 79815 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammar017" + }, + "STRREF": { + "type": "dword", + "value": 79815 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Arrows" + }, + "RESREF": { + "type": "resref", + "value": "q6arrow001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Malevolent Arrows" + }, + "RESREF": { + "type": "resref", + "value": "q6arrow003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2cmarker" + }, + "STRREF": { + "type": "dword", + "value": 95111 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_wammar009" + }, + "STRREF": { + "type": "dword", + "value": 66920 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6757 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 28 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q7_wammbo012" + }, + "STRREF": { + "type": "dword", + "value": 40586 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q7_wammbo013" + }, + "STRREF": { + "type": "dword", + "value": 40586 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammbo012" + }, + "STRREF": { + "type": "dword", + "value": 40587 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammbo013" + }, + "STRREF": { + "type": "dword", + "value": 40587 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammbo015" + }, + "STRREF": { + "type": "dword", + "value": 79817 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammbo014" + }, + "STRREF": { + "type": "dword", + "value": 79818 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammbo016" + }, + "STRREF": { + "type": "dword", + "value": 79818 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "qx_bolts" + }, + "STRREF": { + "type": "dword", + "value": 109915 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_neg_bolts" + }, + "STRREF": { + "type": "dword", + "value": 108018 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Bolts" + }, + "RESREF": { + "type": "resref", + "value": "q7_wammbo014" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Malevolent Bolts" + }, + "RESREF": { + "type": "resref", + "value": "q7_wammbo015" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_poison_bolt" + }, + "STRREF": { + "type": "dword", + "value": 66922 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_bolts" + }, + "STRREF": { + "type": "dword", + "value": 66922 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammbo008" + }, + "STRREF": { + "type": "dword", + "value": 66922 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6758 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 29 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammbu012" + }, + "STRREF": { + "type": "dword", + "value": 79819 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammbu013" + }, + "STRREF": { + "type": "dword", + "value": 79820 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammbu015" + }, + "STRREF": { + "type": "dword", + "value": 79820 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammbu014" + }, + "STRREF": { + "type": "dword", + "value": 79821 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wammbu016" + }, + "STRREF": { + "type": "dword", + "value": 79821 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6759 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6756 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 32 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2d2bluegladaxe" + }, + "STRREF": { + "type": "dword", + "value": 107989 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1frostbringer" + }, + "STRREF": { + "type": "dword", + "value": 75225 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3greataxe" + }, + "STRREF": { + "type": "dword", + "value": 79772 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "qx_slasher" + }, + "STRREF": { + "type": "dword", + "value": 109921 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6762 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 30 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wmdwraxe009" + }, + "STRREF": { + "type": "dword", + "value": 91216 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Giblet Maker" + }, + "RESREF": { + "type": "resref", + "value": "wmdwraxe007" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Guard Axe" + }, + "RESREF": { + "type": "resref", + "value": "002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Guard Axe" + }, + "RESREF": { + "type": "resref", + "value": "003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "waxhn002" + }, + "STRREF": { + "type": "dword", + "value": 1532 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Handaxe" + }, + "RESREF": { + "type": "resref", + "value": "waxmhn005" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s4hurskaxe" + }, + "STRREF": { + "type": "dword", + "value": 64280 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "waxmhn009" + }, + "STRREF": { + "type": "dword", + "value": 13941 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Kamaji Axe" + }, + "RESREF": { + "type": "resref", + "value": "zep_bloodaxe002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Mighty Dwarven Paladin's War Axe " + }, + "RESREF": { + "type": "resref", + "value": "wmdwraxe008" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3handaxe" + }, + "STRREF": { + "type": "dword", + "value": 79775 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodaxe" + }, + "STRREF": { + "type": "dword", + "value": 16807748 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodaxe001" + }, + "STRREF": { + "type": "dword", + "value": 16807748 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6760 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 31 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "waxmbt006" + }, + "STRREF": { + "type": "dword", + "value": 13905 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "waxmbt012" + }, + "STRREF": { + "type": "dword", + "value": 95119 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "dor_battleaxe" + }, + "STRREF": { + "type": "dword", + "value": 75039 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4handaxe2" + }, + "STRREF": { + "type": "dword", + "value": 515 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1bguardaxe" + }, + "STRREF": { + "type": "dword", + "value": 75082 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3battleaxe" + }, + "STRREF": { + "type": "dword", + "value": 79765 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6761 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 490 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 33 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bastardsw" + }, + "STRREF": { + "type": "dword", + "value": 16807318 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bastardsw001" + }, + "STRREF": { + "type": "dword", + "value": 16807318 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmbs005" + }, + "STRREF": { + "type": "dword", + "value": 91250 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmbs009" + }, + "STRREF": { + "type": "dword", + "value": 14293 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "yj_bastard" + }, + "STRREF": { + "type": "dword", + "value": 109937 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hx_bastard_sword" + }, + "STRREF": { + "type": "dword", + "value": 109888 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Guardian Angels sword" + }, + "RESREF": { + "type": "resref", + "value": "wswbs002" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3bastardsword" + }, + "STRREF": { + "type": "dword", + "value": 79764 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6764 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 34 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_assassindagg" + }, + "STRREF": { + "type": "dword", + "value": 16807304 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "qx_bloodsucker" + }, + "STRREF": { + "type": "dword", + "value": 109914 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_brokendagg" + }, + "STRREF": { + "type": "dword", + "value": 16807344 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "cut1dagger" + }, + "STRREF": { + "type": "dword", + "value": 75034 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q1delilahdagr" + }, + "STRREF": { + "type": "dword", + "value": 191 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Div Archer Dagger" + }, + "RESREF": { + "type": "resref", + "value": "cut1dagger001" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2_deek_dagg" + }, + "STRREF": { + "type": "dword", + "value": 83078 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x2drowdagger" + }, + "STRREF": { + "type": "dword", + "value": 95134 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x2drowdagger001" + }, + "STRREF": { + "type": "dword", + "value": 95134 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "iw_dagger" + }, + "STRREF": { + "type": "dword", + "value": 95053 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmdg008" + }, + "STRREF": { + "type": "dword", + "value": 100238 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gauche" + }, + "STRREF": { + "type": "dword", + "value": 16807902 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1dhulcdagger" + }, + "STRREF": { + "type": "dword", + "value": 75094 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1dhulcdagger1" + }, + "STRREF": { + "type": "dword", + "value": 75094 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmdg005" + }, + "STRREF": { + "type": "dword", + "value": 14307 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmdg006" + }, + "STRREF": { + "type": "dword", + "value": 14309 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3dagger" + }, + "STRREF": { + "type": "dword", + "value": 79769 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmdg007" + }, + "STRREF": { + "type": "dword", + "value": 14311 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tanto" + }, + "STRREF": { + "type": "dword", + "value": 16807716 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmdg010" + }, + "STRREF": { + "type": "dword", + "value": 95121 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmdg011" + }, + "STRREF": { + "type": "dword", + "value": 95121 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x0_hen_xan_dag" + }, + "STRREF": { + "type": "dword", + "value": 75207 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x2_newdag" + }, + "STRREF": { + "type": "dword", + "value": 95130 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q5c04dagger" + }, + "STRREF": { + "type": "dword", + "value": 24860 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6765 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 104 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xswfa_002" + }, + "STRREF": { + "type": "dword", + "value": 16807330 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xswfa_003" + }, + "STRREF": { + "type": "dword", + "value": 16807342 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xswfa_004" + }, + "STRREF": { + "type": "dword", + "value": 16807398 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_falchion" + }, + "STRREF": { + "type": "dword", + "value": 16807436 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xswfa_001" + }, + "STRREF": { + "type": "dword", + "value": 16807436 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_planetarfal" + }, + "STRREF": { + "type": "dword", + "value": 16807636 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xswfa_005" + }, + "STRREF": { + "type": "dword", + "value": 16807674 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16807294 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 35 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q4_illuskpalsw" + }, + "STRREF": { + "type": "dword", + "value": 65568 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_shadow_blade" + }, + "STRREF": { + "type": "dword", + "value": 108023 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_brokengreats" + }, + "STRREF": { + "type": "dword", + "value": 16807346 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "iw_greatsword" + }, + "STRREF": { + "type": "dword", + "value": 95055 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmgs004" + }, + "STRREF": { + "type": "dword", + "value": 100239 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswgs002" + }, + "STRREF": { + "type": "dword", + "value": 167 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmgs005" + }, + "STRREF": { + "type": "dword", + "value": 91259 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Greatsword of Chaotic Energy" + }, + "RESREF": { + "type": "resref", + "value": "wswmgs003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1never01" + }, + "STRREF": { + "type": "dword", + "value": 64273 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1never02" + }, + "STRREF": { + "type": "dword", + "value": 64274 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1never03" + }, + "STRREF": { + "type": "dword", + "value": 64275 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s1never04" + }, + "STRREF": { + "type": "dword", + "value": 64276 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_nodachi" + }, + "STRREF": { + "type": "dword", + "value": 16807608 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_nodachi001" + }, + "STRREF": { + "type": "dword", + "value": 16807608 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1practicesword" + }, + "STRREF": { + "type": "dword", + "value": 75122 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3greatsword" + }, + "STRREF": { + "type": "dword", + "value": 79773 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "soul warriors sword" + }, + "RESREF": { + "type": "resref", + "value": "wswgs003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Steelegrind's Greatsword" + }, + "RESREF": { + "type": "resref", + "value": "wswgs004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1tinomen" + }, + "STRREF": { + "type": "dword", + "value": 75235 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6766 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 36 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "iw_fakelongsword" + }, + "STRREF": { + "type": "dword", + "value": 95054 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Blade of the Spider Queen" + }, + "RESREF": { + "type": "resref", + "value": "wswmls006" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_brokenlongs" + }, + "STRREF": { + "type": "dword", + "value": 16807350 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1crusadersblade" + }, + "STRREF": { + "type": "dword", + "value": 75219 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowlongsword1" + }, + "STRREF": { + "type": "dword", + "value": 95014 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowlongsword002" + }, + "STRREF": { + "type": "dword", + "value": 91195 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowlongsword3" + }, + "STRREF": { + "type": "dword", + "value": 91196 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "iw_longsword" + }, + "STRREF": { + "type": "dword", + "value": 95056 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cre_erinysw" + }, + "STRREF": { + "type": "dword", + "value": 16807432 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_erinyessw" + }, + "STRREF": { + "type": "dword", + "value": 16807432 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmls005" + }, + "STRREF": { + "type": "dword", + "value": 100240 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "holyavenger" + }, + "STRREF": { + "type": "dword", + "value": 83049 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "2q6_hopeslayer" + }, + "STRREF": { + "type": "dword", + "value": 42561 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_jian" + }, + "STRREF": { + "type": "dword", + "value": 16807538 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Kamaji Sword" + }, + "RESREF": { + "type": "resref", + "value": "zep_unholysw002" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswls003" + }, + "STRREF": { + "type": "dword", + "value": 166 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmls002" + }, + "STRREF": { + "type": "dword", + "value": 66645 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmls003" + }, + "STRREF": { + "type": "dword", + "value": 66645 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmls004" + }, + "STRREF": { + "type": "dword", + "value": 91269 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Longsword of the Eminent Tactician" + }, + "RESREF": { + "type": "resref", + "value": "wswmls007" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x0_hen_mis_lswrd" + }, + "STRREF": { + "type": "dword", + "value": 75205 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_planetarls" + }, + "STRREF": { + "type": "dword", + "value": 16807640 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_rasowrd" + }, + "STRREF": { + "type": "dword", + "value": 108105 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3longsword" + }, + "STRREF": { + "type": "dword", + "value": 79781 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "nw_wswmls003" + }, + "STRREF": { + "type": "dword", + "value": 14350 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Tyriel's Sword" + }, + "RESREF": { + "type": "resref", + "value": "wswls002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Tyriel's Sword2" + }, + "RESREF": { + "type": "resref", + "value": "wswls004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_unholysw" + }, + "STRREF": { + "type": "dword", + "value": 16807750 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_unholysw001" + }, + "STRREF": { + "type": "dword", + "value": 16807750 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "war cupids sword" + }, + "RESREF": { + "type": "resref", + "value": "wswls035" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6767 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 37 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "6 Fingered" + }, + "RESREF": { + "type": "resref", + "value": "wswmrp003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmsc003" + }, + "STRREF": { + "type": "dword", + "value": 83106 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_armandspoint" + }, + "STRREF": { + "type": "dword", + "value": 16807302 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Biblical Katana of the Covenant" + }, + "RESREF": { + "type": "resref", + "value": "wswka003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Biblical Rapier of Salot" + }, + "RESREF": { + "type": "resref", + "value": "wswmrp007" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmrp005" + }, + "STRREF": { + "type": "dword", + "value": 110405 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "debugger Sword" + }, + "RESREF": { + "type": "resref", + "value": "debugsw" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "dee_rapier" + }, + "STRREF": { + "type": "dword", + "value": 75037 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "qx_sting" + }, + "STRREF": { + "type": "dword", + "value": 109925 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowkatana1" + }, + "STRREF": { + "type": "dword", + "value": 95012 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Epic Scimitar" + }, + "RESREF": { + "type": "resref", + "value": "wswmsc004" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "God Rapier" + }, + "RESREF": { + "type": "resref", + "value": "wswmrp006" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Heratic Scim" + }, + "RESREF": { + "type": "resref", + "value": "wswmsc006" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Heratic Scim2" + }, + "RESREF": { + "type": "resref", + "value": "wswmsc008" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Katana +6" + }, + "RESREF": { + "type": "resref", + "value": "wswmka004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmka005" + }, + "STRREF": { + "type": "dword", + "value": 91264 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Katana of the Dragons" + }, + "RESREF": { + "type": "resref", + "value": "wswmka006" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmka007" + }, + "STRREF": { + "type": "dword", + "value": 91267 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_keenrapier" + }, + "STRREF": { + "type": "dword", + "value": 16807650 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_rarappier" + }, + "STRREF": { + "type": "dword", + "value": 108104 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3katana" + }, + "STRREF": { + "type": "dword", + "value": 79778 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3rapier" + }, + "STRREF": { + "type": "dword", + "value": 79788 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3scimitar" + }, + "STRREF": { + "type": "dword", + "value": 79789 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmsc005" + }, + "STRREF": { + "type": "dword", + "value": 91282 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Shiva's Scimitar" + }, + "RESREF": { + "type": "resref", + "value": "wswsc002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Shogun's Katana" + }, + "RESREF": { + "type": "resref", + "value": "wswka002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Shogun's Katana2" + }, + "RESREF": { + "type": "resref", + "value": "wswka026" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Skele Scim" + }, + "RESREF": { + "type": "resref", + "value": "wswmsc007" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6699 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 38 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_baatjamdo" + }, + "STRREF": { + "type": "dword", + "value": 16807310 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_brokenshorts" + }, + "STRREF": { + "type": "dword", + "value": 16807348 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_browniesword" + }, + "STRREF": { + "type": "dword", + "value": 16807358 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1dornasword" + }, + "STRREF": { + "type": "dword", + "value": 75097 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowshortsword1" + }, + "STRREF": { + "type": "dword", + "value": 95020 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "drowshortswor002" + }, + "STRREF": { + "type": "dword", + "value": 95019 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "iw_shortsword" + }, + "STRREF": { + "type": "dword", + "value": 95057 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "fight002" + }, + "STRREF": { + "type": "dword", + "value": 95025 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "fright" + }, + "STRREF": { + "type": "dword", + "value": 95026 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "item002" + }, + "STRREF": { + "type": "dword", + "value": 83061 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ninjato" + }, + "STRREF": { + "type": "dword", + "value": 16807604 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3shortsword" + }, + "STRREF": { + "type": "dword", + "value": 79791 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4hand1sword" + }, + "STRREF": { + "type": "dword", + "value": 25130 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m4hand1sword001" + }, + "STRREF": { + "type": "dword", + "value": 25130 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmss005" + }, + "STRREF": { + "type": "dword", + "value": 91286 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_wswmss008" + }, + "STRREF": { + "type": "dword", + "value": 14393 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wswmss003" + }, + "STRREF": { + "type": "dword", + "value": 110407 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wakizashi" + }, + "STRREF": { + "type": "dword", + "value": 16807770 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6768 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6763 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 39 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1batonoftheholy" + }, + "STRREF": { + "type": "dword", + "value": 75217 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bokken" + }, + "STRREF": { + "type": "dword", + "value": 16807336 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hanbo" + }, + "STRREF": { + "type": "dword", + "value": 16807502 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3club" + }, + "STRREF": { + "type": "dword", + "value": 79768 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tetsubo" + }, + "STRREF": { + "type": "dword", + "value": 16807718 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wblmcl007" + }, + "STRREF": { + "type": "dword", + "value": 13953 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6769 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 40 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hen_valflail" + }, + "STRREF": { + "type": "dword", + "value": 107957 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wblmfl006" + }, + "STRREF": { + "type": "dword", + "value": 91124 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wblmfh011" + }, + "STRREF": { + "type": "dword", + "value": 13973 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_raflail" + }, + "STRREF": { + "type": "dword", + "value": 108103 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3heavyflail" + }, + "STRREF": { + "type": "dword", + "value": 79776 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3ltflail" + }, + "STRREF": { + "type": "dword", + "value": 79782 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_sabal_flail" + }, + "STRREF": { + "type": "dword", + "value": 108107 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wblfh002" + }, + "STRREF": { + "type": "dword", + "value": 108119 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6770 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 41 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_azerhammer" + }, + "STRREF": { + "type": "dword", + "value": 16807306 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xblma_002" + }, + "STRREF": { + "type": "dword", + "value": 16807442 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wblmhw005" + }, + "STRREF": { + "type": "dword", + "value": 100236 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1icegrinder" + }, + "STRREF": { + "type": "dword", + "value": 75227 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xblma_001" + }, + "STRREF": { + "type": "dword", + "value": 16807580 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xblma_003" + }, + "STRREF": { + "type": "dword", + "value": 16807582 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xblma_005" + }, + "STRREF": { + "type": "dword", + "value": 16807582 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q4_merkilshammer" + }, + "STRREF": { + "type": "dword", + "value": 108056 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Mjollnir" + }, + "RESREF": { + "type": "resref", + "value": "wblhw017" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Mjollnir2" + }, + "RESREF": { + "type": "resref", + "value": "wblhw018" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3lthammer" + }, + "STRREF": { + "type": "dword", + "value": 79783 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3warhammer" + }, + "STRREF": { + "type": "dword", + "value": 79794 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Sledge Hammer +7" + }, + "RESREF": { + "type": "resref", + "value": "zep_azerhamme001" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xblma_004" + }, + "STRREF": { + "type": "dword", + "value": 16807706 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "graybanaxe" + }, + "STRREF": { + "type": "dword", + "value": 95029 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wblmhw006" + }, + "STRREF": { + "type": "dword", + "value": 91133 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6771 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 42 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xblmh_001" + }, + "STRREF": { + "type": "dword", + "value": 16807506 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xblmh_004" + }, + "STRREF": { + "type": "dword", + "value": 16807508 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xblmh_002" + }, + "STRREF": { + "type": "dword", + "value": 16807510 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_dist_mace" + }, + "STRREF": { + "type": "dword", + "value": 108005 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wblmml006" + }, + "STRREF": { + "type": "dword", + "value": 108130 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xblmh_005" + }, + "STRREF": { + "type": "dword", + "value": 16807572 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xblmh_003" + }, + "STRREF": { + "type": "dword", + "value": 16807576 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3mace" + }, + "STRREF": { + "type": "dword", + "value": 79784 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6772 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 61 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1ruralstar" + }, + "STRREF": { + "type": "dword", + "value": 75129 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "qx_nemesis" + }, + "STRREF": { + "type": "dword", + "value": 109919 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3morningstar" + }, + "STRREF": { + "type": "dword", + "value": 79786 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wblmms012" + }, + "STRREF": { + "type": "dword", + "value": 95120 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6817 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 491 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 46 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q5_anduvir" + }, + "STRREF": { + "type": "dword", + "value": 108088 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xdbsc_003" + }, + "STRREF": { + "type": "dword", + "value": 16807328 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xdbsc_004" + }, + "STRREF": { + "type": "dword", + "value": 16807334 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chan" + }, + "STRREF": { + "type": "dword", + "value": 16807372 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xdbsc_001" + }, + "STRREF": { + "type": "dword", + "value": 16807412 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xdbsc_002" + }, + "STRREF": { + "type": "dword", + "value": 16807414 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "honoranddeath" + }, + "STRREF": { + "type": "dword", + "value": 95034 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "horodrim staff" + }, + "RESREF": { + "type": "resref", + "value": "wdbqs002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "horodrim staff2" + }, + "RESREF": { + "type": "resref", + "value": "wdbqs003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2d2redgladsword" + }, + "STRREF": { + "type": "dword", + "value": 107990 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2d2redsword2" + }, + "STRREF": { + "type": "dword", + "value": 107990 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3quarterstaff" + }, + "STRREF": { + "type": "dword", + "value": 79787 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3diremace" + }, + "STRREF": { + "type": "dword", + "value": 79770 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3doubleaxe" + }, + "STRREF": { + "type": "dword", + "value": 79771 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod32bladesword" + }, + "STRREF": { + "type": "dword", + "value": 79762 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "shadowsword" + }, + "STRREF": { + "type": "dword", + "value": 79808 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q6_staffascen" + }, + "STRREF": { + "type": "dword", + "value": 14147 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "walkingstick" + }, + "STRREF": { + "type": "dword", + "value": 79813 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6775 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 47 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_goad" + }, + "STRREF": { + "type": "dword", + "value": 16807474 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wspmsc009" + }, + "STRREF": { + "type": "dword", + "value": 14285 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "hatred" + }, + "STRREF": { + "type": "dword", + "value": 107955 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_wpmwhip_h001" + }, + "STRREF": { + "type": "dword", + "value": 90995 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_wpmwhip_h002" + }, + "STRREF": { + "type": "dword", + "value": 90995 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Hellish Whip" + }, + "RESREF": { + "type": "resref", + "value": "it_wpmwhip_h003" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_jitte" + }, + "STRREF": { + "type": "dword", + "value": 16807540 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "testkama" + }, + "STRREF": { + "type": "dword", + "value": 91238 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wspmka005" + }, + "STRREF": { + "type": "dword", + "value": 91238 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wspmka006" + }, + "STRREF": { + "type": "dword", + "value": 91238 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Kama +7" + }, + "RESREF": { + "type": "resref", + "value": "testkama001" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "katanaofthenorth" + }, + "STRREF": { + "type": "dword", + "value": 75059 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_katar" + }, + "STRREF": { + "type": "dword", + "value": 16807544 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lokkukri" + }, + "STRREF": { + "type": "dword", + "value": 16807548 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_kusari" + }, + "STRREF": { + "type": "dword", + "value": 16807952 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_manriki" + }, + "STRREF": { + "type": "dword", + "value": 16807950 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_wpmwhip008" + }, + "STRREF": { + "type": "dword", + "value": 104011 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xswgs_001" + }, + "STRREF": { + "type": "dword", + "value": 16807588 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_xswml_001" + }, + "STRREF": { + "type": "dword", + "value": 16807590 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_nunchaku" + }, + "STRREF": { + "type": "dword", + "value": 16807610 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3kama" + }, + "STRREF": { + "type": "dword", + "value": 79777 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3kukri" + }, + "STRREF": { + "type": "dword", + "value": 79779 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3sickle" + }, + "STRREF": { + "type": "dword", + "value": 79792 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sai" + }, + "STRREF": { + "type": "dword", + "value": 16807662 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sap" + }, + "STRREF": { + "type": "dword", + "value": 16807668 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "strife" + }, + "STRREF": { + "type": "dword", + "value": 108126 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tonfa" + }, + "STRREF": { + "type": "dword", + "value": 16807738 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q8_matron_whip" + }, + "STRREF": { + "type": "dword", + "value": 108119 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_windfire" + }, + "STRREF": { + "type": "dword", + "value": 16807776 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2bs_zombiekama" + }, + "STRREF": { + "type": "dword", + "value": 95096 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6776 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 48 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Sceptor" + }, + "RESREF": { + "type": "resref", + "value": "wmgmrd004" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Malevolent Sceptor" + }, + "RESREF": { + "type": "resref", + "value": "wmgmrd007" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Phoenix Rod" + }, + "RESREF": { + "type": "resref", + "value": "wrathrod" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Rod of Devastation" + }, + "RESREF": { + "type": "resref", + "value": "rodofruinatio001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Rod of Epic Striking" + }, + "RESREF": { + "type": "resref", + "value": "strik_rod" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Rod of Etheralness" + }, + "RESREF": { + "type": "resref", + "value": "wmgmrd005" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_rod_fire" + }, + "STRREF": { + "type": "dword", + "value": 108020 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Rod of Health" + }, + "RESREF": { + "type": "resref", + "value": "wmgmrd003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Rod of Negation" + }, + "RESREF": { + "type": "resref", + "value": "wmgmrd006" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x2_rodresurrect" + }, + "STRREF": { + "type": "dword", + "value": 14166 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Rod of Ruination" + }, + "RESREF": { + "type": "resref", + "value": "rodofruination" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1rodofmajesty" + }, + "STRREF": { + "type": "dword", + "value": 75234 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6778 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 49 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Damned Staff" + }, + "RESREF": { + "type": "resref", + "value": "wmgst007" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dragonclawf" + }, + "STRREF": { + "type": "dword", + "value": 16807416 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dragonclawm" + }, + "STRREF": { + "type": "dword", + "value": 16807418 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_druidstf" + }, + "STRREF": { + "type": "dword", + "value": 16807426 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_druidstm" + }, + "STRREF": { + "type": "dword", + "value": 16807428 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2bduergarstaff" + }, + "STRREF": { + "type": "dword", + "value": 95082 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gnarledstaff" + }, + "STRREF": { + "type": "dword", + "value": 16807472 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "horodrim staff" + }, + "RESREF": { + "type": "resref", + "value": "wmgst003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Mage Staff" + }, + "RESREF": { + "type": "resref", + "value": "wmgst005" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Matriarch Staff" + }, + "RESREF": { + "type": "resref", + "value": "wmgst002" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wmgst001" + }, + "STRREF": { + "type": "dword", + "value": 24989 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "qx_staff" + }, + "STRREF": { + "type": "dword", + "value": 109923 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "it_novel009" + }, + "STRREF": { + "type": "dword", + "value": 100204 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q3cstaff" + }, + "STRREF": { + "type": "dword", + "value": 24840 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wmgst006" + }, + "STRREF": { + "type": "dword", + "value": 14182 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q3_armand_staff" + }, + "STRREF": { + "type": "dword", + "value": 110403 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wmgst004" + }, + "STRREF": { + "type": "dword", + "value": 14178 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2dhalstaff" + }, + "STRREF": { + "type": "dword", + "value": 13520 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6779 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 50 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s3inviswand" + }, + "STRREF": { + "type": "dword", + "value": 24962 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s3darkwand" + }, + "STRREF": { + "type": "dword", + "value": 24956 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s3burnwand" + }, + "STRREF": { + "type": "dword", + "value": 24952 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1s3greswand" + }, + "STRREF": { + "type": "dword", + "value": 24960 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3_karburn" + }, + "STRREF": { + "type": "dword", + "value": 68131 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m2q3_karwand" + }, + "STRREF": { + "type": "dword", + "value": 68133 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1q0wmgwn" + }, + "STRREF": { + "type": "dword", + "value": 14186 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6780 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6777 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 106 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_heavypick001" + }, + "STRREF": { + "type": "dword", + "value": 16807494 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_heavypick" + }, + "STRREF": { + "type": "dword", + "value": 16807512 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lightpick" + }, + "STRREF": { + "type": "dword", + "value": 16807562 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lightpick001" + }, + "STRREF": { + "type": "dword", + "value": 16807708 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16807290 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 51 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1fleshripper" + }, + "STRREF": { + "type": "dword", + "value": 75224 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wplhb002" + }, + "STRREF": { + "type": "dword", + "value": 175 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wplmhb003" + }, + "STRREF": { + "type": "dword", + "value": 66626 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_kwandao" + }, + "STRREF": { + "type": "dword", + "value": 16807550 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_nagamaki" + }, + "STRREF": { + "type": "dword", + "value": 16807598 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_naginata" + }, + "STRREF": { + "type": "dword", + "value": 16807600 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_poisspear" + }, + "STRREF": { + "type": "dword", + "value": 16807644 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pudao" + }, + "STRREF": { + "type": "dword", + "value": 16807648 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wplmss003" + }, + "STRREF": { + "type": "dword", + "value": 109936 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3halberd" + }, + "STRREF": { + "type": "dword", + "value": 79774 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3scythe" + }, + "STRREF": { + "type": "dword", + "value": 79790 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mod3spear" + }, + "STRREF": { + "type": "dword", + "value": 79793 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wplmsc005" + }, + "STRREF": { + "type": "dword", + "value": 91230 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "item001" + }, + "STRREF": { + "type": "dword", + "value": 83059 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2a_teb_scythe" + }, + "STRREF": { + "type": "dword", + "value": 107980 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_yari" + }, + "STRREF": { + "type": "dword", + "value": 16807786 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 489 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 43 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q2atrainingcross" + }, + "STRREF": { + "type": "dword", + "value": 107988 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "dee_lxbow" + }, + "STRREF": { + "type": "dword", + "value": 75035 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wbwxh003" + }, + "STRREF": { + "type": "dword", + "value": 173 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wbwxh002" + }, + "STRREF": { + "type": "dword", + "value": 79826 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wbwxl002" + }, + "STRREF": { + "type": "dword", + "value": 79827 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6774 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 44 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_daikyu" + }, + "STRREF": { + "type": "dword", + "value": 16807396 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Dark Cupids bow" + }, + "RESREF": { + "type": "resref", + "value": "wbwln004" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "x1eliaksvengence" + }, + "STRREF": { + "type": "dword", + "value": 75222 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wbwmln009" + }, + "STRREF": { + "type": "dword", + "value": 14053 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wbwln002" + }, + "STRREF": { + "type": "dword", + "value": 79822 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wbwmln010" + }, + "STRREF": { + "type": "dword", + "value": 79824 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1foot_bow" + }, + "STRREF": { + "type": "dword", + "value": 75102 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "q1foot_bow002" + }, + "STRREF": { + "type": "dword", + "value": 75102 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "War Cupids bow" + }, + "RESREF": { + "type": "resref", + "value": "wbwln003" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6819 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 45 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wbwmsh003" + }, + "STRREF": { + "type": "dword", + "value": 108131 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mightybowofbaato" + }, + "STRREF": { + "type": "dword", + "value": 109909 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wbwsh002" + }, + "STRREF": { + "type": "dword", + "value": 79825 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6820 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 62 + }, + "STRREF": { + "type": "dword", + "value": 6821 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6818 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 52 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chakram" + }, + "STRREF": { + "type": "dword", + "value": 16807370 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmdt011" + }, + "STRREF": { + "type": "dword", + "value": 79833 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmdt012" + }, + "STRREF": { + "type": "dword", + "value": 79834 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmdt013" + }, + "STRREF": { + "type": "dword", + "value": 79834 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmdt014" + }, + "STRREF": { + "type": "dword", + "value": 79835 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmdt006" + }, + "STRREF": { + "type": "dword", + "value": 100241 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmsh011" + }, + "STRREF": { + "type": "dword", + "value": 79836 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmsh012" + }, + "STRREF": { + "type": "dword", + "value": 79837 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmsh013" + }, + "STRREF": { + "type": "dword", + "value": 79837 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmsh014" + }, + "STRREF": { + "type": "dword", + "value": 79838 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmax011" + }, + "STRREF": { + "type": "dword", + "value": 79830 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmax012" + }, + "STRREF": { + "type": "dword", + "value": 79831 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmax013" + }, + "STRREF": { + "type": "dword", + "value": 79831 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "wthmax014" + }, + "STRREF": { + "type": "dword", + "value": 79832 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 494 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 105 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_trident3" + }, + "STRREF": { + "type": "dword", + "value": 16807542 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_trident2" + }, + "STRREF": { + "type": "dword", + "value": 16807660 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_trident004" + }, + "STRREF": { + "type": "dword", + "value": 16807730 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_trident" + }, + "STRREF": { + "type": "dword", + "value": 16807740 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16807295 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 500 + } + } + ] + } +} diff --git a/_module/itp/placeablepalcus.itp.json b/_module/itp/placeablepalcus.itp.json new file mode 100644 index 0000000..8ad07bc --- /dev/null +++ b/_module/itp/placeablepalcus.itp.json @@ -0,0 +1,19285 @@ +{ + "__data_type": "ITP ", + "MAIN": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 100 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_orctrebdy001" + }, + "STRREF": { + "type": "dword", + "value": 16813166 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810715 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 99 + }, + "STRREF": { + "type": "dword", + "value": 16810714 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 98 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_barricade" + }, + "STRREF": { + "type": "dword", + "value": 16811100 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fort" + }, + "STRREF": { + "type": "dword", + "value": 16811884 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_orcspike002" + }, + "STRREF": { + "type": "dword", + "value": 16812042 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_orcspike001" + }, + "STRREF": { + "type": "dword", + "value": 16812256 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_oilcauldron" + }, + "STRREF": { + "type": "dword", + "value": 16812384 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810713 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 7 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_katnadnsu001" + }, + "STRREF": { + "type": "dword", + "value": 16812140 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_katnadnsu002" + }, + "STRREF": { + "type": "dword", + "value": 16812140 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_katnadnsu003" + }, + "STRREF": { + "type": "dword", + "value": 16812140 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_weaponrck002" + }, + "STRREF": { + "type": "dword", + "value": 16812218 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_swordrack001" + }, + "STRREF": { + "type": "dword", + "value": 16812392 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_swordrack002" + }, + "STRREF": { + "type": "dword", + "value": 16812602 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_spearrack" + }, + "STRREF": { + "type": "dword", + "value": 16812820 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vulture001" + }, + "STRREF": { + "type": "dword", + "value": 16813404 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_weaponrck001" + }, + "STRREF": { + "type": "dword", + "value": 16813492 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wingchundmmy" + }, + "STRREF": { + "type": "dword", + "value": 16813556 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810716 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 97 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_arbalest" + }, + "STRREF": { + "type": "dword", + "value": 16811022 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gntcrossbow" + }, + "STRREF": { + "type": "dword", + "value": 16811062 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_belfry" + }, + "STRREF": { + "type": "dword", + "value": 16811142 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_belier" + }, + "STRREF": { + "type": "dword", + "value": 16811144 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bore" + }, + "STRREF": { + "type": "dword", + "value": 16811206 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bowballista" + }, + "STRREF": { + "type": "dword", + "value": 16811220 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bricole" + }, + "STRREF": { + "type": "dword", + "value": 16811280 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cannon001" + }, + "STRREF": { + "type": "dword", + "value": 16811360 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_couillard" + }, + "STRREF": { + "type": "dword", + "value": 16811542 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drillmouse" + }, + "STRREF": { + "type": "dword", + "value": 16811694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_galleryshed" + }, + "STRREF": { + "type": "dword", + "value": 16811922 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hoist" + }, + "STRREF": { + "type": "dword", + "value": 16812052 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cannon002" + }, + "STRREF": { + "type": "dword", + "value": 16812206 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mangonneau" + }, + "STRREF": { + "type": "dword", + "value": 16812284 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mantlet" + }, + "STRREF": { + "type": "dword", + "value": 16812286 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mechladder" + }, + "STRREF": { + "type": "dword", + "value": 16812312 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_onager" + }, + "STRREF": { + "type": "dword", + "value": 16812388 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_perrier" + }, + "STRREF": { + "type": "dword", + "value": 16812422 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rckprjectles" + }, + "STRREF": { + "type": "dword", + "value": 16812638 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scorpion" + }, + "STRREF": { + "type": "dword", + "value": 16812692 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_siegemine" + }, + "STRREF": { + "type": "dword", + "value": 16812766 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_springal" + }, + "STRREF": { + "type": "dword", + "value": 16812830 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tonnelon" + }, + "STRREF": { + "type": "dword", + "value": 16813152 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_trebuchet" + }, + "STRREF": { + "type": "dword", + "value": 16813230 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_arbaletatour" + }, + "STRREF": { + "type": "dword", + "value": 16813368 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810712 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6783 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 59 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cep001" + }, + "STRREF": { + "type": "dword", + "value": 16811400 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gateblock001" + }, + "STRREF": { + "type": "dword", + "value": 16811928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gateblock003" + }, + "STRREF": { + "type": "dword", + "value": 16811928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gateblock004" + }, + "STRREF": { + "type": "dword", + "value": 16811928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gateblock005" + }, + "STRREF": { + "type": "dword", + "value": 16811928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gateblock006" + }, + "STRREF": { + "type": "dword", + "value": 16811928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gateblock007" + }, + "STRREF": { + "type": "dword", + "value": 16811928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gateblock008" + }, + "STRREF": { + "type": "dword", + "value": 16811928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gateblock009" + }, + "STRREF": { + "type": "dword", + "value": 16811928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gateblock010" + }, + "STRREF": { + "type": "dword", + "value": 16811928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gateblock011" + }, + "STRREF": { + "type": "dword", + "value": 16811928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sgateblck001" + }, + "STRREF": { + "type": "dword", + "value": 16811930 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Restless Dead Respawn Point" + }, + "RESREF": { + "type": "resref", + "value": "zep_restded_resp" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810847 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 130 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_arbor001" + }, + "STRREF": { + "type": "dword", + "value": 16811024 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_arch001" + }, + "STRREF": { + "type": "dword", + "value": 16811026 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_arch002" + }, + "STRREF": { + "type": "dword", + "value": 16811028 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_arch004" + }, + "STRREF": { + "type": "dword", + "value": 16811030 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_arch003" + }, + "STRREF": { + "type": "dword", + "value": 16811032 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_arch005" + }, + "STRREF": { + "type": "dword", + "value": 16811034 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_torigate" + }, + "STRREF": { + "type": "dword", + "value": 16813162 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810768 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 129 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_redawning002" + }, + "STRREF": { + "type": "dword", + "value": 16811162 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_redawning004" + }, + "STRREF": { + "type": "dword", + "value": 16811188 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_redawning001" + }, + "STRREF": { + "type": "dword", + "value": 16811954 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_redawning005" + }, + "STRREF": { + "type": "dword", + "value": 16811976 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_madonnawndow" + }, + "STRREF": { + "type": "dword", + "value": 16812262 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_redawning" + }, + "STRREF": { + "type": "dword", + "value": 16812592 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_redawning006" + }, + "STRREF": { + "type": "dword", + "value": 16812616 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mdnnawndw001" + }, + "STRREF": { + "type": "dword", + "value": 16812672 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_woodawn02" + }, + "STRREF": { + "type": "dword", + "value": 16812814 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_redawning003" + }, + "STRREF": { + "type": "dword", + "value": 16813040 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_redawning007" + }, + "STRREF": { + "type": "dword", + "value": 16813042 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_window001" + }, + "STRREF": { + "type": "dword", + "value": 16813538 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_window005" + }, + "STRREF": { + "type": "dword", + "value": 16813540 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_window006" + }, + "STRREF": { + "type": "dword", + "value": 16813542 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_window007" + }, + "STRREF": { + "type": "dword", + "value": 16813544 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_window008" + }, + "STRREF": { + "type": "dword", + "value": 16813546 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_window002" + }, + "STRREF": { + "type": "dword", + "value": 16813548 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_window003" + }, + "STRREF": { + "type": "dword", + "value": 16813550 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_window004" + }, + "STRREF": { + "type": "dword", + "value": 16813552 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_woodawn01" + }, + "STRREF": { + "type": "dword", + "value": 16813562 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810767 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 154 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bdoor001" + }, + "STRREF": { + "type": "dword", + "value": 16811666 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bdoor002" + }, + "STRREF": { + "type": "dword", + "value": 16811668 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_doors006" + }, + "STRREF": { + "type": "dword", + "value": 16812212 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_doors008" + }, + "STRREF": { + "type": "dword", + "value": 16812212 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_doors001" + }, + "STRREF": { + "type": "dword", + "value": 16812220 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_doors007" + }, + "STRREF": { + "type": "dword", + "value": 16812220 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_doors011" + }, + "STRREF": { + "type": "dword", + "value": 16812220 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_doors004" + }, + "STRREF": { + "type": "dword", + "value": 16812324 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_doors003" + }, + "STRREF": { + "type": "dword", + "value": 16812326 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_doors005" + }, + "STRREF": { + "type": "dword", + "value": 16812788 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_doors010" + }, + "STRREF": { + "type": "dword", + "value": 16812810 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_doors009" + }, + "STRREF": { + "type": "dword", + "value": 16812812 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810772 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 132 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence006" + }, + "STRREF": { + "type": "dword", + "value": 16811716 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence007" + }, + "STRREF": { + "type": "dword", + "value": 16811718 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence008" + }, + "STRREF": { + "type": "dword", + "value": 16811720 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence009" + }, + "STRREF": { + "type": "dword", + "value": 16811722 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence010" + }, + "STRREF": { + "type": "dword", + "value": 16811724 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence004" + }, + "STRREF": { + "type": "dword", + "value": 16811726 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence003" + }, + "STRREF": { + "type": "dword", + "value": 16811728 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence002" + }, + "STRREF": { + "type": "dword", + "value": 16811730 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence" + }, + "STRREF": { + "type": "dword", + "value": 16811732 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence005" + }, + "STRREF": { + "type": "dword", + "value": 16811734 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence012" + }, + "STRREF": { + "type": "dword", + "value": 16811736 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence013" + }, + "STRREF": { + "type": "dword", + "value": 16811738 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fencebroken" + }, + "STRREF": { + "type": "dword", + "value": 16811740 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_swall001" + }, + "STRREF": { + "type": "dword", + "value": 16812724 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_swall003" + }, + "STRREF": { + "type": "dword", + "value": 16812726 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_swall002" + }, + "STRREF": { + "type": "dword", + "value": 16812728 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_thornwall" + }, + "STRREF": { + "type": "dword", + "value": 16813106 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence011" + }, + "STRREF": { + "type": "dword", + "value": 16813418 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wall001" + }, + "STRREF": { + "type": "dword", + "value": 16813460 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wall002" + }, + "STRREF": { + "type": "dword", + "value": 16813462 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wall003" + }, + "STRREF": { + "type": "dword", + "value": 16813464 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fence001" + }, + "STRREF": { + "type": "dword", + "value": 16813466 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810770 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 131 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fountain002" + }, + "STRREF": { + "type": "dword", + "value": 16811886 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fountain003" + }, + "STRREF": { + "type": "dword", + "value": 16811888 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fountain004" + }, + "STRREF": { + "type": "dword", + "value": 16811890 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fountain005" + }, + "STRREF": { + "type": "dword", + "value": 16811892 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fountain006" + }, + "STRREF": { + "type": "dword", + "value": 16811894 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pool001" + }, + "STRREF": { + "type": "dword", + "value": 16812538 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pool005" + }, + "STRREF": { + "type": "dword", + "value": 16812540 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pool004" + }, + "STRREF": { + "type": "dword", + "value": 16812542 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pool002" + }, + "STRREF": { + "type": "dword", + "value": 16812544 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pool003" + }, + "STRREF": { + "type": "dword", + "value": 16812546 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810769 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 125 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dun" + }, + "STRREF": { + "type": "dword", + "value": 16811702 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_house001" + }, + "STRREF": { + "type": "dword", + "value": 16812058 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cabin001" + }, + "STRREF": { + "type": "dword", + "value": 16812250 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810762 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 133 + }, + "STRREF": { + "type": "dword", + "value": 16810771 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 128 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_leanto001" + }, + "STRREF": { + "type": "dword", + "value": 16812226 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_leanto002" + }, + "STRREF": { + "type": "dword", + "value": 16812228 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_outhouse001" + }, + "STRREF": { + "type": "dword", + "value": 16812400 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shack001" + }, + "STRREF": { + "type": "dword", + "value": 16812734 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shack002" + }, + "STRREF": { + "type": "dword", + "value": 16812736 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shed001" + }, + "STRREF": { + "type": "dword", + "value": 16812742 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shelter" + }, + "STRREF": { + "type": "dword", + "value": 16812748 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810766 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 127 + }, + "STRREF": { + "type": "dword", + "value": 16810765 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 134 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_diptych" + }, + "STRREF": { + "type": "dword", + "value": 16811654 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_holywater" + }, + "STRREF": { + "type": "dword", + "value": 16814088 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_incense" + }, + "STRREF": { + "type": "dword", + "value": 16814096 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrine01" + }, + "STRREF": { + "type": "dword", + "value": 16812760 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrine001" + }, + "STRREF": { + "type": "dword", + "value": 16812762 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrine" + }, + "STRREF": { + "type": "dword", + "value": 16812764 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810764 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 126 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tower016" + }, + "STRREF": { + "type": "dword", + "value": 16812234 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tower017" + }, + "STRREF": { + "type": "dword", + "value": 16812236 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tower014" + }, + "STRREF": { + "type": "dword", + "value": 16813168 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810763 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810761 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 124 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_firebowl003" + }, + "STRREF": { + "type": "dword", + "value": 16811750 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_brazier009" + }, + "STRREF": { + "type": "dword", + "value": 16811762 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_brazier004" + }, + "STRREF": { + "type": "dword", + "value": 16811764 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_brazier007" + }, + "STRREF": { + "type": "dword", + "value": 16811766 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_brazier001" + }, + "STRREF": { + "type": "dword", + "value": 16811768 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lamppost001" + }, + "STRREF": { + "type": "dword", + "value": 16812156 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_olamppost001" + }, + "STRREF": { + "type": "dword", + "value": 16812158 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_olantern003" + }, + "STRREF": { + "type": "dword", + "value": 16812160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_oolantern003" + }, + "STRREF": { + "type": "dword", + "value": 16812162 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flrlntrn001" + }, + "STRREF": { + "type": "dword", + "value": 16812164 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_oflrlntrn001" + }, + "STRREF": { + "type": "dword", + "value": 16812166 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flrlntrn002" + }, + "STRREF": { + "type": "dword", + "value": 16812168 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_oflrlntrn002" + }, + "STRREF": { + "type": "dword", + "value": 16812170 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_olantern005" + }, + "STRREF": { + "type": "dword", + "value": 16812172 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_oolantern005" + }, + "STRREF": { + "type": "dword", + "value": 16812174 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lantrnpst001" + }, + "STRREF": { + "type": "dword", + "value": 16812176 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_olantern001" + }, + "STRREF": { + "type": "dword", + "value": 16812178 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_oolantern001" + }, + "STRREF": { + "type": "dword", + "value": 16812180 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stnlntrn005" + }, + "STRREF": { + "type": "dword", + "value": 16812182 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ostnlntrn005" + }, + "STRREF": { + "type": "dword", + "value": 16812184 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stnlntrn004" + }, + "STRREF": { + "type": "dword", + "value": 16812186 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ostnlntrn004" + }, + "STRREF": { + "type": "dword", + "value": 16812188 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stnlntrn002" + }, + "STRREF": { + "type": "dword", + "value": 16812190 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ostnlntrn002" + }, + "STRREF": { + "type": "dword", + "value": 16812192 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stnlntrn003" + }, + "STRREF": { + "type": "dword", + "value": 16812194 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ostnlntrn003" + }, + "STRREF": { + "type": "dword", + "value": 16812196 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wdlantrn002" + }, + "STRREF": { + "type": "dword", + "value": 16812198 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_owdlantrn002" + }, + "STRREF": { + "type": "dword", + "value": 16812200 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_olantern007" + }, + "STRREF": { + "type": "dword", + "value": 16812202 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_oolantern007" + }, + "STRREF": { + "type": "dword", + "value": 16812204 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pollntrn001" + }, + "STRREF": { + "type": "dword", + "value": 16812530 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_opollntrn001" + }, + "STRREF": { + "type": "dword", + "value": 16812532 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810783 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 69 + }, + "STRREF": { + "type": "dword", + "value": 16810775 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 63 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rail001" + }, + "STRREF": { + "type": "dword", + "value": 16812572 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rail002" + }, + "STRREF": { + "type": "dword", + "value": 16812574 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rail003" + }, + "STRREF": { + "type": "dword", + "value": 16812576 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rail004" + }, + "STRREF": { + "type": "dword", + "value": 16812578 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rail005" + }, + "STRREF": { + "type": "dword", + "value": 16812580 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rail006" + }, + "STRREF": { + "type": "dword", + "value": 16812582 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rail007" + }, + "STRREF": { + "type": "dword", + "value": 16812584 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810773 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 64 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_road001" + }, + "STRREF": { + "type": "dword", + "value": 16812622 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_road002" + }, + "STRREF": { + "type": "dword", + "value": 16812624 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_road003" + }, + "STRREF": { + "type": "dword", + "value": 16812626 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_road004" + }, + "STRREF": { + "type": "dword", + "value": 16812628 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_road005" + }, + "STRREF": { + "type": "dword", + "value": 16812630 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_road006" + }, + "STRREF": { + "type": "dword", + "value": 16812632 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_road007" + }, + "STRREF": { + "type": "dword", + "value": 16812634 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_road008" + }, + "STRREF": { + "type": "dword", + "value": 16812636 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810774 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 71 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_boatflipped" + }, + "STRREF": { + "type": "dword", + "value": 16811192 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lifeboat001" + }, + "STRREF": { + "type": "dword", + "value": 16812230 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810777 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 72 + }, + "STRREF": { + "type": "dword", + "value": 16810778 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 73 + }, + "STRREF": { + "type": "dword", + "value": 16810779 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 74 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ship001" + }, + "STRREF": { + "type": "dword", + "value": 16811462 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ship002" + }, + "STRREF": { + "type": "dword", + "value": 16811512 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipbell001" + }, + "STRREF": { + "type": "dword", + "value": 16812752 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwheel001" + }, + "STRREF": { + "type": "dword", + "value": 16812756 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810780 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 75 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck001" + }, + "STRREF": { + "type": "dword", + "value": 16811464 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck002" + }, + "STRREF": { + "type": "dword", + "value": 16811466 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck003" + }, + "STRREF": { + "type": "dword", + "value": 16811468 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck004" + }, + "STRREF": { + "type": "dword", + "value": 16811470 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck005" + }, + "STRREF": { + "type": "dword", + "value": 16811472 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck006" + }, + "STRREF": { + "type": "dword", + "value": 16811474 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck007" + }, + "STRREF": { + "type": "dword", + "value": 16811476 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck008" + }, + "STRREF": { + "type": "dword", + "value": 16811478 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck009" + }, + "STRREF": { + "type": "dword", + "value": 16811480 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck010" + }, + "STRREF": { + "type": "dword", + "value": 16811482 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck011" + }, + "STRREF": { + "type": "dword", + "value": 16811484 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck012" + }, + "STRREF": { + "type": "dword", + "value": 16811486 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck013" + }, + "STRREF": { + "type": "dword", + "value": 16811488 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck014" + }, + "STRREF": { + "type": "dword", + "value": 16811490 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck015" + }, + "STRREF": { + "type": "dword", + "value": 16811492 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck016" + }, + "STRREF": { + "type": "dword", + "value": 16811494 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck017" + }, + "STRREF": { + "type": "dword", + "value": 16811496 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck018" + }, + "STRREF": { + "type": "dword", + "value": 16811498 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck019" + }, + "STRREF": { + "type": "dword", + "value": 16811500 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck020" + }, + "STRREF": { + "type": "dword", + "value": 16811502 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck021" + }, + "STRREF": { + "type": "dword", + "value": 16811504 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck022" + }, + "STRREF": { + "type": "dword", + "value": 16811506 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck023" + }, + "STRREF": { + "type": "dword", + "value": 16811508 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipwreck024" + }, + "STRREF": { + "type": "dword", + "value": 16811510 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810781 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 123 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wagon002" + }, + "STRREF": { + "type": "dword", + "value": 16811392 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wagon003" + }, + "STRREF": { + "type": "dword", + "value": 16811394 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wagon004" + }, + "STRREF": { + "type": "dword", + "value": 16811712 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rickshaw001" + }, + "STRREF": { + "type": "dword", + "value": 16812620 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wagon005" + }, + "STRREF": { + "type": "dword", + "value": 16813406 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wagon001" + }, + "STRREF": { + "type": "dword", + "value": 16813408 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810782 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810776 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810760 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 88 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stonebsin001" + }, + "STRREF": { + "type": "dword", + "value": 16811110 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stonebsin002" + }, + "STRREF": { + "type": "dword", + "value": 16811112 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tub001" + }, + "STRREF": { + "type": "dword", + "value": 16811114 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_toilet001" + }, + "STRREF": { + "type": "dword", + "value": 16811532 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stonebsin003" + }, + "STRREF": { + "type": "dword", + "value": 16813468 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tub002" + }, + "STRREF": { + "type": "dword", + "value": 16813470 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810796 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 89 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bed04" + }, + "STRREF": { + "type": "dword", + "value": 16811118 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bed002" + }, + "STRREF": { + "type": "dword", + "value": 16811120 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bed01" + }, + "STRREF": { + "type": "dword", + "value": 16811122 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bed02" + }, + "STRREF": { + "type": "dword", + "value": 16811124 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bed006" + }, + "STRREF": { + "type": "dword", + "value": 16811126 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lowbed001" + }, + "STRREF": { + "type": "dword", + "value": 16811128 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lowbed002" + }, + "STRREF": { + "type": "dword", + "value": 16811130 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lowbed003" + }, + "STRREF": { + "type": "dword", + "value": 16811132 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lowbed004" + }, + "STRREF": { + "type": "dword", + "value": 16811134 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bed007" + }, + "STRREF": { + "type": "dword", + "value": 16811136 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bed03" + }, + "STRREF": { + "type": "dword", + "value": 16811138 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mirror006" + }, + "STRREF": { + "type": "dword", + "value": 16811678 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mirror001" + }, + "STRREF": { + "type": "dword", + "value": 16811680 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mirror002" + }, + "STRREF": { + "type": "dword", + "value": 16811682 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bedrolls001" + }, + "STRREF": { + "type": "dword", + "value": 16811906 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bedrolls002" + }, + "STRREF": { + "type": "dword", + "value": 16811908 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bedrolls003" + }, + "STRREF": { + "type": "dword", + "value": 16811910 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bedrolls004" + }, + "STRREF": { + "type": "dword", + "value": 16811912 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bedrolls005" + }, + "STRREF": { + "type": "dword", + "value": 16811914 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bedrolls006" + }, + "STRREF": { + "type": "dword", + "value": 16811916 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bedrolls007" + }, + "STRREF": { + "type": "dword", + "value": 16811918 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bedrolls008" + }, + "STRREF": { + "type": "dword", + "value": 16811920 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mirror004" + }, + "STRREF": { + "type": "dword", + "value": 16812154 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mirror003" + }, + "STRREF": { + "type": "dword", + "value": 16812330 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mirror" + }, + "STRREF": { + "type": "dword", + "value": 16812332 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mirror005" + }, + "STRREF": { + "type": "dword", + "value": 16812334 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pillow" + }, + "STRREF": { + "type": "dword", + "value": 16812468 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen001" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen002" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen003" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen004" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen005" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen006" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen007" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen008" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen009" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen010" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen011" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen012" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wall004" + }, + "STRREF": { + "type": "dword", + "value": 16812694 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen01" + }, + "STRREF": { + "type": "dword", + "value": 16812696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen02" + }, + "STRREF": { + "type": "dword", + "value": 16812698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen014" + }, + "STRREF": { + "type": "dword", + "value": 16812700 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen013" + }, + "STRREF": { + "type": "dword", + "value": 16812702 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen016" + }, + "STRREF": { + "type": "dword", + "value": 16812704 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_screen015" + }, + "STRREF": { + "type": "dword", + "value": 16812706 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810797 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 78 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_book001" + }, + "STRREF": { + "type": "dword", + "value": 16811194 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_book002" + }, + "STRREF": { + "type": "dword", + "value": 16811196 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_book003" + }, + "STRREF": { + "type": "dword", + "value": 16811198 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_notes001" + }, + "STRREF": { + "type": "dword", + "value": 16812396 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bbook002" + }, + "STRREF": { + "type": "dword", + "value": 16812406 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bbook004" + }, + "STRREF": { + "type": "dword", + "value": 16812408 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bbook001" + }, + "STRREF": { + "type": "dword", + "value": 16812410 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bbook003" + }, + "STRREF": { + "type": "dword", + "value": 16812412 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810802 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 93 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fireplace006" + }, + "STRREF": { + "type": "dword", + "value": 16811772 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fireplace004" + }, + "STRREF": { + "type": "dword", + "value": 16811774 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fireplace001" + }, + "STRREF": { + "type": "dword", + "value": 16811776 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fireplace002" + }, + "STRREF": { + "type": "dword", + "value": 16811778 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fireplace003" + }, + "STRREF": { + "type": "dword", + "value": 16811780 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fireplace005" + }, + "STRREF": { + "type": "dword", + "value": 16811782 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810801 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 49 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug001" + }, + "STRREF": { + "type": "dword", + "value": 16811000 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_carpet" + }, + "STRREF": { + "type": "dword", + "value": 16811384 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_carpet02" + }, + "STRREF": { + "type": "dword", + "value": 16811388 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_carpet01" + }, + "STRREF": { + "type": "dword", + "value": 16811390 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug033" + }, + "STRREF": { + "type": "dword", + "value": 16811650 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug032" + }, + "STRREF": { + "type": "dword", + "value": 16811714 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug019" + }, + "STRREF": { + "type": "dword", + "value": 16811820 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug010" + }, + "STRREF": { + "type": "dword", + "value": 16811822 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug007" + }, + "STRREF": { + "type": "dword", + "value": 16811824 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug027" + }, + "STRREF": { + "type": "dword", + "value": 16811826 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug020" + }, + "STRREF": { + "type": "dword", + "value": 16811858 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug022" + }, + "STRREF": { + "type": "dword", + "value": 16811896 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug023" + }, + "STRREF": { + "type": "dword", + "value": 16811898 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug024" + }, + "STRREF": { + "type": "dword", + "value": 16811900 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug025" + }, + "STRREF": { + "type": "dword", + "value": 16811902 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug030" + }, + "STRREF": { + "type": "dword", + "value": 16811924 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug031" + }, + "STRREF": { + "type": "dword", + "value": 16811924 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug021" + }, + "STRREF": { + "type": "dword", + "value": 16812238 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug017" + }, + "STRREF": { + "type": "dword", + "value": 16812314 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug009" + }, + "STRREF": { + "type": "dword", + "value": 16812364 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug026" + }, + "STRREF": { + "type": "dword", + "value": 16812424 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug014" + }, + "STRREF": { + "type": "dword", + "value": 16812426 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug011" + }, + "STRREF": { + "type": "dword", + "value": 16812428 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug013" + }, + "STRREF": { + "type": "dword", + "value": 16812430 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug028" + }, + "STRREF": { + "type": "dword", + "value": 16812432 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug018" + }, + "STRREF": { + "type": "dword", + "value": 16812434 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug029" + }, + "STRREF": { + "type": "dword", + "value": 16812436 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug012" + }, + "STRREF": { + "type": "dword", + "value": 16812438 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug005" + }, + "STRREF": { + "type": "dword", + "value": 16812722 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug002" + }, + "STRREF": { + "type": "dword", + "value": 16812870 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug006" + }, + "STRREF": { + "type": "dword", + "value": 16813400 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug004" + }, + "STRREF": { + "type": "dword", + "value": 16813402 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810806 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 50 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_skin001" + }, + "STRREF": { + "type": "dword", + "value": 16811116 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cushion001" + }, + "STRREF": { + "type": "dword", + "value": 16811564 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic001" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic002" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic003" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic004" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic005" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic006" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic007" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic008" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic009" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic010" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic011" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic012" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic013" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic014" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic015" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtic016" + }, + "STRREF": { + "type": "dword", + "value": 16812150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rushpilow001" + }, + "STRREF": { + "type": "dword", + "value": 16812214 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cushion002" + }, + "STRREF": { + "type": "dword", + "value": 16812452 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rushpilow002" + }, + "STRREF": { + "type": "dword", + "value": 16812808 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tatami003" + }, + "STRREF": { + "type": "dword", + "value": 16813050 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tatami002" + }, + "STRREF": { + "type": "dword", + "value": 16813052 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tatami001" + }, + "STRREF": { + "type": "dword", + "value": 16813054 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_skin002" + }, + "STRREF": { + "type": "dword", + "value": 16813370 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810807 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 51 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug003" + }, + "STRREF": { + "type": "dword", + "value": 16811038 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_carpet04" + }, + "STRREF": { + "type": "dword", + "value": 16811382 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_carpet03" + }, + "STRREF": { + "type": "dword", + "value": 16811386 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug034" + }, + "STRREF": { + "type": "dword", + "value": 16811684 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug035" + }, + "STRREF": { + "type": "dword", + "value": 16811684 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug036" + }, + "STRREF": { + "type": "dword", + "value": 16811684 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug037" + }, + "STRREF": { + "type": "dword", + "value": 16811684 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug038" + }, + "STRREF": { + "type": "dword", + "value": 16811684 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug008" + }, + "STRREF": { + "type": "dword", + "value": 16812436 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug048" + }, + "STRREF": { + "type": "dword", + "value": 16813108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug049" + }, + "STRREF": { + "type": "dword", + "value": 16813108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug050" + }, + "STRREF": { + "type": "dword", + "value": 16813108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug051" + }, + "STRREF": { + "type": "dword", + "value": 16813108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug052" + }, + "STRREF": { + "type": "dword", + "value": 16813108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug053" + }, + "STRREF": { + "type": "dword", + "value": 16813108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug054" + }, + "STRREF": { + "type": "dword", + "value": 16813108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug055" + }, + "STRREF": { + "type": "dword", + "value": 16813108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug056" + }, + "STRREF": { + "type": "dword", + "value": 16813108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug057" + }, + "STRREF": { + "type": "dword", + "value": 16813108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throwrug058" + }, + "STRREF": { + "type": "dword", + "value": 16813108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tigerrug" + }, + "STRREF": { + "type": "dword", + "value": 16813112 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810808 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810805 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 92 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plant001" + }, + "STRREF": { + "type": "dword", + "value": 16812472 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plant002" + }, + "STRREF": { + "type": "dword", + "value": 16812474 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plant003" + }, + "STRREF": { + "type": "dword", + "value": 16812476 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plant004" + }, + "STRREF": { + "type": "dword", + "value": 16812478 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plant006" + }, + "STRREF": { + "type": "dword", + "value": 16812480 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plant007" + }, + "STRREF": { + "type": "dword", + "value": 16812482 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plant009" + }, + "STRREF": { + "type": "dword", + "value": 16812484 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plant008" + }, + "STRREF": { + "type": "dword", + "value": 16812486 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plant005" + }, + "STRREF": { + "type": "dword", + "value": 16812488 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vase04" + }, + "STRREF": { + "type": "dword", + "value": 16813388 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810800 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 91 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bottle" + }, + "STRREF": { + "type": "dword", + "value": 16811208 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bottle002" + }, + "STRREF": { + "type": "dword", + "value": 16811212 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bottle003" + }, + "STRREF": { + "type": "dword", + "value": 16811214 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pie001" + }, + "STRREF": { + "type": "dword", + "value": 16811226 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_beans001" + }, + "STRREF": { + "type": "dword", + "value": 16811230 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fruit001" + }, + "STRREF": { + "type": "dword", + "value": 16811234 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_beans002" + }, + "STRREF": { + "type": "dword", + "value": 16811238 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fruit002" + }, + "STRREF": { + "type": "dword", + "value": 16811242 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bento001" + }, + "STRREF": { + "type": "dword", + "value": 16811246 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bento002" + }, + "STRREF": { + "type": "dword", + "value": 16811246 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bento003" + }, + "STRREF": { + "type": "dword", + "value": 16811252 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bento004" + }, + "STRREF": { + "type": "dword", + "value": 16811252 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bread" + }, + "STRREF": { + "type": "dword", + "value": 16811270 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bread002" + }, + "STRREF": { + "type": "dword", + "value": 16811272 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cake" + }, + "STRREF": { + "type": "dword", + "value": 16811330 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fish" + }, + "STRREF": { + "type": "dword", + "value": 16811784 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_meal" + }, + "STRREF": { + "type": "dword", + "value": 16812310 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_basket001" + }, + "STRREF": { + "type": "dword", + "value": 16812442 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pie002" + }, + "STRREF": { + "type": "dword", + "value": 16812450 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_beans003" + }, + "STRREF": { + "type": "dword", + "value": 16812492 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cheese001" + }, + "STRREF": { + "type": "dword", + "value": 16812498 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_steak001" + }, + "STRREF": { + "type": "dword", + "value": 16812506 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_platesushi" + }, + "STRREF": { + "type": "dword", + "value": 16812508 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_beans004" + }, + "STRREF": { + "type": "dword", + "value": 16812516 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cheese002" + }, + "STRREF": { + "type": "dword", + "value": 16812518 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_steak002" + }, + "STRREF": { + "type": "dword", + "value": 16812520 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pudding" + }, + "STRREF": { + "type": "dword", + "value": 16812560 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sakeset001" + }, + "STRREF": { + "type": "dword", + "value": 16812678 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810799 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 94 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_crysorb002" + }, + "STRREF": { + "type": "dword", + "value": 16811014 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_crysorb003" + }, + "STRREF": { + "type": "dword", + "value": 16811016 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_baby" + }, + "STRREF": { + "type": "dword", + "value": 16811042 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cradle" + }, + "STRREF": { + "type": "dword", + "value": 16811548 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chssbrdmystc" + }, + "STRREF": { + "type": "dword", + "value": 16812360 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chessbrdped" + }, + "STRREF": { + "type": "dword", + "value": 16812416 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_safe001" + }, + "STRREF": { + "type": "dword", + "value": 16812676 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_spellbsin001" + }, + "STRREF": { + "type": "dword", + "value": 16812822 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_spellbsin002" + }, + "STRREF": { + "type": "dword", + "value": 16812824 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_spellbsin003" + }, + "STRREF": { + "type": "dword", + "value": 16812826 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_spellbsin004" + }, + "STRREF": { + "type": "dword", + "value": 16812828 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_crysorb001" + }, + "STRREF": { + "type": "dword", + "value": 16813154 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vase03" + }, + "STRREF": { + "type": "dword", + "value": 16813384 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vase004" + }, + "STRREF": { + "type": "dword", + "value": 16813390 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vase007" + }, + "STRREF": { + "type": "dword", + "value": 16813392 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vase006" + }, + "STRREF": { + "type": "dword", + "value": 16813394 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vase02" + }, + "STRREF": { + "type": "dword", + "value": 16813396 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_waterpipe" + }, + "STRREF": { + "type": "dword", + "value": 16813472 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810803 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 32 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bar001" + }, + "STRREF": { + "type": "dword", + "value": 16811076 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bar002" + }, + "STRREF": { + "type": "dword", + "value": 16811078 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bar003" + }, + "STRREF": { + "type": "dword", + "value": 16811080 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bar004" + }, + "STRREF": { + "type": "dword", + "value": 16811082 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bar005" + }, + "STRREF": { + "type": "dword", + "value": 16811084 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bar006" + }, + "STRREF": { + "type": "dword", + "value": 16811086 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bar007" + }, + "STRREF": { + "type": "dword", + "value": 16811088 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bar008" + }, + "STRREF": { + "type": "dword", + "value": 16811090 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_barshelf002" + }, + "STRREF": { + "type": "dword", + "value": 16811904 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_barshelf003" + }, + "STRREF": { + "type": "dword", + "value": 16812336 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_barshelf001" + }, + "STRREF": { + "type": "dword", + "value": 16812746 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810810 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 35 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tansu001" + }, + "STRREF": { + "type": "dword", + "value": 16811140 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bookshelf004" + }, + "STRREF": { + "type": "dword", + "value": 16811200 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bookshelf003" + }, + "STRREF": { + "type": "dword", + "value": 16811202 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bookshelf005" + }, + "STRREF": { + "type": "dword", + "value": 16811204 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bdresser001" + }, + "STRREF": { + "type": "dword", + "value": 16811688 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bdresser003" + }, + "STRREF": { + "type": "dword", + "value": 16811690 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bdresser002" + }, + "STRREF": { + "type": "dword", + "value": 16811692 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tansu002" + }, + "STRREF": { + "type": "dword", + "value": 16812750 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810812 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 37 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bchair002" + }, + "STRREF": { + "type": "dword", + "value": 16811402 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bchair003" + }, + "STRREF": { + "type": "dword", + "value": 16811404 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bchair001" + }, + "STRREF": { + "type": "dword", + "value": 16811406 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bchair006" + }, + "STRREF": { + "type": "dword", + "value": 16811408 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bchair004" + }, + "STRREF": { + "type": "dword", + "value": 16811410 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bchair005" + }, + "STRREF": { + "type": "dword", + "value": 16811412 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chairs005" + }, + "STRREF": { + "type": "dword", + "value": 16811652 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stool001" + }, + "STRREF": { + "type": "dword", + "value": 16811710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chair004" + }, + "STRREF": { + "type": "dword", + "value": 16811988 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chairs002" + }, + "STRREF": { + "type": "dword", + "value": 16812048 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chairs003" + }, + "STRREF": { + "type": "dword", + "value": 16812050 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chair017" + }, + "STRREF": { + "type": "dword", + "value": 16812066 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chairs007" + }, + "STRREF": { + "type": "dword", + "value": 16812318 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chairs004" + }, + "STRREF": { + "type": "dword", + "value": 16812648 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chairs006" + }, + "STRREF": { + "type": "dword", + "value": 16812782 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chair002" + }, + "STRREF": { + "type": "dword", + "value": 16812944 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bstool001" + }, + "STRREF": { + "type": "dword", + "value": 16812968 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bstool002" + }, + "STRREF": { + "type": "dword", + "value": 16812970 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bstool003" + }, + "STRREF": { + "type": "dword", + "value": 16812972 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chair001" + }, + "STRREF": { + "type": "dword", + "value": 16813576 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810814 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 34 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_incense001" + }, + "STRREF": { + "type": "dword", + "value": 16811248 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_letterbox001" + }, + "STRREF": { + "type": "dword", + "value": 16811250 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_desk03" + }, + "STRREF": { + "type": "dword", + "value": 16811640 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_deskclutterd" + }, + "STRREF": { + "type": "dword", + "value": 16811642 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_desk02" + }, + "STRREF": { + "type": "dword", + "value": 16811644 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_desk01" + }, + "STRREF": { + "type": "dword", + "value": 16811646 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_displaycase1" + }, + "STRREF": { + "type": "dword", + "value": 16814058 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_displaycase2" + }, + "STRREF": { + "type": "dword", + "value": 16814060 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_displaycase3" + }, + "STRREF": { + "type": "dword", + "value": 16814062 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_inkbrshes001" + }, + "STRREF": { + "type": "dword", + "value": 16812060 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_inkwell" + }, + "STRREF": { + "type": "dword", + "value": 16812062 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810811 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 36 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bench002" + }, + "STRREF": { + "type": "dword", + "value": 16811146 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_couch001" + }, + "STRREF": { + "type": "dword", + "value": 16811536 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_couch002" + }, + "STRREF": { + "type": "dword", + "value": 16811538 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_couch003" + }, + "STRREF": { + "type": "dword", + "value": 16811540 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bench001" + }, + "STRREF": { + "type": "dword", + "value": 16811562 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810813 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 38 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tableglass" + }, + "STRREF": { + "type": "dword", + "value": 16814056 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_btable001" + }, + "STRREF": { + "type": "dword", + "value": 16812978 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_btable006" + }, + "STRREF": { + "type": "dword", + "value": 16812980 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_btable004" + }, + "STRREF": { + "type": "dword", + "value": 16812982 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_btable003" + }, + "STRREF": { + "type": "dword", + "value": 16812984 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_btable002" + }, + "STRREF": { + "type": "dword", + "value": 16812986 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_btable005" + }, + "STRREF": { + "type": "dword", + "value": 16812988 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table003" + }, + "STRREF": { + "type": "dword", + "value": 16812990 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table002" + }, + "STRREF": { + "type": "dword", + "value": 16812992 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table001" + }, + "STRREF": { + "type": "dword", + "value": 16812994 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tables001" + }, + "STRREF": { + "type": "dword", + "value": 16812996 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tables002" + }, + "STRREF": { + "type": "dword", + "value": 16812996 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table010" + }, + "STRREF": { + "type": "dword", + "value": 16812998 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tables003" + }, + "STRREF": { + "type": "dword", + "value": 16813000 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table008" + }, + "STRREF": { + "type": "dword", + "value": 16813002 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table009" + }, + "STRREF": { + "type": "dword", + "value": 16813004 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table004" + }, + "STRREF": { + "type": "dword", + "value": 16813006 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table006" + }, + "STRREF": { + "type": "dword", + "value": 16813008 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table005" + }, + "STRREF": { + "type": "dword", + "value": 16813010 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table007" + }, + "STRREF": { + "type": "dword", + "value": 16813012 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table099" + }, + "STRREF": { + "type": "dword", + "value": 16813014 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table011" + }, + "STRREF": { + "type": "dword", + "value": 16813016 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table012" + }, + "STRREF": { + "type": "dword", + "value": 16813018 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table07" + }, + "STRREF": { + "type": "dword", + "value": 16813020 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table01" + }, + "STRREF": { + "type": "dword", + "value": 16813022 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table02" + }, + "STRREF": { + "type": "dword", + "value": 16813024 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table03" + }, + "STRREF": { + "type": "dword", + "value": 16813026 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table04" + }, + "STRREF": { + "type": "dword", + "value": 16813028 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table06" + }, + "STRREF": { + "type": "dword", + "value": 16813030 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_table05" + }, + "STRREF": { + "type": "dword", + "value": 16813032 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tables004" + }, + "STRREF": { + "type": "dword", + "value": 16813034 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tables005" + }, + "STRREF": { + "type": "dword", + "value": 16813036 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810815 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 39 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throne001" + }, + "STRREF": { + "type": "dword", + "value": 16811616 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_throne002" + }, + "STRREF": { + "type": "dword", + "value": 16812386 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810816 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810809 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 90 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cauldron001" + }, + "STRREF": { + "type": "dword", + "value": 16811398 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tansu003" + }, + "STRREF": { + "type": "dword", + "value": 16812144 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mortarpes" + }, + "STRREF": { + "type": "dword", + "value": 16812342 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pot01" + }, + "STRREF": { + "type": "dword", + "value": 16812554 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pot02" + }, + "STRREF": { + "type": "dword", + "value": 16812556 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shelf" + }, + "STRREF": { + "type": "dword", + "value": 16812744 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cabinettea" + }, + "STRREF": { + "type": "dword", + "value": 16813058 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cask001" + }, + "STRREF": { + "type": "dword", + "value": 16813554 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810798 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 86 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_brazier006" + }, + "STRREF": { + "type": "dword", + "value": 16811266 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_obrazier006" + }, + "STRREF": { + "type": "dword", + "value": 16811268 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cndlbra001" + }, + "STRREF": { + "type": "dword", + "value": 16811336 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ocndlbra001" + }, + "STRREF": { + "type": "dword", + "value": 16811338 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cndlbra002" + }, + "STRREF": { + "type": "dword", + "value": 16811340 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ocndlbra002" + }, + "STRREF": { + "type": "dword", + "value": 16811342 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_candle002" + }, + "STRREF": { + "type": "dword", + "value": 16811344 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ocandle002" + }, + "STRREF": { + "type": "dword", + "value": 16811346 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_candle01" + }, + "STRREF": { + "type": "dword", + "value": 16811348 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ocandle01" + }, + "STRREF": { + "type": "dword", + "value": 16811350 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_candle03" + }, + "STRREF": { + "type": "dword", + "value": 16811356 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ocandle03" + }, + "STRREF": { + "type": "dword", + "value": 16811358 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chndler001" + }, + "STRREF": { + "type": "dword", + "value": 16811414 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochndler001" + }, + "STRREF": { + "type": "dword", + "value": 16811416 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chndler002" + }, + "STRREF": { + "type": "dword", + "value": 16811418 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochndler002" + }, + "STRREF": { + "type": "dword", + "value": 16811420 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sconce002" + }, + "STRREF": { + "type": "dword", + "value": 16812688 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_osconce002" + }, + "STRREF": { + "type": "dword", + "value": 16812690 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810817 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 96 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bottle001" + }, + "STRREF": { + "type": "dword", + "value": 16811210 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bowl" + }, + "STRREF": { + "type": "dword", + "value": 16811222 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bowl001" + }, + "STRREF": { + "type": "dword", + "value": 16811224 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bowl002" + }, + "STRREF": { + "type": "dword", + "value": 16811228 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bowl003" + }, + "STRREF": { + "type": "dword", + "value": 16811232 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_woodbowl001" + }, + "STRREF": { + "type": "dword", + "value": 16811236 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bowl004" + }, + "STRREF": { + "type": "dword", + "value": 16811240 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_chessboard" + }, + "STRREF": { + "type": "dword", + "value": 16811454 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cup001" + }, + "STRREF": { + "type": "dword", + "value": 16811556 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cup002" + }, + "STRREF": { + "type": "dword", + "value": 16811558 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cup01" + }, + "STRREF": { + "type": "dword", + "value": 16811560 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cup003" + }, + "STRREF": { + "type": "dword", + "value": 16811942 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hourglass001" + }, + "STRREF": { + "type": "dword", + "value": 16812056 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_jug02" + }, + "STRREF": { + "type": "dword", + "value": 16812136 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_jug01" + }, + "STRREF": { + "type": "dword", + "value": 16812138 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_knife02" + }, + "STRREF": { + "type": "dword", + "value": 16812146 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_knife01" + }, + "STRREF": { + "type": "dword", + "value": 16812148 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochoco9" + }, + "STRREF": { + "type": "dword", + "value": 16812366 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochoco6" + }, + "STRREF": { + "type": "dword", + "value": 16812368 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochoco8" + }, + "STRREF": { + "type": "dword", + "value": 16812370 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochoco2" + }, + "STRREF": { + "type": "dword", + "value": 16812372 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochoco3" + }, + "STRREF": { + "type": "dword", + "value": 16812374 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochoco5" + }, + "STRREF": { + "type": "dword", + "value": 16812376 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochoco4" + }, + "STRREF": { + "type": "dword", + "value": 16812378 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochoco1" + }, + "STRREF": { + "type": "dword", + "value": 16812380 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochoco7" + }, + "STRREF": { + "type": "dword", + "value": 16812382 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pitcher001" + }, + "STRREF": { + "type": "dword", + "value": 16812470 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plate" + }, + "STRREF": { + "type": "dword", + "value": 16812490 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plate001" + }, + "STRREF": { + "type": "dword", + "value": 16812494 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plate002" + }, + "STRREF": { + "type": "dword", + "value": 16812496 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plate02" + }, + "STRREF": { + "type": "dword", + "value": 16812500 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bplate003" + }, + "STRREF": { + "type": "dword", + "value": 16812502 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bplate004" + }, + "STRREF": { + "type": "dword", + "value": 16812504 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bplate001" + }, + "STRREF": { + "type": "dword", + "value": 16812510 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bplate002" + }, + "STRREF": { + "type": "dword", + "value": 16812512 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_plate01" + }, + "STRREF": { + "type": "dword", + "value": 16812514 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ori002" + }, + "STRREF": { + "type": "dword", + "value": 16812522 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ori001" + }, + "STRREF": { + "type": "dword", + "value": 16812524 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ori003" + }, + "STRREF": { + "type": "dword", + "value": 16812526 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochocos6" + }, + "STRREF": { + "type": "dword", + "value": 16812790 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochocos2" + }, + "STRREF": { + "type": "dword", + "value": 16812792 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochocos8" + }, + "STRREF": { + "type": "dword", + "value": 16812794 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochocos9" + }, + "STRREF": { + "type": "dword", + "value": 16812796 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochocos4" + }, + "STRREF": { + "type": "dword", + "value": 16812798 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochocos7" + }, + "STRREF": { + "type": "dword", + "value": 16812800 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochocos3" + }, + "STRREF": { + "type": "dword", + "value": 16812802 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochocos1" + }, + "STRREF": { + "type": "dword", + "value": 16812804 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ochocos5" + }, + "STRREF": { + "type": "dword", + "value": 16812806 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri001" + }, + "STRREF": { + "type": "dword", + "value": 16813114 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri005" + }, + "STRREF": { + "type": "dword", + "value": 16813116 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri010" + }, + "STRREF": { + "type": "dword", + "value": 16813118 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri007" + }, + "STRREF": { + "type": "dword", + "value": 16813120 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri008" + }, + "STRREF": { + "type": "dword", + "value": 16813122 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri003" + }, + "STRREF": { + "type": "dword", + "value": 16813124 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri002" + }, + "STRREF": { + "type": "dword", + "value": 16813126 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri004" + }, + "STRREF": { + "type": "dword", + "value": 16813128 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri009" + }, + "STRREF": { + "type": "dword", + "value": 16813130 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri006" + }, + "STRREF": { + "type": "dword", + "value": 16813132 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri011" + }, + "STRREF": { + "type": "dword", + "value": 16813134 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri012" + }, + "STRREF": { + "type": "dword", + "value": 16813136 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri018" + }, + "STRREF": { + "type": "dword", + "value": 16813138 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri016" + }, + "STRREF": { + "type": "dword", + "value": 16813140 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri013" + }, + "STRREF": { + "type": "dword", + "value": 16813142 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri017" + }, + "STRREF": { + "type": "dword", + "value": 16813144 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri019" + }, + "STRREF": { + "type": "dword", + "value": 16813146 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri014" + }, + "STRREF": { + "type": "dword", + "value": 16813148 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tokri015" + }, + "STRREF": { + "type": "dword", + "value": 16813150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vase01" + }, + "STRREF": { + "type": "dword", + "value": 16813382 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vase005" + }, + "STRREF": { + "type": "dword", + "value": 16813386 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810804 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 53 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ballclaw001" + }, + "STRREF": { + "type": "dword", + "value": 16811046 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ballclaw002" + }, + "STRREF": { + "type": "dword", + "value": 16811048 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ballclaw003" + }, + "STRREF": { + "type": "dword", + "value": 16811050 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ballclaw004" + }, + "STRREF": { + "type": "dword", + "value": 16811052 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ballclaw005" + }, + "STRREF": { + "type": "dword", + "value": 16811054 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ballclaw006" + }, + "STRREF": { + "type": "dword", + "value": 16811056 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ballclaw007" + }, + "STRREF": { + "type": "dword", + "value": 16811058 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ballclaw008" + }, + "STRREF": { + "type": "dword", + "value": 16811060 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hangingbag" + }, + "STRREF": { + "type": "dword", + "value": 16812012 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hangingbags" + }, + "STRREF": { + "type": "dword", + "value": 16812014 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal001" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal002" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal003" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal004" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal005" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal006" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal007" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal008" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal009" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal010" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal011" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal012" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal013" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal014" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal015" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal016" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal017" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal018" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal019" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal020" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal021" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal022" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal023" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal024" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal025" + }, + "STRREF": { + "type": "dword", + "value": 16812710 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal026" + }, + "STRREF": { + "type": "dword", + "value": 16812712 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal028" + }, + "STRREF": { + "type": "dword", + "value": 16812714 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal027" + }, + "STRREF": { + "type": "dword", + "value": 16812716 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal029" + }, + "STRREF": { + "type": "dword", + "value": 16812718 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrollwal030" + }, + "STRREF": { + "type": "dword", + "value": 16812720 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_babylondrgn" + }, + "STRREF": { + "type": "dword", + "value": 16813410 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_babylonlion" + }, + "STRREF": { + "type": "dword", + "value": 16813412 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_babylonox" + }, + "STRREF": { + "type": "dword", + "value": 16813414 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_babylnsprmen" + }, + "STRREF": { + "type": "dword", + "value": 16813416 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallaxe01" + }, + "STRREF": { + "type": "dword", + "value": 16814178 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallaxe02" + }, + "STRREF": { + "type": "dword", + "value": 16814178 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallaxe03" + }, + "STRREF": { + "type": "dword", + "value": 16814178 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallbswd01" + }, + "STRREF": { + "type": "dword", + "value": 16814180 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallbswd02" + }, + "STRREF": { + "type": "dword", + "value": 16814180 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallbswd03" + }, + "STRREF": { + "type": "dword", + "value": 16814180 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallgswd01" + }, + "STRREF": { + "type": "dword", + "value": 16814182 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallgswd02" + }, + "STRREF": { + "type": "dword", + "value": 16814182 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallgswd03" + }, + "STRREF": { + "type": "dword", + "value": 16814182 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_walllswd01" + }, + "STRREF": { + "type": "dword", + "value": 16814184 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_walllswd02" + }, + "STRREF": { + "type": "dword", + "value": 16814184 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_walllswd03" + }, + "STRREF": { + "type": "dword", + "value": 16814184 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallsswd01" + }, + "STRREF": { + "type": "dword", + "value": 16814186 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810819 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 55 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_portrait001" + }, + "STRREF": { + "type": "dword", + "value": 16812552 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810821 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 56 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_painting" + }, + "STRREF": { + "type": "dword", + "value": 16812402 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_painting001" + }, + "STRREF": { + "type": "dword", + "value": 16812404 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_painting002" + }, + "STRREF": { + "type": "dword", + "value": 16812404 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_painting003" + }, + "STRREF": { + "type": "dword", + "value": 16812404 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_painting004" + }, + "STRREF": { + "type": "dword", + "value": 16812404 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_painting005" + }, + "STRREF": { + "type": "dword", + "value": 16812404 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_painting006" + }, + "STRREF": { + "type": "dword", + "value": 16812404 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_paintingcity" + }, + "STRREF": { + "type": "dword", + "value": 16812444 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pic01" + }, + "STRREF": { + "type": "dword", + "value": 16812444 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pic03" + }, + "STRREF": { + "type": "dword", + "value": 16812446 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pntingcoast2" + }, + "STRREF": { + "type": "dword", + "value": 16812446 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pic02" + }, + "STRREF": { + "type": "dword", + "value": 16812448 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_portrait" + }, + "STRREF": { + "type": "dword", + "value": 16812552 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810822 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 57 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tapestry001" + }, + "STRREF": { + "type": "dword", + "value": 16813044 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tapestry002" + }, + "STRREF": { + "type": "dword", + "value": 16813046 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tapestry003" + }, + "STRREF": { + "type": "dword", + "value": 16813048 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810823 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 54 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallskin001" + }, + "STRREF": { + "type": "dword", + "value": 16812018 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallskin002" + }, + "STRREF": { + "type": "dword", + "value": 16812020 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallskin003" + }, + "STRREF": { + "type": "dword", + "value": 16812022 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallskin004" + }, + "STRREF": { + "type": "dword", + "value": 16812024 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallhead001" + }, + "STRREF": { + "type": "dword", + "value": 16813422 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallhead002" + }, + "STRREF": { + "type": "dword", + "value": 16813424 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallhead003" + }, + "STRREF": { + "type": "dword", + "value": 16813426 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallhead004" + }, + "STRREF": { + "type": "dword", + "value": 16813428 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallhead005" + }, + "STRREF": { + "type": "dword", + "value": 16813430 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallhead006" + }, + "STRREF": { + "type": "dword", + "value": 16813432 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallhead007" + }, + "STRREF": { + "type": "dword", + "value": 16813434 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallhead008" + }, + "STRREF": { + "type": "dword", + "value": 16813436 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallhead009" + }, + "STRREF": { + "type": "dword", + "value": 16813438 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810820 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810818 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810795 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 6 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_barrel002" + }, + "STRREF": { + "type": "dword", + "value": 16811092 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_barrel001" + }, + "STRREF": { + "type": "dword", + "value": 16811094 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_barrel003" + }, + "STRREF": { + "type": "dword", + "value": 16811096 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_barrel004" + }, + "STRREF": { + "type": "dword", + "value": 16811098 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_kimchijars02" + }, + "STRREF": { + "type": "dword", + "value": 16811572 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Debugging Console" + }, + "RESREF": { + "type": "resref", + "value": "debuggingconsol" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "dev1" + }, + "STRREF": { + "type": "dword", + "value": 84569 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_kimchijars01" + }, + "STRREF": { + "type": "dword", + "value": 16812142 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Reward Chest" + }, + "RESREF": { + "type": "resref", + "value": "reward_chest1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Reward Chest" + }, + "RESREF": { + "type": "resref", + "value": "reward_chest2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Reward Chest" + }, + "RESREF": { + "type": "resref", + "value": "reward_chest3" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Reward Chest" + }, + "RESREF": { + "type": "resref", + "value": "reward_chest4" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Reward Chest" + }, + "RESREF": { + "type": "resref", + "value": "reward_chest5" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Reward Chest" + }, + "RESREF": { + "type": "resref", + "value": "reward_chest6" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Reward Chest" + }, + "RESREF": { + "type": "resref", + "value": "reward_chest_spe" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Reward Chest" + }, + "RESREF": { + "type": "resref", + "value": "star_chest" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Reward Chest" + }, + "RESREF": { + "type": "resref", + "value": "win_chest" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6782 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 81 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_altar001" + }, + "STRREF": { + "type": "dword", + "value": 16811006 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_altarevil1" + }, + "STRREF": { + "type": "dword", + "value": 16811008 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_altarevil2" + }, + "STRREF": { + "type": "dword", + "value": 16811008 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_altarevil3" + }, + "STRREF": { + "type": "dword", + "value": 16811008 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_altarcloth" + }, + "STRREF": { + "type": "dword", + "value": 16811010 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_altar002" + }, + "STRREF": { + "type": "dword", + "value": 16811012 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pentagram001" + }, + "STRREF": { + "type": "dword", + "value": 16812418 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pentagram002" + }, + "STRREF": { + "type": "dword", + "value": 16812420 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810787 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 136 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bbars001" + }, + "STRREF": { + "type": "dword", + "value": 16811102 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bbars002" + }, + "STRREF": { + "type": "dword", + "value": 16811104 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bbars003" + }, + "STRREF": { + "type": "dword", + "value": 16811106 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sewergrte001" + }, + "STRREF": { + "type": "dword", + "value": 16811282 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810791 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 82 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drain001" + }, + "STRREF": { + "type": "dword", + "value": 16811108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_portal001" + }, + "STRREF": { + "type": "dword", + "value": 16812548 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810788 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 83 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cage" + }, + "STRREF": { + "type": "dword", + "value": 16811308 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_animalcag001" + }, + "STRREF": { + "type": "dword", + "value": 16811310 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_animalcag002" + }, + "STRREF": { + "type": "dword", + "value": 16811312 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_animalcag003" + }, + "STRREF": { + "type": "dword", + "value": 16811328 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_crack002" + }, + "STRREF": { + "type": "dword", + "value": 16811544 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_crack003" + }, + "STRREF": { + "type": "dword", + "value": 16811544 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stain001" + }, + "STRREF": { + "type": "dword", + "value": 16811544 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_crack004" + }, + "STRREF": { + "type": "dword", + "value": 16811546 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodpool001" + }, + "STRREF": { + "type": "dword", + "value": 16812536 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sewergrate" + }, + "STRREF": { + "type": "dword", + "value": 16812730 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallstain003" + }, + "STRREF": { + "type": "dword", + "value": 16812834 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallstain001" + }, + "STRREF": { + "type": "dword", + "value": 16812836 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallstain002" + }, + "STRREF": { + "type": "dword", + "value": 16812838 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallstain004" + }, + "STRREF": { + "type": "dword", + "value": 16812840 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallstain005" + }, + "STRREF": { + "type": "dword", + "value": 16812842 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallstain006" + }, + "STRREF": { + "type": "dword", + "value": 16812844 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cobweb001" + }, + "STRREF": { + "type": "dword", + "value": 16813496 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cobweb002" + }, + "STRREF": { + "type": "dword", + "value": 16813498 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cobweb003" + }, + "STRREF": { + "type": "dword", + "value": 16813500 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cobweb004" + }, + "STRREF": { + "type": "dword", + "value": 16813502 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cobweb005" + }, + "STRREF": { + "type": "dword", + "value": 16813504 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cobweb006" + }, + "STRREF": { + "type": "dword", + "value": 16813506 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cobweb007" + }, + "STRREF": { + "type": "dword", + "value": 16813508 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cobweb008" + }, + "STRREF": { + "type": "dword", + "value": 16813510 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cobweb009" + }, + "STRREF": { + "type": "dword", + "value": 16813512 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810789 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 79 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodwall1" + }, + "STRREF": { + "type": "dword", + "value": 16811160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodwall10" + }, + "STRREF": { + "type": "dword", + "value": 16811160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodwall2" + }, + "STRREF": { + "type": "dword", + "value": 16811160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodwall3" + }, + "STRREF": { + "type": "dword", + "value": 16811160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodwall4" + }, + "STRREF": { + "type": "dword", + "value": 16811160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodwall5" + }, + "STRREF": { + "type": "dword", + "value": 16811160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodwall6" + }, + "STRREF": { + "type": "dword", + "value": 16811160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodwall7" + }, + "STRREF": { + "type": "dword", + "value": 16811160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodwall8" + }, + "STRREF": { + "type": "dword", + "value": 16811160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodwall9" + }, + "STRREF": { + "type": "dword", + "value": 16811160 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodstain1" + }, + "STRREF": { + "type": "dword", + "value": 16811156 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodstain2" + }, + "STRREF": { + "type": "dword", + "value": 16811156 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodstain3" + }, + "STRREF": { + "type": "dword", + "value": 16811156 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodstain4" + }, + "STRREF": { + "type": "dword", + "value": 16811156 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodstain5" + }, + "STRREF": { + "type": "dword", + "value": 16811156 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodstain6" + }, + "STRREF": { + "type": "dword", + "value": 16811156 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodstain7" + }, + "STRREF": { + "type": "dword", + "value": 16811156 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodtrail1" + }, + "STRREF": { + "type": "dword", + "value": 16811158 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodtrail2" + }, + "STRREF": { + "type": "dword", + "value": 16811158 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodtrail3" + }, + "STRREF": { + "type": "dword", + "value": 16811158 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bloodtrail4" + }, + "STRREF": { + "type": "dword", + "value": 16811158 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_splat002" + }, + "STRREF": { + "type": "dword", + "value": 16811806 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_splat003" + }, + "STRREF": { + "type": "dword", + "value": 16811808 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_splat004" + }, + "STRREF": { + "type": "dword", + "value": 16811810 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_splat005" + }, + "STRREF": { + "type": "dword", + "value": 16811812 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_splat006" + }, + "STRREF": { + "type": "dword", + "value": 16811814 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_splat007" + }, + "STRREF": { + "type": "dword", + "value": 16811816 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_splat008" + }, + "STRREF": { + "type": "dword", + "value": 16811818 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrawl001" + }, + "STRREF": { + "type": "dword", + "value": 16813440 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_script003" + }, + "STRREF": { + "type": "dword", + "value": 16813442 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scrawl002" + }, + "STRREF": { + "type": "dword", + "value": 16813444 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_script001" + }, + "STRREF": { + "type": "dword", + "value": 16813446 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_script002" + }, + "STRREF": { + "type": "dword", + "value": 16813448 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_splat009" + }, + "STRREF": { + "type": "dword", + "value": 16813450 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_splat010" + }, + "STRREF": { + "type": "dword", + "value": 16813452 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_splat001" + }, + "STRREF": { + "type": "dword", + "value": 16813454 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_splat011" + }, + "STRREF": { + "type": "dword", + "value": 16813456 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_splat012" + }, + "STRREF": { + "type": "dword", + "value": 16813458 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810785 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 138 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_firebowl001" + }, + "STRREF": { + "type": "dword", + "value": 16811262 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ofirebowl001" + }, + "STRREF": { + "type": "dword", + "value": 16811264 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_candle001" + }, + "STRREF": { + "type": "dword", + "value": 16811352 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ocandle001" + }, + "STRREF": { + "type": "dword", + "value": 16811354 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_firearch001" + }, + "STRREF": { + "type": "dword", + "value": 16811744 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_firearch002" + }, + "STRREF": { + "type": "dword", + "value": 16811746 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_firebowl002" + }, + "STRREF": { + "type": "dword", + "value": 16811748 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_firepillr001" + }, + "STRREF": { + "type": "dword", + "value": 16811752 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_firepillr002" + }, + "STRREF": { + "type": "dword", + "value": 16811754 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_firebowl004" + }, + "STRREF": { + "type": "dword", + "value": 16811756 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_firepillr003" + }, + "STRREF": { + "type": "dword", + "value": 16811758 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_firestat001" + }, + "STRREF": { + "type": "dword", + "value": 16811760 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_torch001" + }, + "STRREF": { + "type": "dword", + "value": 16813156 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_torch002" + }, + "STRREF": { + "type": "dword", + "value": 16813158 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_otorch002" + }, + "STRREF": { + "type": "dword", + "value": 16813160 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810793 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 85 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cryptroof" + }, + "STRREF": { + "type": "dword", + "value": 16811552 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dungeonroof" + }, + "STRREF": { + "type": "dword", + "value": 16811704 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rope" + }, + "STRREF": { + "type": "dword", + "value": 16812016 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_highsewage" + }, + "STRREF": { + "type": "dword", + "value": 16812044 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_highwater" + }, + "STRREF": { + "type": "dword", + "value": 16812046 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lowsewer" + }, + "STRREF": { + "type": "dword", + "value": 16812258 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lowwater" + }, + "STRREF": { + "type": "dword", + "value": 16812260 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mineroof" + }, + "STRREF": { + "type": "dword", + "value": 16812328 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sewerroof" + }, + "STRREF": { + "type": "dword", + "value": 16812732 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810790 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 47 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ankh001" + }, + "STRREF": { + "type": "dword", + "value": 16811020 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_canopic001" + }, + "STRREF": { + "type": "dword", + "value": 16811362 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_canopic002" + }, + "STRREF": { + "type": "dword", + "value": 16811364 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_canopic003" + }, + "STRREF": { + "type": "dword", + "value": 16811366 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_canopic004" + }, + "STRREF": { + "type": "dword", + "value": 16811368 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cross004" + }, + "STRREF": { + "type": "dword", + "value": 16811550 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_srcophgus002" + }, + "STRREF": { + "type": "dword", + "value": 16811570 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Dust Cloud" + }, + "RESREF": { + "type": "resref", + "value": "zep_demi_dust" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_srcophgus001" + }, + "STRREF": { + "type": "dword", + "value": 16811946 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gravestn001" + }, + "STRREF": { + "type": "dword", + "value": 16811950 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cross002" + }, + "STRREF": { + "type": "dword", + "value": 16812208 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ankh002" + }, + "STRREF": { + "type": "dword", + "value": 16812306 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_celtcmrkr001" + }, + "STRREF": { + "type": "dword", + "value": 16812308 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cross003" + }, + "STRREF": { + "type": "dword", + "value": 16812316 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_monument001" + }, + "STRREF": { + "type": "dword", + "value": 16812340 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Pile of Bones" + }, + "RESREF": { + "type": "resref", + "value": "zep_demi_skull" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sarco" + }, + "STRREF": { + "type": "dword", + "value": 16814108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sarco2" + }, + "STRREF": { + "type": "dword", + "value": 16814108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_coffin001" + }, + "STRREF": { + "type": "dword", + "value": 16813564 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810794 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 80 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cage001" + }, + "STRREF": { + "type": "dword", + "value": 16811314 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cage002" + }, + "STRREF": { + "type": "dword", + "value": 16811316 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cage003" + }, + "STRREF": { + "type": "dword", + "value": 16811318 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cage004" + }, + "STRREF": { + "type": "dword", + "value": 16811320 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cage005" + }, + "STRREF": { + "type": "dword", + "value": 16811322 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cage006" + }, + "STRREF": { + "type": "dword", + "value": 16811324 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cage007" + }, + "STRREF": { + "type": "dword", + "value": 16811326 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stocks001" + }, + "STRREF": { + "type": "dword", + "value": 16811706 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_spike001" + }, + "STRREF": { + "type": "dword", + "value": 16811804 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_guillotin001" + }, + "STRREF": { + "type": "dword", + "value": 16811980 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hangedman" + }, + "STRREF": { + "type": "dword", + "value": 16814074 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hangedmant" + }, + "STRREF": { + "type": "dword", + "value": 16814076 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hangedsk" + }, + "STRREF": { + "type": "dword", + "value": 16814078 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hangedwom" + }, + "STRREF": { + "type": "dword", + "value": 16814080 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_freeskelx" + }, + "STRREF": { + "type": "dword", + "value": 16814082 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_freeskel" + }, + "STRREF": { + "type": "dword", + "value": 16814084 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_orctrture001" + }, + "STRREF": { + "type": "dword", + "value": 16812026 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ironmaid001" + }, + "STRREF": { + "type": "dword", + "value": 16812068 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cross001" + }, + "STRREF": { + "type": "dword", + "value": 16812242 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gallows001" + }, + "STRREF": { + "type": "dword", + "value": 16812244 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_guillotin002" + }, + "STRREF": { + "type": "dword", + "value": 16812246 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pendulum001" + }, + "STRREF": { + "type": "dword", + "value": 16812248 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_manchains" + }, + "STRREF": { + "type": "dword", + "value": 16814098 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_manstocks" + }, + "STRREF": { + "type": "dword", + "value": 16814100 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rack001" + }, + "STRREF": { + "type": "dword", + "value": 16812570 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sleeper001" + }, + "STRREF": { + "type": "dword", + "value": 16812776 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sleeper002" + }, + "STRREF": { + "type": "dword", + "value": 16812778 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sleeper003" + }, + "STRREF": { + "type": "dword", + "value": 16812780 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shcklstak001" + }, + "STRREF": { + "type": "dword", + "value": 16812846 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_orctrture002" + }, + "STRREF": { + "type": "dword", + "value": 16812848 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810786 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 137 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_traps011" + }, + "STRREF": { + "type": "dword", + "value": 16811152 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_traps010" + }, + "STRREF": { + "type": "dword", + "value": 16811154 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_traps009" + }, + "STRREF": { + "type": "dword", + "value": 16812588 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_traps002" + }, + "STRREF": { + "type": "dword", + "value": 16813210 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_traps003" + }, + "STRREF": { + "type": "dword", + "value": 16813212 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_traps012" + }, + "STRREF": { + "type": "dword", + "value": 16813214 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_traps004" + }, + "STRREF": { + "type": "dword", + "value": 16813216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_trap002" + }, + "STRREF": { + "type": "dword", + "value": 16813218 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_trap001" + }, + "STRREF": { + "type": "dword", + "value": 16813220 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_traps005" + }, + "STRREF": { + "type": "dword", + "value": 16813222 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_traps006" + }, + "STRREF": { + "type": "dword", + "value": 16813224 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_traps007" + }, + "STRREF": { + "type": "dword", + "value": 16813226 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_traps008" + }, + "STRREF": { + "type": "dword", + "value": 16813228 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810792 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810784 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 8 + }, + "STRREF": { + "type": "dword", + "value": 6784 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 9 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_crystal001" + }, + "STRREF": { + "type": "dword", + "value": 16811170 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_whitebshp001" + }, + "STRREF": { + "type": "dword", + "value": 16811430 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_whiteking001" + }, + "STRREF": { + "type": "dword", + "value": 16811432 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_whitekght001" + }, + "STRREF": { + "type": "dword", + "value": 16811434 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_whitepawn001" + }, + "STRREF": { + "type": "dword", + "value": 16811436 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_whitequen001" + }, + "STRREF": { + "type": "dword", + "value": 16811438 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_whiterook001" + }, + "STRREF": { + "type": "dword", + "value": 16811440 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_whitebishop" + }, + "STRREF": { + "type": "dword", + "value": 16811442 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_whiteking" + }, + "STRREF": { + "type": "dword", + "value": 16811444 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_whiteknight" + }, + "STRREF": { + "type": "dword", + "value": 16811446 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_whitepawn" + }, + "STRREF": { + "type": "dword", + "value": 16811448 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_whitequeen" + }, + "STRREF": { + "type": "dword", + "value": 16811450 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_whiterook" + }, + "STRREF": { + "type": "dword", + "value": 16811452 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Dynamic Brazier" + }, + "RESREF": { + "type": "resref", + "value": "brazier" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_crystal002" + }, + "STRREF": { + "type": "dword", + "value": 16811960 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "automlamp" + }, + "STRREF": { + "type": "dword", + "value": 5715 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Power Crystal" + }, + "RESREF": { + "type": "resref", + "value": "crystal_pvp" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_crystal003" + }, + "STRREF": { + "type": "dword", + "value": 16812598 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_strange001" + }, + "STRREF": { + "type": "dword", + "value": 16812974 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_crystal004" + }, + "STRREF": { + "type": "dword", + "value": 16813570 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 1592 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 10 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "largebench" + }, + "STRREF": { + "type": "dword", + "value": 68857 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_castleroof" + }, + "STRREF": { + "type": "dword", + "value": 16811396 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cityintriorf" + }, + "STRREF": { + "type": "dword", + "value": 16811458 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_womanrock" + }, + "STRREF": { + "type": "dword", + "value": 16814192 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6785 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 105 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_campfr001" + }, + "STRREF": { + "type": "dword", + "value": 16811332 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ocampfr001" + }, + "STRREF": { + "type": "dword", + "value": 16811334 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_logsit001" + }, + "STRREF": { + "type": "dword", + "value": 16811530 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_skinpole001" + }, + "STRREF": { + "type": "dword", + "value": 16812534 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810732 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 111 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wolfcave001" + }, + "STRREF": { + "type": "dword", + "value": 16811670 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810736 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 11 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dirt02" + }, + "STRREF": { + "type": "dword", + "value": 16811656 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dirt03" + }, + "STRREF": { + "type": "dword", + "value": 16811658 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dirt01" + }, + "STRREF": { + "type": "dword", + "value": 16811660 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fireflies001" + }, + "STRREF": { + "type": "dword", + "value": 16811770 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810737 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 106 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_path001" + }, + "STRREF": { + "type": "dword", + "value": 16811866 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_path002" + }, + "STRREF": { + "type": "dword", + "value": 16811868 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_path003" + }, + "STRREF": { + "type": "dword", + "value": 16811870 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_path004" + }, + "STRREF": { + "type": "dword", + "value": 16811872 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_path005" + }, + "STRREF": { + "type": "dword", + "value": 16811874 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_path006" + }, + "STRREF": { + "type": "dword", + "value": 16811876 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_path007" + }, + "STRREF": { + "type": "dword", + "value": 16811878 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_path008" + }, + "STRREF": { + "type": "dword", + "value": 16811880 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_path009" + }, + "STRREF": { + "type": "dword", + "value": 16811882 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810730 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 68 + }, + "STRREF": { + "type": "dword", + "value": 16810738 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 110 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_skull001" + }, + "STRREF": { + "type": "dword", + "value": 16812774 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810734 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 109 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fog" + }, + "STRREF": { + "type": "dword", + "value": 16814064 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fog001" + }, + "STRREF": { + "type": "dword", + "value": 16811852 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fog002" + }, + "STRREF": { + "type": "dword", + "value": 16811854 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fog003" + }, + "STRREF": { + "type": "dword", + "value": 16811856 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_smokesm" + }, + "STRREF": { + "type": "dword", + "value": 16814110 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_smokea" + }, + "STRREF": { + "type": "dword", + "value": 16814112 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_smokeb" + }, + "STRREF": { + "type": "dword", + "value": 16814112 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_smoke001" + }, + "STRREF": { + "type": "dword", + "value": 16812816 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810735 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 107 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent01" + }, + "STRREF": { + "type": "dword", + "value": 16813064 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent001" + }, + "STRREF": { + "type": "dword", + "value": 16813066 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent002" + }, + "STRREF": { + "type": "dword", + "value": 16813068 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent003" + }, + "STRREF": { + "type": "dword", + "value": 16813070 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent02" + }, + "STRREF": { + "type": "dword", + "value": 16813072 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent009" + }, + "STRREF": { + "type": "dword", + "value": 16813074 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent03" + }, + "STRREF": { + "type": "dword", + "value": 16813074 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent004" + }, + "STRREF": { + "type": "dword", + "value": 16813076 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent005" + }, + "STRREF": { + "type": "dword", + "value": 16813078 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent006" + }, + "STRREF": { + "type": "dword", + "value": 16813080 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent007" + }, + "STRREF": { + "type": "dword", + "value": 16813082 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent010" + }, + "STRREF": { + "type": "dword", + "value": 16813084 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent011" + }, + "STRREF": { + "type": "dword", + "value": 16813086 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent012" + }, + "STRREF": { + "type": "dword", + "value": 16813088 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent013" + }, + "STRREF": { + "type": "dword", + "value": 16813090 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent014" + }, + "STRREF": { + "type": "dword", + "value": 16813092 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent015" + }, + "STRREF": { + "type": "dword", + "value": 16813094 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent016" + }, + "STRREF": { + "type": "dword", + "value": 16813096 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent017" + }, + "STRREF": { + "type": "dword", + "value": 16813098 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent019" + }, + "STRREF": { + "type": "dword", + "value": 16813100 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent018" + }, + "STRREF": { + "type": "dword", + "value": 16813102 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tent020" + }, + "STRREF": { + "type": "dword", + "value": 16813104 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810729 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 104 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks001" + }, + "STRREF": { + "type": "dword", + "value": 16813170 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks002" + }, + "STRREF": { + "type": "dword", + "value": 16813172 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks003" + }, + "STRREF": { + "type": "dword", + "value": 16813174 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks004" + }, + "STRREF": { + "type": "dword", + "value": 16813176 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks005" + }, + "STRREF": { + "type": "dword", + "value": 16813178 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks006" + }, + "STRREF": { + "type": "dword", + "value": 16813180 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks007" + }, + "STRREF": { + "type": "dword", + "value": 16813182 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_track008" + }, + "STRREF": { + "type": "dword", + "value": 16813184 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks009" + }, + "STRREF": { + "type": "dword", + "value": 16813186 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks010" + }, + "STRREF": { + "type": "dword", + "value": 16813188 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks011" + }, + "STRREF": { + "type": "dword", + "value": 16813190 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks012" + }, + "STRREF": { + "type": "dword", + "value": 16813192 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks013" + }, + "STRREF": { + "type": "dword", + "value": 16813194 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks014" + }, + "STRREF": { + "type": "dword", + "value": 16813196 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks015" + }, + "STRREF": { + "type": "dword", + "value": 16813198 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks016" + }, + "STRREF": { + "type": "dword", + "value": 16813200 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks017" + }, + "STRREF": { + "type": "dword", + "value": 16813202 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks018" + }, + "STRREF": { + "type": "dword", + "value": 16813204 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks019" + }, + "STRREF": { + "type": "dword", + "value": 16813206 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tracks020" + }, + "STRREF": { + "type": "dword", + "value": 16813208 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810731 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 113 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub001" + }, + "STRREF": { + "type": "dword", + "value": 16813376 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub002" + }, + "STRREF": { + "type": "dword", + "value": 16813378 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810718 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 114 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers001" + }, + "STRREF": { + "type": "dword", + "value": 16811174 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers004" + }, + "STRREF": { + "type": "dword", + "value": 16811828 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers005" + }, + "STRREF": { + "type": "dword", + "value": 16811830 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers006" + }, + "STRREF": { + "type": "dword", + "value": 16811832 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers007" + }, + "STRREF": { + "type": "dword", + "value": 16811834 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers008" + }, + "STRREF": { + "type": "dword", + "value": 16811836 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers009" + }, + "STRREF": { + "type": "dword", + "value": 16811838 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers010" + }, + "STRREF": { + "type": "dword", + "value": 16811840 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers011" + }, + "STRREF": { + "type": "dword", + "value": 16811842 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers012" + }, + "STRREF": { + "type": "dword", + "value": 16811844 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers013" + }, + "STRREF": { + "type": "dword", + "value": 16811846 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers014" + }, + "STRREF": { + "type": "dword", + "value": 16811848 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers015" + }, + "STRREF": { + "type": "dword", + "value": 16811850 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers003" + }, + "STRREF": { + "type": "dword", + "value": 16812390 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers002" + }, + "STRREF": { + "type": "dword", + "value": 16812566 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flowers" + }, + "STRREF": { + "type": "dword", + "value": 16813524 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810719 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 115 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub036" + }, + "STRREF": { + "type": "dword", + "value": 16811254 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub038" + }, + "STRREF": { + "type": "dword", + "value": 16811256 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub035" + }, + "STRREF": { + "type": "dword", + "value": 16811258 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub037" + }, + "STRREF": { + "type": "dword", + "value": 16811260 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_giantfern" + }, + "STRREF": { + "type": "dword", + "value": 16814070 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gredfern" + }, + "STRREF": { + "type": "dword", + "value": 16814072 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_grasstuft001" + }, + "STRREF": { + "type": "dword", + "value": 16811948 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_log001" + }, + "STRREF": { + "type": "dword", + "value": 16812252 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_redfern" + }, + "STRREF": { + "type": "dword", + "value": 16814106 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub041" + }, + "STRREF": { + "type": "dword", + "value": 16812738 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub042" + }, + "STRREF": { + "type": "dword", + "value": 16812740 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810720 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 151 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub003" + }, + "STRREF": { + "type": "dword", + "value": 16812070 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub004" + }, + "STRREF": { + "type": "dword", + "value": 16812072 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub005" + }, + "STRREF": { + "type": "dword", + "value": 16812074 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub006" + }, + "STRREF": { + "type": "dword", + "value": 16812076 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub023" + }, + "STRREF": { + "type": "dword", + "value": 16812078 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub024" + }, + "STRREF": { + "type": "dword", + "value": 16812080 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub025" + }, + "STRREF": { + "type": "dword", + "value": 16812082 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub026" + }, + "STRREF": { + "type": "dword", + "value": 16812084 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub011" + }, + "STRREF": { + "type": "dword", + "value": 16812086 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub012" + }, + "STRREF": { + "type": "dword", + "value": 16812088 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub013" + }, + "STRREF": { + "type": "dword", + "value": 16812090 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub014" + }, + "STRREF": { + "type": "dword", + "value": 16812092 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub031" + }, + "STRREF": { + "type": "dword", + "value": 16812094 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub032" + }, + "STRREF": { + "type": "dword", + "value": 16812096 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub033" + }, + "STRREF": { + "type": "dword", + "value": 16812098 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub034" + }, + "STRREF": { + "type": "dword", + "value": 16812100 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub027" + }, + "STRREF": { + "type": "dword", + "value": 16812102 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub028" + }, + "STRREF": { + "type": "dword", + "value": 16812104 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub029" + }, + "STRREF": { + "type": "dword", + "value": 16812106 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub030" + }, + "STRREF": { + "type": "dword", + "value": 16812108 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub007" + }, + "STRREF": { + "type": "dword", + "value": 16812110 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub008" + }, + "STRREF": { + "type": "dword", + "value": 16812112 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub009" + }, + "STRREF": { + "type": "dword", + "value": 16812114 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub010" + }, + "STRREF": { + "type": "dword", + "value": 16812116 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub015" + }, + "STRREF": { + "type": "dword", + "value": 16812118 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub016" + }, + "STRREF": { + "type": "dword", + "value": 16812120 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub017" + }, + "STRREF": { + "type": "dword", + "value": 16812122 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub018" + }, + "STRREF": { + "type": "dword", + "value": 16812124 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub019" + }, + "STRREF": { + "type": "dword", + "value": 16812126 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub020" + }, + "STRREF": { + "type": "dword", + "value": 16812128 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub021" + }, + "STRREF": { + "type": "dword", + "value": 16812130 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shrub022" + }, + "STRREF": { + "type": "dword", + "value": 16812132 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810721 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 117 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bamboo001" + }, + "STRREF": { + "type": "dword", + "value": 16811064 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bamboo002" + }, + "STRREF": { + "type": "dword", + "value": 16811066 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bamboo003" + }, + "STRREF": { + "type": "dword", + "value": 16811068 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bamboo004" + }, + "STRREF": { + "type": "dword", + "value": 16811070 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bushfern001" + }, + "STRREF": { + "type": "dword", + "value": 16811298 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cactus001" + }, + "STRREF": { + "type": "dword", + "value": 16811302 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cactus002" + }, + "STRREF": { + "type": "dword", + "value": 16811304 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_cactus003" + }, + "STRREF": { + "type": "dword", + "value": 16811306 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bushfern002" + }, + "STRREF": { + "type": "dword", + "value": 16811742 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mushroom005" + }, + "STRREF": { + "type": "dword", + "value": 16812344 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mushroom003" + }, + "STRREF": { + "type": "dword", + "value": 16812346 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mushroom004" + }, + "STRREF": { + "type": "dword", + "value": 16812348 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mushroom002" + }, + "STRREF": { + "type": "dword", + "value": 16812350 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mushroom" + }, + "STRREF": { + "type": "dword", + "value": 16812352 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mushroom001" + }, + "STRREF": { + "type": "dword", + "value": 16812354 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mushroom006" + }, + "STRREF": { + "type": "dword", + "value": 16812354 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vinesh" + }, + "STRREF": { + "type": "dword", + "value": 16814176 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vinesv" + }, + "STRREF": { + "type": "dword", + "value": 16814176 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810728 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 122 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree088" + }, + "STRREF": { + "type": "dword", + "value": 16811372 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree092" + }, + "STRREF": { + "type": "dword", + "value": 16811380 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr6" + }, + "STRREF": { + "type": "dword", + "value": 16814118 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree007" + }, + "STRREF": { + "type": "dword", + "value": 16813316 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr12" + }, + "STRREF": { + "type": "dword", + "value": 16814132 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr28" + }, + "STRREF": { + "type": "dword", + "value": 16814119 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr20" + }, + "STRREF": { + "type": "dword", + "value": 16814121 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree006" + }, + "STRREF": { + "type": "dword", + "value": 16813318 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree003" + }, + "STRREF": { + "type": "dword", + "value": 16813320 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr14" + }, + "STRREF": { + "type": "dword", + "value": 16814146 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr1" + }, + "STRREF": { + "type": "dword", + "value": 16814134 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr22" + }, + "STRREF": { + "type": "dword", + "value": 16814136 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr8" + }, + "STRREF": { + "type": "dword", + "value": 16814148 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree001" + }, + "STRREF": { + "type": "dword", + "value": 16813322 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree004" + }, + "STRREF": { + "type": "dword", + "value": 16813324 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr9" + }, + "STRREF": { + "type": "dword", + "value": 16814150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr16" + }, + "STRREF": { + "type": "dword", + "value": 16814164 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr2" + }, + "STRREF": { + "type": "dword", + "value": 16814151 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr24" + }, + "STRREF": { + "type": "dword", + "value": 16814153 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree005" + }, + "STRREF": { + "type": "dword", + "value": 16813326 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree002" + }, + "STRREF": { + "type": "dword", + "value": 16813314 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr17" + }, + "STRREF": { + "type": "dword", + "value": 16814172 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr27" + }, + "STRREF": { + "type": "dword", + "value": 16814166 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810727 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 120 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree090" + }, + "STRREF": { + "type": "dword", + "value": 16811376 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_maple004" + }, + "STRREF": { + "type": "dword", + "value": 16812288 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_maple001" + }, + "STRREF": { + "type": "dword", + "value": 16812290 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_maple005" + }, + "STRREF": { + "type": "dword", + "value": 16812292 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_maple006" + }, + "STRREF": { + "type": "dword", + "value": 16812294 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_maple002" + }, + "STRREF": { + "type": "dword", + "value": 16812296 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_maple007" + }, + "STRREF": { + "type": "dword", + "value": 16812298 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_maple008" + }, + "STRREF": { + "type": "dword", + "value": 16812300 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_maple009" + }, + "STRREF": { + "type": "dword", + "value": 16812302 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_maple003" + }, + "STRREF": { + "type": "dword", + "value": 16812304 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree061" + }, + "STRREF": { + "type": "dword", + "value": 16813272 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree025" + }, + "STRREF": { + "type": "dword", + "value": 16813270 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree059" + }, + "STRREF": { + "type": "dword", + "value": 16813270 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree060" + }, + "STRREF": { + "type": "dword", + "value": 16813278 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree021" + }, + "STRREF": { + "type": "dword", + "value": 16813276 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree058" + }, + "STRREF": { + "type": "dword", + "value": 16813276 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree034" + }, + "STRREF": { + "type": "dword", + "value": 16813282 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree028" + }, + "STRREF": { + "type": "dword", + "value": 16813284 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree037" + }, + "STRREF": { + "type": "dword", + "value": 16813290 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree032" + }, + "STRREF": { + "type": "dword", + "value": 16813292 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree026" + }, + "STRREF": { + "type": "dword", + "value": 16813294 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree022" + }, + "STRREF": { + "type": "dword", + "value": 16813296 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree035" + }, + "STRREF": { + "type": "dword", + "value": 16813298 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree029" + }, + "STRREF": { + "type": "dword", + "value": 16813300 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree038" + }, + "STRREF": { + "type": "dword", + "value": 16813306 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree033" + }, + "STRREF": { + "type": "dword", + "value": 16813308 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree027" + }, + "STRREF": { + "type": "dword", + "value": 16813310 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree023" + }, + "STRREF": { + "type": "dword", + "value": 16813312 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree024" + }, + "STRREF": { + "type": "dword", + "value": 16813266 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree020" + }, + "STRREF": { + "type": "dword", + "value": 16813268 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree045" + }, + "STRREF": { + "type": "dword", + "value": 16813336 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree064" + }, + "STRREF": { + "type": "dword", + "value": 16813336 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree046" + }, + "STRREF": { + "type": "dword", + "value": 16813344 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree047" + }, + "STRREF": { + "type": "dword", + "value": 16813350 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810725 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 118 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_blssmtree001" + }, + "STRREF": { + "type": "dword", + "value": 16811424 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_blssmtree002" + }, + "STRREF": { + "type": "dword", + "value": 16811426 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_blssmtree003" + }, + "STRREF": { + "type": "dword", + "value": 16811428 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810723 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 119 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree089" + }, + "STRREF": { + "type": "dword", + "value": 16811374 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree091" + }, + "STRREF": { + "type": "dword", + "value": 16811378 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_treanttree" + }, + "STRREF": { + "type": "dword", + "value": 16814114 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_treebig" + }, + "STRREF": { + "type": "dword", + "value": 16813232 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree008" + }, + "STRREF": { + "type": "dword", + "value": 16813234 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree054" + }, + "STRREF": { + "type": "dword", + "value": 16813234 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree011" + }, + "STRREF": { + "type": "dword", + "value": 16813238 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree055" + }, + "STRREF": { + "type": "dword", + "value": 16813238 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree009" + }, + "STRREF": { + "type": "dword", + "value": 16813242 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree012" + }, + "STRREF": { + "type": "dword", + "value": 16813244 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree010" + }, + "STRREF": { + "type": "dword", + "value": 16813246 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree013" + }, + "STRREF": { + "type": "dword", + "value": 16813248 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree017" + }, + "STRREF": { + "type": "dword", + "value": 16813250 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree057" + }, + "STRREF": { + "type": "dword", + "value": 16813250 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree014" + }, + "STRREF": { + "type": "dword", + "value": 16813254 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree056" + }, + "STRREF": { + "type": "dword", + "value": 16813254 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree018" + }, + "STRREF": { + "type": "dword", + "value": 16813258 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree015" + }, + "STRREF": { + "type": "dword", + "value": 16813260 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree019" + }, + "STRREF": { + "type": "dword", + "value": 16813262 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree016" + }, + "STRREF": { + "type": "dword", + "value": 16813264 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree036" + }, + "STRREF": { + "type": "dword", + "value": 16813286 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree030" + }, + "STRREF": { + "type": "dword", + "value": 16813288 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree093" + }, + "STRREF": { + "type": "dword", + "value": 16813302 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree031" + }, + "STRREF": { + "type": "dword", + "value": 16813304 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree042" + }, + "STRREF": { + "type": "dword", + "value": 16813328 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree062" + }, + "STRREF": { + "type": "dword", + "value": 16813328 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree039" + }, + "STRREF": { + "type": "dword", + "value": 16813332 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree063" + }, + "STRREF": { + "type": "dword", + "value": 16813332 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree043" + }, + "STRREF": { + "type": "dword", + "value": 16813340 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree040" + }, + "STRREF": { + "type": "dword", + "value": 16813342 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree044" + }, + "STRREF": { + "type": "dword", + "value": 16813346 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree041" + }, + "STRREF": { + "type": "dword", + "value": 16813348 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree048" + }, + "STRREF": { + "type": "dword", + "value": 16813352 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree065" + }, + "STRREF": { + "type": "dword", + "value": 16813352 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree051" + }, + "STRREF": { + "type": "dword", + "value": 16813356 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree066" + }, + "STRREF": { + "type": "dword", + "value": 16813356 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree049" + }, + "STRREF": { + "type": "dword", + "value": 16813360 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree052" + }, + "STRREF": { + "type": "dword", + "value": 16813362 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree050" + }, + "STRREF": { + "type": "dword", + "value": 16813364 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree053" + }, + "STRREF": { + "type": "dword", + "value": 16813366 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810724 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 121 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree087" + }, + "STRREF": { + "type": "dword", + "value": 16811370 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree067" + }, + "STRREF": { + "type": "dword", + "value": 16811576 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree068" + }, + "STRREF": { + "type": "dword", + "value": 16811578 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree069" + }, + "STRREF": { + "type": "dword", + "value": 16811580 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree070" + }, + "STRREF": { + "type": "dword", + "value": 16811582 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree071" + }, + "STRREF": { + "type": "dword", + "value": 16811584 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree072" + }, + "STRREF": { + "type": "dword", + "value": 16811586 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree074" + }, + "STRREF": { + "type": "dword", + "value": 16811590 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree077" + }, + "STRREF": { + "type": "dword", + "value": 16811592 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree079" + }, + "STRREF": { + "type": "dword", + "value": 16811594 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree075" + }, + "STRREF": { + "type": "dword", + "value": 16811596 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree078" + }, + "STRREF": { + "type": "dword", + "value": 16811598 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree080" + }, + "STRREF": { + "type": "dword", + "value": 16811600 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree076" + }, + "STRREF": { + "type": "dword", + "value": 16811602 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree073" + }, + "STRREF": { + "type": "dword", + "value": 16811588 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree081" + }, + "STRREF": { + "type": "dword", + "value": 16811604 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree082" + }, + "STRREF": { + "type": "dword", + "value": 16811606 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree083" + }, + "STRREF": { + "type": "dword", + "value": 16811608 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree084" + }, + "STRREF": { + "type": "dword", + "value": 16811610 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree085" + }, + "STRREF": { + "type": "dword", + "value": 16811612 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_tree086" + }, + "STRREF": { + "type": "dword", + "value": 16811614 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinecanopy" + }, + "STRREF": { + "type": "dword", + "value": 16814116 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr3" + }, + "STRREF": { + "type": "dword", + "value": 16814123 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr21" + }, + "STRREF": { + "type": "dword", + "value": 16814125 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr7" + }, + "STRREF": { + "type": "dword", + "value": 16814127 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr13" + }, + "STRREF": { + "type": "dword", + "value": 16814129 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr4" + }, + "STRREF": { + "type": "dword", + "value": 16814138 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr23" + }, + "STRREF": { + "type": "dword", + "value": 16814140 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr10" + }, + "STRREF": { + "type": "dword", + "value": 16814142 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr15" + }, + "STRREF": { + "type": "dword", + "value": 16814144 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr5" + }, + "STRREF": { + "type": "dword", + "value": 16814155 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr25" + }, + "STRREF": { + "type": "dword", + "value": 16814157 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr11" + }, + "STRREF": { + "type": "dword", + "value": 16814159 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr18" + }, + "STRREF": { + "type": "dword", + "value": 16814161 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr26" + }, + "STRREF": { + "type": "dword", + "value": 16814168 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pinetr19" + }, + "STRREF": { + "type": "dword", + "value": 16814170 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810726 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810722 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810717 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 108 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_geiser001" + }, + "STRREF": { + "type": "dword", + "value": 16811932 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_geiser002" + }, + "STRREF": { + "type": "dword", + "value": 16811934 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_geiser003" + }, + "STRREF": { + "type": "dword", + "value": 16811936 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_geiser004" + }, + "STRREF": { + "type": "dword", + "value": 16811938 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_water001" + }, + "STRREF": { + "type": "dword", + "value": 16813476 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_water002" + }, + "STRREF": { + "type": "dword", + "value": 16813478 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_water003" + }, + "STRREF": { + "type": "dword", + "value": 16813480 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_water004" + }, + "STRREF": { + "type": "dword", + "value": 16813482 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_water005" + }, + "STRREF": { + "type": "dword", + "value": 16813484 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_water006" + }, + "STRREF": { + "type": "dword", + "value": 16813486 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_waterfall001" + }, + "STRREF": { + "type": "dword", + "value": 16813488 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810733 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6786 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 141 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign005" + }, + "STRREF": { + "type": "dword", + "value": 16811004 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign015" + }, + "STRREF": { + "type": "dword", + "value": 16811036 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign016" + }, + "STRREF": { + "type": "dword", + "value": 16811044 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign001" + }, + "STRREF": { + "type": "dword", + "value": 16811072 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign007" + }, + "STRREF": { + "type": "dword", + "value": 16811150 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign011" + }, + "STRREF": { + "type": "dword", + "value": 16811244 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign008" + }, + "STRREF": { + "type": "dword", + "value": 16811300 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign026" + }, + "STRREF": { + "type": "dword", + "value": 16811456 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign004" + }, + "STRREF": { + "type": "dword", + "value": 16811460 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign019" + }, + "STRREF": { + "type": "dword", + "value": 16811534 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign027" + }, + "STRREF": { + "type": "dword", + "value": 16811664 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign028" + }, + "STRREF": { + "type": "dword", + "value": 16811686 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign017" + }, + "STRREF": { + "type": "dword", + "value": 16811786 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign018" + }, + "STRREF": { + "type": "dword", + "value": 16811860 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign006" + }, + "STRREF": { + "type": "dword", + "value": 16812040 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign010" + }, + "STRREF": { + "type": "dword", + "value": 16812064 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign002" + }, + "STRREF": { + "type": "dword", + "value": 16812134 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign023" + }, + "STRREF": { + "type": "dword", + "value": 16812282 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign024" + }, + "STRREF": { + "type": "dword", + "value": 16812322 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign025" + }, + "STRREF": { + "type": "dword", + "value": 16812356 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign022" + }, + "STRREF": { + "type": "dword", + "value": 16812414 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign020" + }, + "STRREF": { + "type": "dword", + "value": 16812550 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign021" + }, + "STRREF": { + "type": "dword", + "value": 16812558 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign029" + }, + "STRREF": { + "type": "dword", + "value": 16812586 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign" + }, + "STRREF": { + "type": "dword", + "value": 16812708 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign013" + }, + "STRREF": { + "type": "dword", + "value": 16812758 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign030" + }, + "STRREF": { + "type": "dword", + "value": 16812832 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign012" + }, + "STRREF": { + "type": "dword", + "value": 16812938 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign014" + }, + "STRREF": { + "type": "dword", + "value": 16813038 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign009" + }, + "STRREF": { + "type": "dword", + "value": 16813056 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign031" + }, + "STRREF": { + "type": "dword", + "value": 16813380 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wallflag" + }, + "STRREF": { + "type": "dword", + "value": 16813420 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_sign003" + }, + "STRREF": { + "type": "dword", + "value": 16813494 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810741 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 12 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_noticebrd001" + }, + "STRREF": { + "type": "dword", + "value": 16812398 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pumpkinsign" + }, + "STRREF": { + "type": "dword", + "value": 16812564 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_savgesign001" + }, + "STRREF": { + "type": "dword", + "value": 16812680 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810743 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 139 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flagazuth001" + }, + "STRREF": { + "type": "dword", + "value": 16811040 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag015" + }, + "STRREF": { + "type": "dword", + "value": 16811164 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag008" + }, + "STRREF": { + "type": "dword", + "value": 16811190 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag005" + }, + "STRREF": { + "type": "dword", + "value": 16811290 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag010" + }, + "STRREF": { + "type": "dword", + "value": 16811422 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flgdgnclt001" + }, + "STRREF": { + "type": "dword", + "value": 16811554 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flagcyric001" + }, + "STRREF": { + "type": "dword", + "value": 16811568 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag006" + }, + "STRREF": { + "type": "dword", + "value": 16811662 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dracncflg002" + }, + "STRREF": { + "type": "dword", + "value": 16811672 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dracncflg003" + }, + "STRREF": { + "type": "dword", + "value": 16811672 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dracncflg004" + }, + "STRREF": { + "type": "dword", + "value": 16811672 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dracncflg005" + }, + "STRREF": { + "type": "dword", + "value": 16811672 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dracncflg006" + }, + "STRREF": { + "type": "dword", + "value": 16811672 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dracncflg007" + }, + "STRREF": { + "type": "dword", + "value": 16811672 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dracncflg008" + }, + "STRREF": { + "type": "dword", + "value": 16811672 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dracncflg009" + }, + "STRREF": { + "type": "dword", + "value": 16811672 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dracncflg010" + }, + "STRREF": { + "type": "dword", + "value": 16811672 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_draconicflag" + }, + "STRREF": { + "type": "dword", + "value": 16811672 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag" + }, + "STRREF": { + "type": "dword", + "value": 16811676 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowflag" + }, + "STRREF": { + "type": "dword", + "value": 16811696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowflag003" + }, + "STRREF": { + "type": "dword", + "value": 16811696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowflag004" + }, + "STRREF": { + "type": "dword", + "value": 16811696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowflag005" + }, + "STRREF": { + "type": "dword", + "value": 16811696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowflag006" + }, + "STRREF": { + "type": "dword", + "value": 16811696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowflag007" + }, + "STRREF": { + "type": "dword", + "value": 16811696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowflag008" + }, + "STRREF": { + "type": "dword", + "value": 16811696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowflag009" + }, + "STRREF": { + "type": "dword", + "value": 16811696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowflag010" + }, + "STRREF": { + "type": "dword", + "value": 16811696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowflag011" + }, + "STRREF": { + "type": "dword", + "value": 16811696 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flagbane001" + }, + "STRREF": { + "type": "dword", + "value": 16811794 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_largeflag001" + }, + "STRREF": { + "type": "dword", + "value": 16811796 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag014" + }, + "STRREF": { + "type": "dword", + "value": 16811952 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flaghelm001" + }, + "STRREF": { + "type": "dword", + "value": 16812038 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag003" + }, + "STRREF": { + "type": "dword", + "value": 16812054 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flglthndr001" + }, + "STRREF": { + "type": "dword", + "value": 16812222 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flgloviatr01" + }, + "STRREF": { + "type": "dword", + "value": 16812254 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag007" + }, + "STRREF": { + "type": "dword", + "value": 16812338 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flgmystra001" + }, + "STRREF": { + "type": "dword", + "value": 16812362 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag013" + }, + "STRREF": { + "type": "dword", + "value": 16812590 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag009" + }, + "STRREF": { + "type": "dword", + "value": 16812594 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flgrdwzrd001" + }, + "STRREF": { + "type": "dword", + "value": 16812618 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_crabflag" + }, + "STRREF": { + "type": "dword", + "value": 16812650 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_craneflag" + }, + "STRREF": { + "type": "dword", + "value": 16812652 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dragonflag" + }, + "STRREF": { + "type": "dword", + "value": 16812654 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lionflag" + }, + "STRREF": { + "type": "dword", + "value": 16812656 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_mantisflag" + }, + "STRREF": { + "type": "dword", + "value": 16812658 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pheonixflag" + }, + "STRREF": { + "type": "dword", + "value": 16812660 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scorpionflag" + }, + "STRREF": { + "type": "dword", + "value": 16812662 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shadwlndsflg" + }, + "STRREF": { + "type": "dword", + "value": 16812664 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_unicornflag" + }, + "STRREF": { + "type": "dword", + "value": 16812666 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag004" + }, + "STRREF": { + "type": "dword", + "value": 16812668 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_shipflag001" + }, + "STRREF": { + "type": "dword", + "value": 16812754 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flgslvrrv001" + }, + "STRREF": { + "type": "dword", + "value": 16812772 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_smallflag001" + }, + "STRREF": { + "type": "dword", + "value": 16812784 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag001" + }, + "STRREF": { + "type": "dword", + "value": 16812818 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flagsune001" + }, + "STRREF": { + "type": "dword", + "value": 16812976 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flgtempus001" + }, + "STRREF": { + "type": "dword", + "value": 16813062 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag002" + }, + "STRREF": { + "type": "dword", + "value": 16813110 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flagtorm001" + }, + "STRREF": { + "type": "dword", + "value": 16813164 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flgtymora001" + }, + "STRREF": { + "type": "dword", + "value": 16813372 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flagtyr001" + }, + "STRREF": { + "type": "dword", + "value": 16813374 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flgwaukeen01" + }, + "STRREF": { + "type": "dword", + "value": 16813490 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag011" + }, + "STRREF": { + "type": "dword", + "value": 16813568 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flag012" + }, + "STRREF": { + "type": "dword", + "value": 16813572 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810739 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 142 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner006" + }, + "STRREF": { + "type": "dword", + "value": 16811074 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner017" + }, + "STRREF": { + "type": "dword", + "value": 16811166 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner001" + }, + "STRREF": { + "type": "dword", + "value": 16811168 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner002" + }, + "STRREF": { + "type": "dword", + "value": 16811172 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner018" + }, + "STRREF": { + "type": "dword", + "value": 16811178 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner019" + }, + "STRREF": { + "type": "dword", + "value": 16811180 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner003" + }, + "STRREF": { + "type": "dword", + "value": 16811182 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner004" + }, + "STRREF": { + "type": "dword", + "value": 16811184 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner020" + }, + "STRREF": { + "type": "dword", + "value": 16811186 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_dracncplacrd" + }, + "STRREF": { + "type": "dword", + "value": 16811674 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drcncplac001" + }, + "STRREF": { + "type": "dword", + "value": 16811674 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drcncplac003" + }, + "STRREF": { + "type": "dword", + "value": 16811674 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drcncplac004" + }, + "STRREF": { + "type": "dword", + "value": 16811674 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drcncplac005" + }, + "STRREF": { + "type": "dword", + "value": 16811674 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drcncplac006" + }, + "STRREF": { + "type": "dword", + "value": 16811674 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drcncplac007" + }, + "STRREF": { + "type": "dword", + "value": 16811674 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drcncplac008" + }, + "STRREF": { + "type": "dword", + "value": 16811674 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drcncplac009" + }, + "STRREF": { + "type": "dword", + "value": 16811674 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drcncplac010" + }, + "STRREF": { + "type": "dword", + "value": 16811674 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowflag001" + }, + "STRREF": { + "type": "dword", + "value": 16811698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowflag002" + }, + "STRREF": { + "type": "dword", + "value": 16811698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowplcrd003" + }, + "STRREF": { + "type": "dword", + "value": 16811698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowplcrd004" + }, + "STRREF": { + "type": "dword", + "value": 16811698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowplcrd005" + }, + "STRREF": { + "type": "dword", + "value": 16811698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowplcrd006" + }, + "STRREF": { + "type": "dword", + "value": 16811698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowplcrd007" + }, + "STRREF": { + "type": "dword", + "value": 16811698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowplcrd008" + }, + "STRREF": { + "type": "dword", + "value": 16811698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowplcrd009" + }, + "STRREF": { + "type": "dword", + "value": 16811698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drowplcrd010" + }, + "STRREF": { + "type": "dword", + "value": 16811698 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner021" + }, + "STRREF": { + "type": "dword", + "value": 16811956 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner005" + }, + "STRREF": { + "type": "dword", + "value": 16811958 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner008" + }, + "STRREF": { + "type": "dword", + "value": 16811962 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner024" + }, + "STRREF": { + "type": "dword", + "value": 16811966 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner027" + }, + "STRREF": { + "type": "dword", + "value": 16811968 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner011" + }, + "STRREF": { + "type": "dword", + "value": 16811970 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner014" + }, + "STRREF": { + "type": "dword", + "value": 16811972 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner032" + }, + "STRREF": { + "type": "dword", + "value": 16811974 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Rank Registry" + }, + "RESREF": { + "type": "resref", + "value": "rankregistry" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner022" + }, + "STRREF": { + "type": "dword", + "value": 16812596 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner009" + }, + "STRREF": { + "type": "dword", + "value": 16812600 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner025" + }, + "STRREF": { + "type": "dword", + "value": 16812606 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner028" + }, + "STRREF": { + "type": "dword", + "value": 16812608 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner012" + }, + "STRREF": { + "type": "dword", + "value": 16812610 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner015" + }, + "STRREF": { + "type": "dword", + "value": 16812612 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner030" + }, + "STRREF": { + "type": "dword", + "value": 16812614 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_orisign001" + }, + "STRREF": { + "type": "dword", + "value": 16812768 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_orisign002" + }, + "STRREF": { + "type": "dword", + "value": 16812770 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner023" + }, + "STRREF": { + "type": "dword", + "value": 16813518 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner007" + }, + "STRREF": { + "type": "dword", + "value": 16813520 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner010" + }, + "STRREF": { + "type": "dword", + "value": 16813522 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner026" + }, + "STRREF": { + "type": "dword", + "value": 16813528 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner029" + }, + "STRREF": { + "type": "dword", + "value": 16813530 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner016" + }, + "STRREF": { + "type": "dword", + "value": 16813532 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner031" + }, + "STRREF": { + "type": "dword", + "value": 16813534 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_banner013" + }, + "STRREF": { + "type": "dword", + "value": 16813536 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810742 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 140 + }, + "STRREF": { + "type": "dword", + "value": 16810740 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6787 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 14 + }, + "STRREF": { + "type": "dword", + "value": 9122 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 15 + }, + "STRREF": { + "type": "dword", + "value": 9128 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 0 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Appearances 0-99 (Examine to read)" + }, + "RESREF": { + "type": "resref", + "value": "billboard004" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Appearances 100-199 (Examine to read)" + }, + "RESREF": { + "type": "resref", + "value": "billboard005" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Appearances 200-299 (Examine to read)" + }, + "RESREF": { + "type": "resref", + "value": "billboard2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Appearances 300+ (Examine to read)" + }, + "RESREF": { + "type": "resref", + "value": "billboard003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Biblical Katanadansu" + }, + "RESREF": { + "type": "resref", + "value": "zep_katnadnsu004" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "CEP Appearances 1000-1180 (Examine)" + }, + "RESREF": { + "type": "resref", + "value": "billboard006" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "CEP Appearances 1180-1360 (Examine)" + }, + "RESREF": { + "type": "resref", + "value": "billboard007" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "CEP Appearances 1360+ (Examine)" + }, + "RESREF": { + "type": "resref", + "value": "billboard008" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Fireworks Lever" + }, + "RESREF": { + "type": "resref", + "value": "flrlever003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Fireworks Source" + }, + "RESREF": { + "type": "resref", + "value": "fireworkssource" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Gold Chest" + }, + "RESREF": { + "type": "resref", + "value": "easy_chest003" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Specialty Gear" + }, + "RESREF": { + "type": "resref", + "value": "zep_ankh004" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6688 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 1 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Fireworks Wand Target" + }, + "RESREF": { + "type": "resref", + "value": "wandfireworktarg" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Large Fireworks Target" + }, + "RESREF": { + "type": "resref", + "value": "fireworksltarget" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Medium Fireworks Target" + }, + "RESREF": { + "type": "resref", + "value": "fireworksmtarget" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Small Fireworks Target" + }, + "RESREF": { + "type": "resref", + "value": "fireworksstarget" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Trash Receptacle" + }, + "RESREF": { + "type": "resref", + "value": "ats_trash_can" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6689 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 2 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bench" + }, + "RESREF": { + "type": "resref", + "value": "bench" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Monster Terminator" + }, + "RESREF": { + "type": "resref", + "value": "monster_terminat" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6690 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 3 + }, + "STRREF": { + "type": "dword", + "value": 6691 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 4 + }, + "STRREF": { + "type": "dword", + "value": 6692 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6687 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 45 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_column001" + }, + "STRREF": { + "type": "dword", + "value": 16811516 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_column002" + }, + "STRREF": { + "type": "dword", + "value": 16811518 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_column003" + }, + "STRREF": { + "type": "dword", + "value": 16811520 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_column004" + }, + "STRREF": { + "type": "dword", + "value": 16811522 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_column005" + }, + "STRREF": { + "type": "dword", + "value": 16811524 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_column007" + }, + "STRREF": { + "type": "dword", + "value": 16811526 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_column008" + }, + "STRREF": { + "type": "dword", + "value": 16811528 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar001" + }, + "STRREF": { + "type": "dword", + "value": 16811618 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar002" + }, + "STRREF": { + "type": "dword", + "value": 16811620 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar003" + }, + "STRREF": { + "type": "dword", + "value": 16811620 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar004" + }, + "STRREF": { + "type": "dword", + "value": 16811620 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar005" + }, + "STRREF": { + "type": "dword", + "value": 16811620 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar006" + }, + "STRREF": { + "type": "dword", + "value": 16811622 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar007" + }, + "STRREF": { + "type": "dword", + "value": 16811624 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar008" + }, + "STRREF": { + "type": "dword", + "value": 16811626 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar009" + }, + "STRREF": { + "type": "dword", + "value": 16811628 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar010" + }, + "STRREF": { + "type": "dword", + "value": 16811630 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar011" + }, + "STRREF": { + "type": "dword", + "value": 16811632 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar012" + }, + "STRREF": { + "type": "dword", + "value": 16811634 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar013" + }, + "STRREF": { + "type": "dword", + "value": 16811636 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bpillar014" + }, + "STRREF": { + "type": "dword", + "value": 16811638 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pillar001" + }, + "STRREF": { + "type": "dword", + "value": 16812456 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pillar002" + }, + "STRREF": { + "type": "dword", + "value": 16812458 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pillar003" + }, + "STRREF": { + "type": "dword", + "value": 16812460 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pillar004" + }, + "STRREF": { + "type": "dword", + "value": 16812462 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pillar005" + }, + "STRREF": { + "type": "dword", + "value": 16812464 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pillarmrble1" + }, + "STRREF": { + "type": "dword", + "value": 16812466 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pillrmrbl002" + }, + "STRREF": { + "type": "dword", + "value": 16812466 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810758 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 43 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones011" + }, + "STRREF": { + "type": "dword", + "value": 16812850 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones012" + }, + "STRREF": { + "type": "dword", + "value": 16812852 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones001" + }, + "STRREF": { + "type": "dword", + "value": 16812856 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones002" + }, + "STRREF": { + "type": "dword", + "value": 16812858 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones003" + }, + "STRREF": { + "type": "dword", + "value": 16812860 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones004" + }, + "STRREF": { + "type": "dword", + "value": 16812862 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_boulder001" + }, + "STRREF": { + "type": "dword", + "value": 16812864 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_boulder002" + }, + "STRREF": { + "type": "dword", + "value": 16812866 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_boulder003" + }, + "STRREF": { + "type": "dword", + "value": 16812868 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones018" + }, + "STRREF": { + "type": "dword", + "value": 16812940 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones019" + }, + "STRREF": { + "type": "dword", + "value": 16812942 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones013" + }, + "STRREF": { + "type": "dword", + "value": 16812946 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones014" + }, + "STRREF": { + "type": "dword", + "value": 16812948 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones016" + }, + "STRREF": { + "type": "dword", + "value": 16812950 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones015" + }, + "STRREF": { + "type": "dword", + "value": 16812952 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones017" + }, + "STRREF": { + "type": "dword", + "value": 16812954 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones006" + }, + "STRREF": { + "type": "dword", + "value": 16812956 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones005" + }, + "STRREF": { + "type": "dword", + "value": 16812958 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones009" + }, + "STRREF": { + "type": "dword", + "value": 16812960 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones010" + }, + "STRREF": { + "type": "dword", + "value": 16812962 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones007" + }, + "STRREF": { + "type": "dword", + "value": 16812964 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_stones008" + }, + "STRREF": { + "type": "dword", + "value": 16812966 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810756 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 46 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_iceblder001" + }, + "STRREF": { + "type": "dword", + "value": 16811216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_iceblder002" + }, + "STRREF": { + "type": "dword", + "value": 16811218 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_giantsword" + }, + "STRREF": { + "type": "dword", + "value": 16811940 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_guardian" + }, + "STRREF": { + "type": "dword", + "value": 16811978 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810759 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 42 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fist001" + }, + "STRREF": { + "type": "dword", + "value": 16811788 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fist002" + }, + "STRREF": { + "type": "dword", + "value": 16811790 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_fist003" + }, + "STRREF": { + "type": "dword", + "value": 16811792 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_foot001" + }, + "STRREF": { + "type": "dword", + "value": 16811862 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_foot002" + }, + "STRREF": { + "type": "dword", + "value": 16811864 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hand001" + }, + "STRREF": { + "type": "dword", + "value": 16811990 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hand002" + }, + "STRREF": { + "type": "dword", + "value": 16811992 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hand003" + }, + "STRREF": { + "type": "dword", + "value": 16811994 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hand004" + }, + "STRREF": { + "type": "dword", + "value": 16811996 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hand005" + }, + "STRREF": { + "type": "dword", + "value": 16811998 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hand006" + }, + "STRREF": { + "type": "dword", + "value": 16812000 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hand007" + }, + "STRREF": { + "type": "dword", + "value": 16812002 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hand008" + }, + "STRREF": { + "type": "dword", + "value": 16812004 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hand009" + }, + "STRREF": { + "type": "dword", + "value": 16812006 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hand010" + }, + "STRREF": { + "type": "dword", + "value": 16812008 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hand011" + }, + "STRREF": { + "type": "dword", + "value": 16812010 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_head001" + }, + "STRREF": { + "type": "dword", + "value": 16812032 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_head002" + }, + "STRREF": { + "type": "dword", + "value": 16812034 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_head003" + }, + "STRREF": { + "type": "dword", + "value": 16812036 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810755 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 41 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues001" + }, + "STRREF": { + "type": "dword", + "value": 16812872 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues002" + }, + "STRREF": { + "type": "dword", + "value": 16812874 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statue001" + }, + "STRREF": { + "type": "dword", + "value": 16812876 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues004" + }, + "STRREF": { + "type": "dword", + "value": 16812878 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues006" + }, + "STRREF": { + "type": "dword", + "value": 16812880 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues005" + }, + "STRREF": { + "type": "dword", + "value": 16812882 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues029" + }, + "STRREF": { + "type": "dword", + "value": 16812884 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues027" + }, + "STRREF": { + "type": "dword", + "value": 16812886 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues010" + }, + "STRREF": { + "type": "dword", + "value": 16812888 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues013" + }, + "STRREF": { + "type": "dword", + "value": 16812890 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues014" + }, + "STRREF": { + "type": "dword", + "value": 16812892 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues016" + }, + "STRREF": { + "type": "dword", + "value": 16812894 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues015" + }, + "STRREF": { + "type": "dword", + "value": 16812896 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues017" + }, + "STRREF": { + "type": "dword", + "value": 16812898 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues018" + }, + "STRREF": { + "type": "dword", + "value": 16812900 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statue002" + }, + "STRREF": { + "type": "dword", + "value": 16812902 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statue003" + }, + "STRREF": { + "type": "dword", + "value": 16812904 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues021" + }, + "STRREF": { + "type": "dword", + "value": 16812906 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues026" + }, + "STRREF": { + "type": "dword", + "value": 16812908 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues012" + }, + "STRREF": { + "type": "dword", + "value": 16812910 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues011" + }, + "STRREF": { + "type": "dword", + "value": 16812912 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues025" + }, + "STRREF": { + "type": "dword", + "value": 16812914 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues024" + }, + "STRREF": { + "type": "dword", + "value": 16812916 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues020" + }, + "STRREF": { + "type": "dword", + "value": 16812918 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues023" + }, + "STRREF": { + "type": "dword", + "value": 16812920 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues007" + }, + "STRREF": { + "type": "dword", + "value": 16812922 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues003" + }, + "STRREF": { + "type": "dword", + "value": 16812924 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues030" + }, + "STRREF": { + "type": "dword", + "value": 16812926 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues028" + }, + "STRREF": { + "type": "dword", + "value": 16812928 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues009" + }, + "STRREF": { + "type": "dword", + "value": 16812930 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues022" + }, + "STRREF": { + "type": "dword", + "value": 16812932 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues008" + }, + "STRREF": { + "type": "dword", + "value": 16812934 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_statues019" + }, + "STRREF": { + "type": "dword", + "value": 16812936 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810754 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 44 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bricks001" + }, + "STRREF": { + "type": "dword", + "value": 16811274 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bricks002" + }, + "STRREF": { + "type": "dword", + "value": 16811276 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bricks003" + }, + "STRREF": { + "type": "dword", + "value": 16811278 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_deviltwr001" + }, + "STRREF": { + "type": "dword", + "value": 16811648 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gardenstn001" + }, + "STRREF": { + "type": "dword", + "value": 16812640 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gardenstn002" + }, + "STRREF": { + "type": "dword", + "value": 16812642 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_gardenstn003" + }, + "STRREF": { + "type": "dword", + "value": 16812644 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_rock001" + }, + "STRREF": { + "type": "dword", + "value": 16812646 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810757 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810753 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 147 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_albemic001" + }, + "STRREF": { + "type": "dword", + "value": 16811002 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_globe" + }, + "STRREF": { + "type": "dword", + "value": 16811944 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scale001" + }, + "STRREF": { + "type": "dword", + "value": 16812684 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_telescope" + }, + "STRREF": { + "type": "dword", + "value": 16813060 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810748 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 145 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_forge001" + }, + "STRREF": { + "type": "dword", + "value": 16811514 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hammer02" + }, + "STRREF": { + "type": "dword", + "value": 16811982 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hammer01" + }, + "STRREF": { + "type": "dword", + "value": 16811984 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hammer03" + }, + "STRREF": { + "type": "dword", + "value": 16811986 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_forge" + }, + "STRREF": { + "type": "dword", + "value": 16812240 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pliers" + }, + "STRREF": { + "type": "dword", + "value": 16812528 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810745 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 153 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ladder002" + }, + "STRREF": { + "type": "dword", + "value": 16811708 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ladder003" + }, + "STRREF": { + "type": "dword", + "value": 16812152 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ladder001" + }, + "STRREF": { + "type": "dword", + "value": 16812224 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scaffold" + }, + "STRREF": { + "type": "dword", + "value": 16812682 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ladder" + }, + "STRREF": { + "type": "dword", + "value": 16813398 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810746 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 144 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_jckolntrn001" + }, + "STRREF": { + "type": "dword", + "value": 16811018 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_grdenbush001" + }, + "STRREF": { + "type": "dword", + "value": 16811292 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_grdenbush002" + }, + "STRREF": { + "type": "dword", + "value": 16811294 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_grdenbush003" + }, + "STRREF": { + "type": "dword", + "value": 16811296 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_troughfood" + }, + "STRREF": { + "type": "dword", + "value": 16814068 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_flrdesgns002" + }, + "STRREF": { + "type": "dword", + "value": 16811926 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_hitchrail" + }, + "STRREF": { + "type": "dword", + "value": 16814086 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_horsebr" + }, + "STRREF": { + "type": "dword", + "value": 16814090 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_horsesh" + }, + "STRREF": { + "type": "dword", + "value": 16814092 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_horseshs" + }, + "STRREF": { + "type": "dword", + "value": 16814094 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_jckolntrn002" + }, + "STRREF": { + "type": "dword", + "value": 16812210 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pileofpmpkns" + }, + "STRREF": { + "type": "dword", + "value": 16812454 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pumpkinpatch" + }, + "STRREF": { + "type": "dword", + "value": 16812562 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_jckolntrn003" + }, + "STRREF": { + "type": "dword", + "value": 16812674 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_scarecrow001" + }, + "STRREF": { + "type": "dword", + "value": 16812686 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_jckolntrn004" + }, + "STRREF": { + "type": "dword", + "value": 16812786 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_pumpwater" + }, + "STRREF": { + "type": "dword", + "value": 16813474 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_troughobl" + }, + "STRREF": { + "type": "dword", + "value": 16814188 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_troughrnd" + }, + "STRREF": { + "type": "dword", + "value": 16814190 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_well001" + }, + "STRREF": { + "type": "dword", + "value": 16813514 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wheelbarrel" + }, + "STRREF": { + "type": "dword", + "value": 16813516 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810744 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 146 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_orcaxe" + }, + "STRREF": { + "type": "dword", + "value": 16813558 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_wdchppingblc" + }, + "STRREF": { + "type": "dword", + "value": 16813560 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_woodpile01" + }, + "STRREF": { + "type": "dword", + "value": 16813566 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810747 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 152 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_piano002" + }, + "STRREF": { + "type": "dword", + "value": 16811148 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_piano" + }, + "STRREF": { + "type": "dword", + "value": 16811574 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drum001" + }, + "STRREF": { + "type": "dword", + "value": 16811700 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_harp" + }, + "STRREF": { + "type": "dword", + "value": 16812028 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_harp001" + }, + "STRREF": { + "type": "dword", + "value": 16812030 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drumlarge" + }, + "STRREF": { + "type": "dword", + "value": 16812216 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_piano001" + }, + "STRREF": { + "type": "dword", + "value": 16812232 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_drummedium" + }, + "STRREF": { + "type": "dword", + "value": 16812320 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_musicstnd001" + }, + "STRREF": { + "type": "dword", + "value": 16812358 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_piano003" + }, + "STRREF": { + "type": "dword", + "value": 16812440 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_harp002" + }, + "STRREF": { + "type": "dword", + "value": 16812854 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810749 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 13 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_broom" + }, + "STRREF": { + "type": "dword", + "value": 16811284 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bucket001" + }, + "STRREF": { + "type": "dword", + "value": 16811286 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bucket" + }, + "STRREF": { + "type": "dword", + "value": 16811288 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_ropebndle001" + }, + "STRREF": { + "type": "dword", + "value": 16812670 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vendora" + }, + "STRREF": { + "type": "dword", + "value": 16814174 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_vendorb" + }, + "STRREF": { + "type": "dword", + "value": 16814174 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810750 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6788 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 16 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 17 + }, + "STRREF": { + "type": "dword", + "value": 62485 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 19 + }, + "STRREF": { + "type": "dword", + "value": 5836 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 21 + }, + "STRREF": { + "type": "dword", + "value": 67585 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 20 + }, + "STRREF": { + "type": "dword", + "value": 53151 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 18 + }, + "STRREF": { + "type": "dword", + "value": 67132 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 66490 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 149 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_magicmth004" + }, + "STRREF": { + "type": "dword", + "value": 16812264 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_magicmouth01" + }, + "STRREF": { + "type": "dword", + "value": 16812266 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_magicmth005" + }, + "STRREF": { + "type": "dword", + "value": 16812268 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_magicmth006" + }, + "STRREF": { + "type": "dword", + "value": 16812270 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_magicmth002" + }, + "STRREF": { + "type": "dword", + "value": 16812272 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_magicmth007" + }, + "STRREF": { + "type": "dword", + "value": 16812274 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_magicmth008" + }, + "STRREF": { + "type": "dword", + "value": 16812276 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_magicmth003" + }, + "STRREF": { + "type": "dword", + "value": 16812278 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_magicmth009" + }, + "STRREF": { + "type": "dword", + "value": 16812280 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810751 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 5 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lightshft001" + }, + "STRREF": { + "type": "dword", + "value": 16811176 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lightshft002" + }, + "STRREF": { + "type": "dword", + "value": 16811566 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "fire1" + }, + "RESREF": { + "type": "resref", + "value": "fire1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "fire2" + }, + "RESREF": { + "type": "resref", + "value": "fire2" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "sf_fire" + }, + "STRREF": { + "type": "dword", + "value": 16811798 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bflame001" + }, + "STRREF": { + "type": "dword", + "value": 16811798 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bflame002" + }, + "STRREF": { + "type": "dword", + "value": 16811800 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_bflame003" + }, + "STRREF": { + "type": "dword", + "value": 16811802 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lightshft003" + }, + "STRREF": { + "type": "dword", + "value": 16811964 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lightshft004" + }, + "STRREF": { + "type": "dword", + "value": 16812394 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Portal" + }, + "RESREF": { + "type": "resref", + "value": "fw_portal002" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Portal" + }, + "RESREF": { + "type": "resref", + "value": "fw_portal1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Portal" + }, + "RESREF": { + "type": "resref", + "value": "fw_portal3" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Portal" + }, + "RESREF": { + "type": "resref", + "value": "limbo_portal" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "portal_light" + }, + "RESREF": { + "type": "resref", + "value": "fw_light" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lightshft005" + }, + "STRREF": { + "type": "dword", + "value": 16812568 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lightshft006" + }, + "STRREF": { + "type": "dword", + "value": 16812604 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lightshft007" + }, + "STRREF": { + "type": "dword", + "value": 16813526 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "zep_lightshft008" + }, + "STRREF": { + "type": "dword", + "value": 16813574 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 16810752 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6781 + } + } + ] + } +} diff --git a/_module/itp/soundpalcus.itp.json b/_module/itp/soundpalcus.itp.json new file mode 100644 index 0000000..3f0c2eb --- /dev/null +++ b/_module/itp/soundpalcus.itp.json @@ -0,0 +1,380 @@ +{ + "__data_type": "ITP ", + "MAIN": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 6 + }, + "STRREF": { + "type": "dword", + "value": 6694 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 13 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "smallgloop" + }, + "RESREF": { + "type": "resref", + "value": "sewergloops001" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 63289 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 12 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "mcgood" + }, + "STRREF": { + "type": "dword", + "value": 67895 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "magiccrystals001" + }, + "STRREF": { + "type": "dword", + "value": 67899 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 62487 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 7 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "fire" + }, + "STRREF": { + "type": "dword", + "value": 67858 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "fire001" + }, + "STRREF": { + "type": "dword", + "value": 67858 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "fire002" + }, + "STRREF": { + "type": "dword", + "value": 67858 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "fire003" + }, + "STRREF": { + "type": "dword", + "value": 67858 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "fire004" + }, + "STRREF": { + "type": "dword", + "value": 67858 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "fire005" + }, + "STRREF": { + "type": "dword", + "value": 67858 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "fire006" + }, + "STRREF": { + "type": "dword", + "value": 67858 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "fire007" + }, + "STRREF": { + "type": "dword", + "value": 67858 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Firesound1" + }, + "RESREF": { + "type": "resref", + "value": "firesound1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Firesound2" + }, + "RESREF": { + "type": "resref", + "value": "firesound2" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "waterfalllarg001" + }, + "STRREF": { + "type": "dword", + "value": 68014 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 62483 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 5 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "bongo003" + }, + "STRREF": { + "type": "dword", + "value": 91299 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Drum" + }, + "RESREF": { + "type": "resref", + "value": "drums1" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 62482 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 0 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "bell" + }, + "RESREF": { + "type": "resref", + "value": "bell" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "tick_tock" + }, + "RESREF": { + "type": "resref", + "value": "tick_tock" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6688 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 1 + }, + "STRREF": { + "type": "dword", + "value": 6689 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 2 + }, + "STRREF": { + "type": "dword", + "value": 6690 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 3 + }, + "STRREF": { + "type": "dword", + "value": 6691 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 4 + }, + "STRREF": { + "type": "dword", + "value": 6692 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6687 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 8 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "smallwind" + }, + "RESREF": { + "type": "resref", + "value": "windgustsoft001" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 62484 + } + } + ] + } +} diff --git a/_module/itp/storepalcus.itp.json b/_module/itp/storepalcus.itp.json new file mode 100644 index 0000000..cb50be7 --- /dev/null +++ b/_module/itp/storepalcus.itp.json @@ -0,0 +1,1229 @@ +{ + "__data_type": "ITP ", + "MAIN": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 5 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Apparel" + }, + "RESREF": { + "type": "resref", + "value": "apparel" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Arcane Level 0" + }, + "RESREF": { + "type": "resref", + "value": "arcanelevel0" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Arcane Level 1" + }, + "RESREF": { + "type": "resref", + "value": "arcanelevel1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Arcane Level 2" + }, + "RESREF": { + "type": "resref", + "value": "arcanelevel2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Arcane Level 3" + }, + "RESREF": { + "type": "resref", + "value": "arcanelevel3" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Arcane Level 4" + }, + "RESREF": { + "type": "resref", + "value": "arcanelevel4" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Arcane Level 5" + }, + "RESREF": { + "type": "resref", + "value": "arcanelevel5" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Arcane Level 6" + }, + "RESREF": { + "type": "resref", + "value": "arcanelevel6" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Arcane Level 7" + }, + "RESREF": { + "type": "resref", + "value": "arcanelevel7" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Arcane Level 8" + }, + "RESREF": { + "type": "resref", + "value": "arcanelevel8" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Arcane Level 9" + }, + "RESREF": { + "type": "resref", + "value": "arcanelevel9" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "storeweap002" + }, + "STRREF": { + "type": "dword", + "value": 95266 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "asabimerchant" + }, + "STRREF": { + "type": "dword", + "value": 79985 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bard Level 0" + }, + "RESREF": { + "type": "resref", + "value": "bardlevel0" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bard Level 1" + }, + "RESREF": { + "type": "resref", + "value": "bardlevel1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bard Level 2" + }, + "RESREF": { + "type": "resref", + "value": "bardlevel2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bard Level 3" + }, + "RESREF": { + "type": "resref", + "value": "bardlevel3" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bard Level 4" + }, + "RESREF": { + "type": "resref", + "value": "bardlevel4" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bard Level 5" + }, + "RESREF": { + "type": "resref", + "value": "bardlevel5" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Bard Level 6" + }, + "RESREF": { + "type": "resref", + "value": "bardlevel6" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1_storethief" + }, + "STRREF": { + "type": "dword", + "value": 14810 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "blank" + }, + "RESREF": { + "type": "resref", + "value": "blank" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Books" + }, + "RESREF": { + "type": "resref", + "value": "books" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "CampApparel" + }, + "RESREF": { + "type": "resref", + "value": "campapparel" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "CampArmor" + }, + "RESREF": { + "type": "resref", + "value": "camparmor" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "CampGenMelee" + }, + "RESREF": { + "type": "resref", + "value": "campgenmelee" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "CampRanged" + }, + "RESREF": { + "type": "resref", + "value": "campranged" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "CEP" + }, + "RESREF": { + "type": "resref", + "value": "cep" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "clothdye" + }, + "RESREF": { + "type": "resref", + "value": "clothdye" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "craftstore" + }, + "STRREF": { + "type": "dword", + "value": 95263 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "CraftMaterials" + }, + "RESREF": { + "type": "resref", + "value": "craftmaterials" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "int_storemage01" + }, + "STRREF": { + "type": "dword", + "value": 83153 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Level 0" + }, + "RESREF": { + "type": "resref", + "value": "divinelevel0" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Level 1" + }, + "RESREF": { + "type": "resref", + "value": "divinelevel1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Level 2" + }, + "RESREF": { + "type": "resref", + "value": "divinelevel2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Level 3" + }, + "RESREF": { + "type": "resref", + "value": "divinelevel3" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Level 4" + }, + "RESREF": { + "type": "resref", + "value": "divinelevel4" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Level 5" + }, + "RESREF": { + "type": "resref", + "value": "divinelevel5" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Level 6" + }, + "RESREF": { + "type": "resref", + "value": "divinelevel6" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Level 7" + }, + "RESREF": { + "type": "resref", + "value": "divinelevel7" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Level 8" + }, + "RESREF": { + "type": "resref", + "value": "divinelevel8" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Divine Level 9" + }, + "RESREF": { + "type": "resref", + "value": "divinelevel9" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Druid Level 0" + }, + "RESREF": { + "type": "resref", + "value": "druidlevel0" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Druid Level 1" + }, + "RESREF": { + "type": "resref", + "value": "druidlevel1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Druid Level 2" + }, + "RESREF": { + "type": "resref", + "value": "druidlevel2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Druid Level 3" + }, + "RESREF": { + "type": "resref", + "value": "druidlevel3" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Druid Level 4" + }, + "RESREF": { + "type": "resref", + "value": "druidlevel4" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Druid Level 5" + }, + "RESREF": { + "type": "resref", + "value": "druidlevel5" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Druid Level 6" + }, + "RESREF": { + "type": "resref", + "value": "druidlevel6" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Druid Level 7" + }, + "RESREF": { + "type": "resref", + "value": "druidlevel7" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Druid Level 8" + }, + "RESREF": { + "type": "resref", + "value": "druidlevel8" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Druid Level 9" + }, + "RESREF": { + "type": "resref", + "value": "druidlevel9" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Enserric" + }, + "RESREF": { + "type": "resref", + "value": "enserric" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "exomeleestd" + }, + "RESREF": { + "type": "resref", + "value": "exomeleestd" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "FENCE" + }, + "RESREF": { + "type": "resref", + "value": "fence" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Gems" + }, + "RESREF": { + "type": "resref", + "value": "gems" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1_storgenral" + }, + "STRREF": { + "type": "dword", + "value": 14813 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "genmelee" + }, + "RESREF": { + "type": "resref", + "value": "genmelee" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "genmeleestand" + }, + "RESREF": { + "type": "resref", + "value": "genmeleestand" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Gruul the Quarry Boss" + }, + "RESREF": { + "type": "resref", + "value": "x2_c3_gruel" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Jewelry" + }, + "RESREF": { + "type": "resref", + "value": "jewelry" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "int_storgenral01" + }, + "STRREF": { + "type": "dword", + "value": 83156 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Kit" + }, + "RESREF": { + "type": "resref", + "value": "kit" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "leatherdye" + }, + "RESREF": { + "type": "resref", + "value": "leatherdye" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "MagicItems" + }, + "RESREF": { + "type": "resref", + "value": "magicitems" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "metaldye" + }, + "RESREF": { + "type": "resref", + "value": "metaldye" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "int_storetempl01" + }, + "STRREF": { + "type": "dword", + "value": 83154 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1_storenature" + }, + "STRREF": { + "type": "dword", + "value": 14808 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Paladin Level 1" + }, + "RESREF": { + "type": "resref", + "value": "paladinlevel1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Paladin Level 2" + }, + "RESREF": { + "type": "resref", + "value": "paladinlevel2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Paladin Level 3" + }, + "RESREF": { + "type": "resref", + "value": "paladinlevel3" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Paladin Level 4" + }, + "RESREF": { + "type": "resref", + "value": "paladinlevel4" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "PlotItems" + }, + "RESREF": { + "type": "resref", + "value": "plotitems" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Potions" + }, + "RESREF": { + "type": "resref", + "value": "potions" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "rangedstd" + }, + "RESREF": { + "type": "resref", + "value": "rangedstd" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Ranger Level 1" + }, + "RESREF": { + "type": "resref", + "value": "rangerlevel1" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Ranger Level 2" + }, + "RESREF": { + "type": "resref", + "value": "rangerlevel2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Ranger Level 3" + }, + "RESREF": { + "type": "resref", + "value": "rangerlevel3" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Ranger Level 4" + }, + "RESREF": { + "type": "resref", + "value": "rangerlevel4" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "shadowmerchant" + }, + "STRREF": { + "type": "dword", + "value": 79986 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "storeweap004" + }, + "STRREF": { + "type": "dword", + "value": 109974 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "storemage002" + }, + "STRREF": { + "type": "dword", + "value": 95264 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Staves" + }, + "RESREF": { + "type": "resref", + "value": "staves" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "StdArmor" + }, + "RESREF": { + "type": "resref", + "value": "stdarmor" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "StdHelmShld" + }, + "RESREF": { + "type": "resref", + "value": "stdhelmshld" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "tavernstore" + }, + "STRREF": { + "type": "dword", + "value": 100426 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1_storetemple" + }, + "STRREF": { + "type": "dword", + "value": 14811 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Thay Mart" + }, + "RESREF": { + "type": "resref", + "value": "m1_storemage" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "int_storethief01" + }, + "STRREF": { + "type": "dword", + "value": 83155 + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Tutorial" + }, + "RESREF": { + "type": "resref", + "value": "tutorial" + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "m1_storeweapon" + }, + "STRREF": { + "type": "dword", + "value": 14812 + } + }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "storetempl002" + }, + "STRREF": { + "type": "dword", + "value": 95265 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6789 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 0 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "arena_merch" + }, + "RESREF": { + "type": "resref", + "value": "arena_merch" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "arena_merch2" + }, + "RESREF": { + "type": "resref", + "value": "arena_merch2" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "crashstore" + }, + "RESREF": { + "type": "resref", + "value": "crashstore" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "divine_ammo" + }, + "RESREF": { + "type": "resref", + "value": "divine_ammo" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "divine_ammo2" + }, + "RESREF": { + "type": "resref", + "value": "divine_ammo001" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "dyeman" + }, + "RESREF": { + "type": "resref", + "value": "dyeman" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "identifyer" + }, + "RESREF": { + "type": "resref", + "value": "identifyer" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "life_insurance" + }, + "RESREF": { + "type": "resref", + "value": "life_insurance" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "nordock med weap" + }, + "RESREF": { + "type": "resref", + "value": "nordock_med_w" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "Nordock_bb" + }, + "RESREF": { + "type": "resref", + "value": "belts_boots" + } + }, + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "shop" + }, + "RESREF": { + "type": "resref", + "value": "shop" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6688 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 1 + }, + "STRREF": { + "type": "dword", + "value": 6689 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 2 + }, + "STRREF": { + "type": "dword", + "value": 6690 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 3 + }, + "STRREF": { + "type": "dword", + "value": 6691 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 4 + }, + "STRREF": { + "type": "dword", + "value": 6692 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6687 + } + } + ] + } +} diff --git a/_module/itp/triggerpalcus.itp.json b/_module/itp/triggerpalcus.itp.json new file mode 100644 index 0000000..c9b4995 --- /dev/null +++ b/_module/itp/triggerpalcus.itp.json @@ -0,0 +1,191 @@ +{ + "__data_type": "ITP ", + "MAIN": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 5 + }, + "STRREF": { + "type": "dword", + "value": 1082 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 6 + }, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "NAME": { + "type": "cexostring", + "value": "pvp" + }, + "RESREF": { + "type": "resref", + "value": "newgeneric001" + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6790 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 16 + }, + "STRREF": { + "type": "dword", + "value": 9129 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 0 + }, + "STRREF": { + "type": "dword", + "value": 6688 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 1 + }, + "STRREF": { + "type": "dword", + "value": 6689 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 2 + }, + "STRREF": { + "type": "dword", + "value": 6690 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 3 + }, + "STRREF": { + "type": "dword", + "value": 6691 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 4 + }, + "STRREF": { + "type": "dword", + "value": 6692 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6687 + } + }, + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 11 + }, + "STRREF": { + "type": "dword", + "value": 53181 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 12 + }, + "STRREF": { + "type": "dword", + "value": 2255 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 13 + }, + "STRREF": { + "type": "dword", + "value": 2256 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 14 + }, + "STRREF": { + "type": "dword", + "value": 2257 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 15 + }, + "STRREF": { + "type": "dword", + "value": 53182 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 5563 + } + } + ] + } +} diff --git a/_module/itp/waypointpalcus.itp.json b/_module/itp/waypointpalcus.itp.json new file mode 100644 index 0000000..d2f3c44 --- /dev/null +++ b/_module/itp/waypointpalcus.itp.json @@ -0,0 +1,86 @@ +{ + "__data_type": "ITP ", + "MAIN": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "LIST": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 0 + }, + "STRREF": { + "type": "dword", + "value": 6688 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 1 + }, + "STRREF": { + "type": "dword", + "value": 6689 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 2 + }, + "STRREF": { + "type": "dword", + "value": 6690 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 3 + }, + "STRREF": { + "type": "dword", + "value": 6691 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 4 + }, + "STRREF": { + "type": "dword", + "value": 6692 + } + } + ] + }, + "STRREF": { + "type": "dword", + "value": 6687 + } + }, + { + "__struct_id": 0, + "ID": { + "type": "byte", + "value": 5 + }, + "STRREF": { + "type": "dword", + "value": 6798 + } + } + ] + } +} diff --git a/_module/jrl/module.jrl.json b/_module/jrl/module.jrl.json new file mode 100644 index 0000000..f19af50 --- /dev/null +++ b/_module/jrl/module.jrl.json @@ -0,0 +1,1181 @@ +{ + "__data_type": "JRL ", + "Categories": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 0 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "3e D&D Experience Chart\n\nLvl XP Needed\n01 0\n02 1000\n03 3000\n04 6000\n05 10000\n06 15000\n07 21000\n08 28000\n09 36000\n10 45000\n11 55000\n12 66000\n13 78000\n14 91000\n15 105000\n16 120000\n17 136000\n18 153000\n19 171000\n20 190000\n21 210000\n22 231000\n23 253000\n24 276000\n25 300000\n26 325000\n27 351000\n28 378000\n29 406000\n30 435000\n31 465000\n32 496000\n33 528000\n34 561000\n35 595000\n36 630000\n37 666000\n38 703000\n39 741000\n40 780000" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "| D&D 3e XP Chart |" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 4 + }, + "Tag": { + "type": "cexostring", + "value": "JRNL_XPCHART" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 1, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 0 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Level Adjustment Buy-off Table\n\nStarting LA / Level\n \n01 / 03\n02 / 06 09\n03 / 09 15 18\n04 / 12 21 27 30\n05 / 15 27 36\n06 / 18 33\n07 / 21 39\n08 / 24\n09 / 27\n10 / 30\n11 / 33\n12 / 36\n13 / 39\n\n(Buy-off dialog will be in the PRC menu when you qualify.)" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "| LA Buy-off Table |" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 4 + }, + "Tag": { + "type": "cexostring", + "value": "JRNL_LA_BUYOFF" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 2, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 0 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Visit the PRC8 Discord for ruleset information, as well as other PW servers & dozens of single player PRC8 modules.\n\nhttps://discord.gg/FW9V9RKy5U" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "| PRC8 Discord |" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 4 + }, + "Tag": { + "type": "cexostring", + "value": "JRNL_PRC8" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 3, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You were defeated in the Arena Challenge this time. But you vow to one day return a mighty hero and prove your valour to all." + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Defeated!" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 4 + }, + "Tag": { + "type": "cexostring", + "value": "death" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 4, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Evil has prevailed over good. Hellwon the last holy war." + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Holy War Victors" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "war_hell" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 5, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Good has triumphed over evil. Heaven won the last holy war." + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Holy War Victors" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "war_heav" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 6, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Congratulations! You have defeated the mighty Lord Lucifer. Never before has a mortal proven to be so powerful. Surely this will shake heaven and earth as your victory resonates throughout the cosmos! " + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Lucifer" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 4 + }, + "Tag": { + "type": "cexostring", + "value": "lucifer" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 7, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have completed the adept level challenge. Well done. The next challenge awaits!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena Challenge: Adept Level" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "boss1_0" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 8, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have completed the apprentice level challenge. Well done. The next challenge awaits!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena Challenge: Apprentice Level" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "boss1" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 9, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have completed the dark master level challenge. Well done. The next challenge awaits!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena Challenge: Dark Master Level" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 2 + }, + "Tag": { + "type": "cexostring", + "value": "boss4_0" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 10, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have done what no mortal has ever done. Congratulations! The bards will be singing about your valour for many years!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena Challenge: Demon Prince Level" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 4 + }, + "Tag": { + "type": "cexostring", + "value": "boss6_0" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 11, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have completed the doom lord level challenge. Well done. The next challenge awaits!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena Challenge: Doom Lord Level" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "boss3_0" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 12, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have done what no mortal has ever done. Congratulations! The bards will be singing about your valour for many years!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena Challenge: God Level" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 4 + }, + "Tag": { + "type": "cexostring", + "value": "boss6" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 13, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have completed the grand master level challenge. Well done. The next challenge awaits!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena Challenge: Grand Master Level" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 2 + }, + "Tag": { + "type": "cexostring", + "value": "boss4" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 14, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have completed the warrior level challenge. Well done. The next challenge awaits!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena Challenge: Hero Level" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 3 + }, + "Tag": { + "type": "cexostring", + "value": "boss5" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 15, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have completed the slayer level challenge. Well done. The next challenge awaits!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena Challenge: Slayer Level" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "boss2_0" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 16, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have completed the soul reaver level challenge. Well done. The next challenge awaits!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena Challenge: Soul Reaver Level" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 3 + }, + "Tag": { + "type": "cexostring", + "value": "boss5_0" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 17, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have completed the warrior level challenge. Well done. The next challenge awaits!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena Challenge: Warrior Level" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "boss2" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 18, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have completed the warrior lord level challenge. Well done. The next challenge awaits!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena Challenge: Warrior Lord Level" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 1 + }, + "Tag": { + "type": "cexostring", + "value": "boss3" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 19, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Welcome to the Arena of Champions. The challenges await you. Can you defeat the formidible opponents within. Only the best builds will survive. Good luck!\n\n \n" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Arena of Champions" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 0 + }, + "Tag": { + "type": "cexostring", + "value": "enter" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 20, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have prevailed in battle over the mighty Starfall. You are a mighty warrior. Congratulations!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Great Duel" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 4 + }, + "Tag": { + "type": "cexostring", + "value": "starfall" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 21, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "You have prevailed in battle over the mighty Mephisto. You are a mighty warrior. Congratulations!" + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "The Great Duel" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 4 + }, + "Tag": { + "type": "cexostring", + "value": "mephisto" + }, + "XP": { + "type": "dword", + "value": 0 + } + }, + { + "__struct_id": 22, + "Comment": { + "type": "cexostring", + "value": "" + }, + "EntryList": { + "type": "list", + "value": [ + { + "__struct_id": 0, + "End": { + "type": "word", + "value": 1 + }, + "ID": { + "type": "dword", + "value": 1 + }, + "Text": { + "type": "cexolocstring", + "value": { + "0": "Congratulations! You have defeated the mighty Arch Angel Tyriel. Never before has a mortal proven to be so powerful. Surely this will shake heaven and earth as your victory resonates throughout the cosmos! " + } + } + } + ] + }, + "Name": { + "type": "cexolocstring", + "value": { + "0": "Tyriel" + } + }, + "Picture": { + "type": "word", + "value": 65535 + }, + "Priority": { + "type": "dword", + "value": 4 + }, + "Tag": { + "type": "cexostring", + "value": "tyriel" + }, + "XP": { + "type": "dword", + "value": 0 + } + } + ] + } +} diff --git a/_module/ncs/10000g.ncs b/_module/ncs/10000g.ncs new file mode 100644 index 0000000..57fcc1c Binary files /dev/null and b/_module/ncs/10000g.ncs differ diff --git a/_module/ncs/1mil.ncs b/_module/ncs/1mil.ncs new file mode 100644 index 0000000..7999d55 Binary files /dev/null and b/_module/ncs/1mil.ncs differ diff --git a/_module/ncs/200000g.ncs b/_module/ncs/200000g.ncs new file mode 100644 index 0000000..3e27744 Binary files /dev/null and b/_module/ncs/200000g.ncs differ diff --git a/_module/ncs/2000g.ncs b/_module/ncs/2000g.ncs new file mode 100644 index 0000000..f4d191b Binary files /dev/null and b/_module/ncs/2000g.ncs differ diff --git a/_module/ncs/2weapfig_imbue.ncs b/_module/ncs/2weapfig_imbue.ncs new file mode 100644 index 0000000..a2a1a32 Binary files /dev/null and b/_module/ncs/2weapfig_imbue.ncs differ diff --git a/_module/ncs/4mil.ncs b/_module/ncs/4mil.ncs new file mode 100644 index 0000000..4defedf Binary files /dev/null and b/_module/ncs/4mil.ncs differ diff --git a/_module/ncs/50000g.ncs b/_module/ncs/50000g.ncs new file mode 100644 index 0000000..317e1f4 Binary files /dev/null and b/_module/ncs/50000g.ncs differ diff --git a/_module/ncs/500g.ncs b/_module/ncs/500g.ncs new file mode 100644 index 0000000..e83d71a Binary files /dev/null and b/_module/ncs/500g.ncs differ diff --git a/_module/ncs/a_celmerch.ncs b/_module/ncs/a_celmerch.ncs new file mode 100644 index 0000000..e055b75 Binary files /dev/null and b/_module/ncs/a_celmerch.ncs differ diff --git a/_module/ncs/abort_bet.ncs b/_module/ncs/abort_bet.ncs new file mode 100644 index 0000000..2fa7af2 Binary files /dev/null and b/_module/ncs/abort_bet.ncs differ diff --git a/_module/ncs/ac_imbue25.ncs b/_module/ncs/ac_imbue25.ncs new file mode 100644 index 0000000..d8e7170 Binary files /dev/null and b/_module/ncs/ac_imbue25.ncs differ diff --git a/_module/ncs/ac_imbue252.ncs b/_module/ncs/ac_imbue252.ncs new file mode 100644 index 0000000..c538ec6 Binary files /dev/null and b/_module/ncs/ac_imbue252.ncs differ diff --git a/_module/ncs/acc_imbue25.ncs b/_module/ncs/acc_imbue25.ncs new file mode 100644 index 0000000..6784d0f Binary files /dev/null and b/_module/ncs/acc_imbue25.ncs differ diff --git a/_module/ncs/accdone_1.ncs b/_module/ncs/accdone_1.ncs new file mode 100644 index 0000000..eb34c22 Binary files /dev/null and b/_module/ncs/accdone_1.ncs differ diff --git a/_module/ncs/accdred_imbue_2.ncs b/_module/ncs/accdred_imbue_2.ncs new file mode 100644 index 0000000..715b7cc Binary files /dev/null and b/_module/ncs/accdred_imbue_2.ncs differ diff --git a/_module/ncs/accdred_imbue_3.ncs b/_module/ncs/accdred_imbue_3.ncs new file mode 100644 index 0000000..574680a Binary files /dev/null and b/_module/ncs/accdred_imbue_3.ncs differ diff --git a/_module/ncs/accdred_imbue_4.ncs b/_module/ncs/accdred_imbue_4.ncs new file mode 100644 index 0000000..d79e99c Binary files /dev/null and b/_module/ncs/accdred_imbue_4.ncs differ diff --git a/_module/ncs/accdred_imbue_5.ncs b/_module/ncs/accdred_imbue_5.ncs new file mode 100644 index 0000000..26475b6 Binary files /dev/null and b/_module/ncs/accdred_imbue_5.ncs differ diff --git a/_module/ncs/acced_1.ncs b/_module/ncs/acced_1.ncs new file mode 100644 index 0000000..63a6b0a Binary files /dev/null and b/_module/ncs/acced_1.ncs differ diff --git a/_module/ncs/accmax_reached.ncs b/_module/ncs/accmax_reached.ncs new file mode 100644 index 0000000..d689061 Binary files /dev/null and b/_module/ncs/accmax_reached.ncs differ diff --git a/_module/ncs/accmax_reached2.ncs b/_module/ncs/accmax_reached2.ncs new file mode 100644 index 0000000..184d7f9 Binary files /dev/null and b/_module/ncs/accmax_reached2.ncs differ diff --git a/_module/ncs/accred1_1.ncs b/_module/ncs/accred1_1.ncs new file mode 100644 index 0000000..00634c3 Binary files /dev/null and b/_module/ncs/accred1_1.ncs differ diff --git a/_module/ncs/accred_0.ncs b/_module/ncs/accred_0.ncs new file mode 100644 index 0000000..40f906d Binary files /dev/null and b/_module/ncs/accred_0.ncs differ diff --git a/_module/ncs/accred_10.ncs b/_module/ncs/accred_10.ncs new file mode 100644 index 0000000..7b10ef4 Binary files /dev/null and b/_module/ncs/accred_10.ncs differ diff --git a/_module/ncs/accred_11.ncs b/_module/ncs/accred_11.ncs new file mode 100644 index 0000000..fb76043 Binary files /dev/null and b/_module/ncs/accred_11.ncs differ diff --git a/_module/ncs/accred_12.ncs b/_module/ncs/accred_12.ncs new file mode 100644 index 0000000..5694698 Binary files /dev/null and b/_module/ncs/accred_12.ncs differ diff --git a/_module/ncs/accred_2.ncs b/_module/ncs/accred_2.ncs new file mode 100644 index 0000000..6043251 Binary files /dev/null and b/_module/ncs/accred_2.ncs differ diff --git a/_module/ncs/accred_3.ncs b/_module/ncs/accred_3.ncs new file mode 100644 index 0000000..573c3e9 Binary files /dev/null and b/_module/ncs/accred_3.ncs differ diff --git a/_module/ncs/accred_4.ncs b/_module/ncs/accred_4.ncs new file mode 100644 index 0000000..86391aa Binary files /dev/null and b/_module/ncs/accred_4.ncs differ diff --git a/_module/ncs/accred_6.ncs b/_module/ncs/accred_6.ncs new file mode 100644 index 0000000..7e84cb8 Binary files /dev/null and b/_module/ncs/accred_6.ncs differ diff --git a/_module/ncs/accred_7.ncs b/_module/ncs/accred_7.ncs new file mode 100644 index 0000000..352eb6d Binary files /dev/null and b/_module/ncs/accred_7.ncs differ diff --git a/_module/ncs/accred_8.ncs b/_module/ncs/accred_8.ncs new file mode 100644 index 0000000..16759b7 Binary files /dev/null and b/_module/ncs/accred_8.ncs differ diff --git a/_module/ncs/accred_9.ncs b/_module/ncs/accred_9.ncs new file mode 100644 index 0000000..21529fe Binary files /dev/null and b/_module/ncs/accred_9.ncs differ diff --git a/_module/ncs/acdone_1.ncs b/_module/ncs/acdone_1.ncs new file mode 100644 index 0000000..585d5b5 Binary files /dev/null and b/_module/ncs/acdone_1.ncs differ diff --git a/_module/ncs/acdone_12.ncs b/_module/ncs/acdone_12.ncs new file mode 100644 index 0000000..e68a27b Binary files /dev/null and b/_module/ncs/acdone_12.ncs differ diff --git a/_module/ncs/acdred_imbue_2.ncs b/_module/ncs/acdred_imbue_2.ncs new file mode 100644 index 0000000..fcb3b3f Binary files /dev/null and b/_module/ncs/acdred_imbue_2.ncs differ diff --git a/_module/ncs/acdred_imbue_22.ncs b/_module/ncs/acdred_imbue_22.ncs new file mode 100644 index 0000000..ea77125 Binary files /dev/null and b/_module/ncs/acdred_imbue_22.ncs differ diff --git a/_module/ncs/acdred_imbue_3.ncs b/_module/ncs/acdred_imbue_3.ncs new file mode 100644 index 0000000..313db9b Binary files /dev/null and b/_module/ncs/acdred_imbue_3.ncs differ diff --git a/_module/ncs/acdred_imbue_32.ncs b/_module/ncs/acdred_imbue_32.ncs new file mode 100644 index 0000000..46850a7 Binary files /dev/null and b/_module/ncs/acdred_imbue_32.ncs differ diff --git a/_module/ncs/acdred_imbue_4.ncs b/_module/ncs/acdred_imbue_4.ncs new file mode 100644 index 0000000..5c8fe20 Binary files /dev/null and b/_module/ncs/acdred_imbue_4.ncs differ diff --git a/_module/ncs/acdred_imbue_5.ncs b/_module/ncs/acdred_imbue_5.ncs new file mode 100644 index 0000000..1f5e80a Binary files /dev/null and b/_module/ncs/acdred_imbue_5.ncs differ diff --git a/_module/ncs/aced1_1.ncs b/_module/ncs/aced1_1.ncs new file mode 100644 index 0000000..bef72f8 Binary files /dev/null and b/_module/ncs/aced1_1.ncs differ diff --git a/_module/ncs/aced1_12.ncs b/_module/ncs/aced1_12.ncs new file mode 100644 index 0000000..60a396c Binary files /dev/null and b/_module/ncs/aced1_12.ncs differ diff --git a/_module/ncs/aced_1.ncs b/_module/ncs/aced_1.ncs new file mode 100644 index 0000000..bccecac Binary files /dev/null and b/_module/ncs/aced_1.ncs differ diff --git a/_module/ncs/aced_12.ncs b/_module/ncs/aced_12.ncs new file mode 100644 index 0000000..fb3e006 Binary files /dev/null and b/_module/ncs/aced_12.ncs differ diff --git a/_module/ncs/acid_imbue.ncs b/_module/ncs/acid_imbue.ncs new file mode 100644 index 0000000..80eb575 Binary files /dev/null and b/_module/ncs/acid_imbue.ncs differ diff --git a/_module/ncs/acid_imbue_arm.ncs b/_module/ncs/acid_imbue_arm.ncs new file mode 100644 index 0000000..a08042c Binary files /dev/null and b/_module/ncs/acid_imbue_arm.ncs differ diff --git a/_module/ncs/acmax_reached.ncs b/_module/ncs/acmax_reached.ncs new file mode 100644 index 0000000..89e746c Binary files /dev/null and b/_module/ncs/acmax_reached.ncs differ diff --git a/_module/ncs/acmax_reached1.ncs b/_module/ncs/acmax_reached1.ncs new file mode 100644 index 0000000..623bd87 Binary files /dev/null and b/_module/ncs/acmax_reached1.ncs differ diff --git a/_module/ncs/acmax_reached12.ncs b/_module/ncs/acmax_reached12.ncs new file mode 100644 index 0000000..d1a72a0 Binary files /dev/null and b/_module/ncs/acmax_reached12.ncs differ diff --git a/_module/ncs/acmax_reached2.ncs b/_module/ncs/acmax_reached2.ncs new file mode 100644 index 0000000..27f845a Binary files /dev/null and b/_module/ncs/acmax_reached2.ncs differ diff --git a/_module/ncs/acred_0.ncs b/_module/ncs/acred_0.ncs new file mode 100644 index 0000000..e079c81 Binary files /dev/null and b/_module/ncs/acred_0.ncs differ diff --git a/_module/ncs/acred_02.ncs b/_module/ncs/acred_02.ncs new file mode 100644 index 0000000..03e255f Binary files /dev/null and b/_module/ncs/acred_02.ncs differ diff --git a/_module/ncs/acred_10.ncs b/_module/ncs/acred_10.ncs new file mode 100644 index 0000000..815a9c0 Binary files /dev/null and b/_module/ncs/acred_10.ncs differ diff --git a/_module/ncs/acred_11.ncs b/_module/ncs/acred_11.ncs new file mode 100644 index 0000000..4cacea9 Binary files /dev/null and b/_module/ncs/acred_11.ncs differ diff --git a/_module/ncs/acred_12.ncs b/_module/ncs/acred_12.ncs new file mode 100644 index 0000000..7f5593d Binary files /dev/null and b/_module/ncs/acred_12.ncs differ diff --git a/_module/ncs/acred_2.ncs b/_module/ncs/acred_2.ncs new file mode 100644 index 0000000..846a79a Binary files /dev/null and b/_module/ncs/acred_2.ncs differ diff --git a/_module/ncs/acred_22.ncs b/_module/ncs/acred_22.ncs new file mode 100644 index 0000000..c2858ef Binary files /dev/null and b/_module/ncs/acred_22.ncs differ diff --git a/_module/ncs/acred_3.ncs b/_module/ncs/acred_3.ncs new file mode 100644 index 0000000..d0ffe13 Binary files /dev/null and b/_module/ncs/acred_3.ncs differ diff --git a/_module/ncs/acred_32.ncs b/_module/ncs/acred_32.ncs new file mode 100644 index 0000000..56a9593 Binary files /dev/null and b/_module/ncs/acred_32.ncs differ diff --git a/_module/ncs/acred_4.ncs b/_module/ncs/acred_4.ncs new file mode 100644 index 0000000..01fa15f Binary files /dev/null and b/_module/ncs/acred_4.ncs differ diff --git a/_module/ncs/acred_42.ncs b/_module/ncs/acred_42.ncs new file mode 100644 index 0000000..fdde714 Binary files /dev/null and b/_module/ncs/acred_42.ncs differ diff --git a/_module/ncs/acred_6.ncs b/_module/ncs/acred_6.ncs new file mode 100644 index 0000000..f9af539 Binary files /dev/null and b/_module/ncs/acred_6.ncs differ diff --git a/_module/ncs/acred_62.ncs b/_module/ncs/acred_62.ncs new file mode 100644 index 0000000..0c34d62 Binary files /dev/null and b/_module/ncs/acred_62.ncs differ diff --git a/_module/ncs/acred_7.ncs b/_module/ncs/acred_7.ncs new file mode 100644 index 0000000..f9acc35 Binary files /dev/null and b/_module/ncs/acred_7.ncs differ diff --git a/_module/ncs/acred_8.ncs b/_module/ncs/acred_8.ncs new file mode 100644 index 0000000..6e88d9b Binary files /dev/null and b/_module/ncs/acred_8.ncs differ diff --git a/_module/ncs/acred_9.ncs b/_module/ncs/acred_9.ncs new file mode 100644 index 0000000..9f2216c Binary files /dev/null and b/_module/ncs/acred_9.ncs differ diff --git a/_module/ncs/align_check.ncs b/_module/ncs/align_check.ncs new file mode 100644 index 0000000..54e197a Binary files /dev/null and b/_module/ncs/align_check.ncs differ diff --git a/_module/ncs/all_monst.ncs b/_module/ncs/all_monst.ncs new file mode 100644 index 0000000..440e523 Binary files /dev/null and b/_module/ncs/all_monst.ncs differ diff --git a/_module/ncs/altert_imbue.ncs b/_module/ncs/altert_imbue.ncs new file mode 100644 index 0000000..d48cff8 Binary files /dev/null and b/_module/ncs/altert_imbue.ncs differ diff --git a/_module/ncs/amby_imbue.ncs b/_module/ncs/amby_imbue.ncs new file mode 100644 index 0000000..2ddf186 Binary files /dev/null and b/_module/ncs/amby_imbue.ncs differ diff --git a/_module/ncs/amm_imbue25.ncs b/_module/ncs/amm_imbue25.ncs new file mode 100644 index 0000000..7fc5d23 Binary files /dev/null and b/_module/ncs/amm_imbue25.ncs differ diff --git a/_module/ncs/ammdone_1.ncs b/_module/ncs/ammdone_1.ncs new file mode 100644 index 0000000..52f782c Binary files /dev/null and b/_module/ncs/ammdone_1.ncs differ diff --git a/_module/ncs/ammdred_imbue_2.ncs b/_module/ncs/ammdred_imbue_2.ncs new file mode 100644 index 0000000..59cb25f Binary files /dev/null and b/_module/ncs/ammdred_imbue_2.ncs differ diff --git a/_module/ncs/ammdred_imbue_3.ncs b/_module/ncs/ammdred_imbue_3.ncs new file mode 100644 index 0000000..c68c736 Binary files /dev/null and b/_module/ncs/ammdred_imbue_3.ncs differ diff --git a/_module/ncs/ammdred_imbue_4.ncs b/_module/ncs/ammdred_imbue_4.ncs new file mode 100644 index 0000000..4da45e1 Binary files /dev/null and b/_module/ncs/ammdred_imbue_4.ncs differ diff --git a/_module/ncs/ammdred_imbue_5.ncs b/_module/ncs/ammdred_imbue_5.ncs new file mode 100644 index 0000000..2fa94e4 Binary files /dev/null and b/_module/ncs/ammdred_imbue_5.ncs differ diff --git a/_module/ncs/ammed_1.ncs b/_module/ncs/ammed_1.ncs new file mode 100644 index 0000000..e839d17 Binary files /dev/null and b/_module/ncs/ammed_1.ncs differ diff --git a/_module/ncs/ammed_11.ncs b/_module/ncs/ammed_11.ncs new file mode 100644 index 0000000..c9f1697 Binary files /dev/null and b/_module/ncs/ammed_11.ncs differ diff --git a/_module/ncs/ammed_7.ncs b/_module/ncs/ammed_7.ncs new file mode 100644 index 0000000..bf8938e Binary files /dev/null and b/_module/ncs/ammed_7.ncs differ diff --git a/_module/ncs/ammmax_reached.ncs b/_module/ncs/ammmax_reached.ncs new file mode 100644 index 0000000..162a3f7 Binary files /dev/null and b/_module/ncs/ammmax_reached.ncs differ diff --git a/_module/ncs/ammmax_reached2.ncs b/_module/ncs/ammmax_reached2.ncs new file mode 100644 index 0000000..44aaa09 Binary files /dev/null and b/_module/ncs/ammmax_reached2.ncs differ diff --git a/_module/ncs/ammred1_1.ncs b/_module/ncs/ammred1_1.ncs new file mode 100644 index 0000000..79560fb Binary files /dev/null and b/_module/ncs/ammred1_1.ncs differ diff --git a/_module/ncs/ammred_0.ncs b/_module/ncs/ammred_0.ncs new file mode 100644 index 0000000..e330f66 Binary files /dev/null and b/_module/ncs/ammred_0.ncs differ diff --git a/_module/ncs/ammred_10.ncs b/_module/ncs/ammred_10.ncs new file mode 100644 index 0000000..7c8f32d Binary files /dev/null and b/_module/ncs/ammred_10.ncs differ diff --git a/_module/ncs/ammred_12.ncs b/_module/ncs/ammred_12.ncs new file mode 100644 index 0000000..7d76242 Binary files /dev/null and b/_module/ncs/ammred_12.ncs differ diff --git a/_module/ncs/ammred_2.ncs b/_module/ncs/ammred_2.ncs new file mode 100644 index 0000000..f86b53d Binary files /dev/null and b/_module/ncs/ammred_2.ncs differ diff --git a/_module/ncs/ammred_3.ncs b/_module/ncs/ammred_3.ncs new file mode 100644 index 0000000..1461600 Binary files /dev/null and b/_module/ncs/ammred_3.ncs differ diff --git a/_module/ncs/ammred_4.ncs b/_module/ncs/ammred_4.ncs new file mode 100644 index 0000000..5b2d213 Binary files /dev/null and b/_module/ncs/ammred_4.ncs differ diff --git a/_module/ncs/ammred_6.ncs b/_module/ncs/ammred_6.ncs new file mode 100644 index 0000000..9ba2ee8 Binary files /dev/null and b/_module/ncs/ammred_6.ncs differ diff --git a/_module/ncs/ammred_8.ncs b/_module/ncs/ammred_8.ncs new file mode 100644 index 0000000..8dd5e9e Binary files /dev/null and b/_module/ncs/ammred_8.ncs differ diff --git a/_module/ncs/ammred_9.ncs b/_module/ncs/ammred_9.ncs new file mode 100644 index 0000000..01f3683 Binary files /dev/null and b/_module/ncs/ammred_9.ncs differ diff --git a/_module/ncs/angel_fly.ncs b/_module/ncs/angel_fly.ncs new file mode 100644 index 0000000..978871a Binary files /dev/null and b/_module/ncs/angel_fly.ncs differ diff --git a/_module/ncs/angel_fly2.ncs b/_module/ncs/angel_fly2.ncs new file mode 100644 index 0000000..7b7dc2e Binary files /dev/null and b/_module/ncs/angel_fly2.ncs differ diff --git a/_module/ncs/angeldeath.ncs b/_module/ncs/angeldeath.ncs new file mode 100644 index 0000000..b2bcee9 Binary files /dev/null and b/_module/ncs/angeldeath.ncs differ diff --git a/_module/ncs/angeldeath1.ncs b/_module/ncs/angeldeath1.ncs new file mode 100644 index 0000000..3b32b45 Binary files /dev/null and b/_module/ncs/angeldeath1.ncs differ diff --git a/_module/ncs/anti_devcrit2.ncs b/_module/ncs/anti_devcrit2.ncs new file mode 100644 index 0000000..5f762cd Binary files /dev/null and b/_module/ncs/anti_devcrit2.ncs differ diff --git a/_module/ncs/any_neu_align.ncs b/_module/ncs/any_neu_align.ncs new file mode 100644 index 0000000..0785997 Binary files /dev/null and b/_module/ncs/any_neu_align.ncs differ diff --git a/_module/ncs/aoc_onspellcast.ncs b/_module/ncs/aoc_onspellcast.ncs new file mode 100644 index 0000000..63c591e Binary files /dev/null and b/_module/ncs/aoc_onspellcast.ncs differ diff --git a/_module/ncs/aph_imbue.ncs b/_module/ncs/aph_imbue.ncs new file mode 100644 index 0000000..4addb03 Binary files /dev/null and b/_module/ncs/aph_imbue.ncs differ diff --git a/_module/ncs/app0.ncs b/_module/ncs/app0.ncs new file mode 100644 index 0000000..b7c46a6 Binary files /dev/null and b/_module/ncs/app0.ncs differ diff --git a/_module/ncs/app1.ncs b/_module/ncs/app1.ncs new file mode 100644 index 0000000..c817d78 Binary files /dev/null and b/_module/ncs/app1.ncs differ diff --git a/_module/ncs/app1000.ncs b/_module/ncs/app1000.ncs new file mode 100644 index 0000000..4c1dd49 Binary files /dev/null and b/_module/ncs/app1000.ncs differ diff --git a/_module/ncs/app2.ncs b/_module/ncs/app2.ncs new file mode 100644 index 0000000..31bf328 Binary files /dev/null and b/_module/ncs/app2.ncs differ diff --git a/_module/ncs/app3.ncs b/_module/ncs/app3.ncs new file mode 100644 index 0000000..9290bbb Binary files /dev/null and b/_module/ncs/app3.ncs differ diff --git a/_module/ncs/app4.ncs b/_module/ncs/app4.ncs new file mode 100644 index 0000000..04f3a17 Binary files /dev/null and b/_module/ncs/app4.ncs differ diff --git a/_module/ncs/app5.ncs b/_module/ncs/app5.ncs new file mode 100644 index 0000000..d208d1a Binary files /dev/null and b/_module/ncs/app5.ncs differ diff --git a/_module/ncs/app6.ncs b/_module/ncs/app6.ncs new file mode 100644 index 0000000..0cbdfc5 Binary files /dev/null and b/_module/ncs/app6.ncs differ diff --git a/_module/ncs/app7.ncs b/_module/ncs/app7.ncs new file mode 100644 index 0000000..5ef4cf1 Binary files /dev/null and b/_module/ncs/app7.ncs differ diff --git a/_module/ncs/app8.ncs b/_module/ncs/app8.ncs new file mode 100644 index 0000000..97bdf17 Binary files /dev/null and b/_module/ncs/app8.ncs differ diff --git a/_module/ncs/app9.ncs b/_module/ncs/app9.ncs new file mode 100644 index 0000000..1216f72 Binary files /dev/null and b/_module/ncs/app9.ncs differ diff --git a/_module/ncs/appearance_drag.ncs b/_module/ncs/appearance_drag.ncs new file mode 100644 index 0000000..e2567b1 Binary files /dev/null and b/_module/ncs/appearance_drag.ncs differ diff --git a/_module/ncs/arena_scoreboard.ncs b/_module/ncs/arena_scoreboard.ncs new file mode 100644 index 0000000..a341291 Binary files /dev/null and b/_module/ncs/arena_scoreboard.ncs differ diff --git a/_module/ncs/arenatoacademy.ncs b/_module/ncs/arenatoacademy.ncs new file mode 100644 index 0000000..4a0cc44 Binary files /dev/null and b/_module/ncs/arenatoacademy.ncs differ diff --git a/_module/ncs/arm_ocre.ncs b/_module/ncs/arm_ocre.ncs new file mode 100644 index 0000000..0cf72d4 Binary files /dev/null and b/_module/ncs/arm_ocre.ncs differ diff --git a/_module/ncs/asa.ncs b/_module/ncs/asa.ncs new file mode 100644 index 0000000..62a361d Binary files /dev/null and b/_module/ncs/asa.ncs differ diff --git a/_module/ncs/asf_imbue.ncs b/_module/ncs/asf_imbue.ncs new file mode 100644 index 0000000..fe69bef Binary files /dev/null and b/_module/ncs/asf_imbue.ncs differ diff --git a/_module/ncs/asf_imbue1.ncs b/_module/ncs/asf_imbue1.ncs new file mode 100644 index 0000000..d8c47bd Binary files /dev/null and b/_module/ncs/asf_imbue1.ncs differ diff --git a/_module/ncs/at_001.ncs b/_module/ncs/at_001.ncs new file mode 100644 index 0000000..71a9ffe Binary files /dev/null and b/_module/ncs/at_001.ncs differ diff --git a/_module/ncs/at_002.ncs b/_module/ncs/at_002.ncs new file mode 100644 index 0000000..8980ca1 Binary files /dev/null and b/_module/ncs/at_002.ncs differ diff --git a/_module/ncs/at_003.ncs b/_module/ncs/at_003.ncs new file mode 100644 index 0000000..8e0cfe5 Binary files /dev/null and b/_module/ncs/at_003.ncs differ diff --git a/_module/ncs/at_004.ncs b/_module/ncs/at_004.ncs new file mode 100644 index 0000000..686a8da Binary files /dev/null and b/_module/ncs/at_004.ncs differ diff --git a/_module/ncs/at_005.ncs b/_module/ncs/at_005.ncs new file mode 100644 index 0000000..21f9d0e Binary files /dev/null and b/_module/ncs/at_005.ncs differ diff --git a/_module/ncs/at_006.ncs b/_module/ncs/at_006.ncs new file mode 100644 index 0000000..9bd60d2 Binary files /dev/null and b/_module/ncs/at_006.ncs differ diff --git a/_module/ncs/at_007.ncs b/_module/ncs/at_007.ncs new file mode 100644 index 0000000..b7a3669 Binary files /dev/null and b/_module/ncs/at_007.ncs differ diff --git a/_module/ncs/at_008.ncs b/_module/ncs/at_008.ncs new file mode 100644 index 0000000..b1322cf Binary files /dev/null and b/_module/ncs/at_008.ncs differ diff --git a/_module/ncs/at_009.ncs b/_module/ncs/at_009.ncs new file mode 100644 index 0000000..c18729c Binary files /dev/null and b/_module/ncs/at_009.ncs differ diff --git a/_module/ncs/at_010.ncs b/_module/ncs/at_010.ncs new file mode 100644 index 0000000..b6d4ca8 Binary files /dev/null and b/_module/ncs/at_010.ncs differ diff --git a/_module/ncs/at_011.ncs b/_module/ncs/at_011.ncs new file mode 100644 index 0000000..33cf213 Binary files /dev/null and b/_module/ncs/at_011.ncs differ diff --git a/_module/ncs/at_012.ncs b/_module/ncs/at_012.ncs new file mode 100644 index 0000000..9119811 Binary files /dev/null and b/_module/ncs/at_012.ncs differ diff --git a/_module/ncs/at_013.ncs b/_module/ncs/at_013.ncs new file mode 100644 index 0000000..2b9327a Binary files /dev/null and b/_module/ncs/at_013.ncs differ diff --git a/_module/ncs/at_014.ncs b/_module/ncs/at_014.ncs new file mode 100644 index 0000000..a237326 Binary files /dev/null and b/_module/ncs/at_014.ncs differ diff --git a/_module/ncs/at_015.ncs b/_module/ncs/at_015.ncs new file mode 100644 index 0000000..8dcbf66 Binary files /dev/null and b/_module/ncs/at_015.ncs differ diff --git a/_module/ncs/at_016.ncs b/_module/ncs/at_016.ncs new file mode 100644 index 0000000..dc5c274 Binary files /dev/null and b/_module/ncs/at_016.ncs differ diff --git a/_module/ncs/at_017.ncs b/_module/ncs/at_017.ncs new file mode 100644 index 0000000..3d01013 Binary files /dev/null and b/_module/ncs/at_017.ncs differ diff --git a/_module/ncs/at_018.ncs b/_module/ncs/at_018.ncs new file mode 100644 index 0000000..8defc5c Binary files /dev/null and b/_module/ncs/at_018.ncs differ diff --git a/_module/ncs/at_019.ncs b/_module/ncs/at_019.ncs new file mode 100644 index 0000000..2b311aa Binary files /dev/null and b/_module/ncs/at_019.ncs differ diff --git a/_module/ncs/at_020.ncs b/_module/ncs/at_020.ncs new file mode 100644 index 0000000..23dde8c Binary files /dev/null and b/_module/ncs/at_020.ncs differ diff --git a/_module/ncs/at_021.ncs b/_module/ncs/at_021.ncs new file mode 100644 index 0000000..fa64f6e Binary files /dev/null and b/_module/ncs/at_021.ncs differ diff --git a/_module/ncs/at_021a.ncs b/_module/ncs/at_021a.ncs new file mode 100644 index 0000000..5cfa4cf Binary files /dev/null and b/_module/ncs/at_021a.ncs differ diff --git a/_module/ncs/at_022.ncs b/_module/ncs/at_022.ncs new file mode 100644 index 0000000..9d60b68 Binary files /dev/null and b/_module/ncs/at_022.ncs differ diff --git a/_module/ncs/at_022x.ncs b/_module/ncs/at_022x.ncs new file mode 100644 index 0000000..5673c32 Binary files /dev/null and b/_module/ncs/at_022x.ncs differ diff --git a/_module/ncs/at_023.ncs b/_module/ncs/at_023.ncs new file mode 100644 index 0000000..88171ef Binary files /dev/null and b/_module/ncs/at_023.ncs differ diff --git a/_module/ncs/at_024.ncs b/_module/ncs/at_024.ncs new file mode 100644 index 0000000..d855793 Binary files /dev/null and b/_module/ncs/at_024.ncs differ diff --git a/_module/ncs/at_025.ncs b/_module/ncs/at_025.ncs new file mode 100644 index 0000000..b980279 Binary files /dev/null and b/_module/ncs/at_025.ncs differ diff --git a/_module/ncs/at_026.ncs b/_module/ncs/at_026.ncs new file mode 100644 index 0000000..68727eb Binary files /dev/null and b/_module/ncs/at_026.ncs differ diff --git a/_module/ncs/at_027.ncs b/_module/ncs/at_027.ncs new file mode 100644 index 0000000..2983fc4 Binary files /dev/null and b/_module/ncs/at_027.ncs differ diff --git a/_module/ncs/at_027a.ncs b/_module/ncs/at_027a.ncs new file mode 100644 index 0000000..6fccb73 Binary files /dev/null and b/_module/ncs/at_027a.ncs differ diff --git a/_module/ncs/at_028.ncs b/_module/ncs/at_028.ncs new file mode 100644 index 0000000..34f1b47 Binary files /dev/null and b/_module/ncs/at_028.ncs differ diff --git a/_module/ncs/at_029.ncs b/_module/ncs/at_029.ncs new file mode 100644 index 0000000..cf7cea8 Binary files /dev/null and b/_module/ncs/at_029.ncs differ diff --git a/_module/ncs/at_030.ncs b/_module/ncs/at_030.ncs new file mode 100644 index 0000000..9c5fa9b Binary files /dev/null and b/_module/ncs/at_030.ncs differ diff --git a/_module/ncs/at_cryptexit_001.ncs b/_module/ncs/at_cryptexit_001.ncs new file mode 100644 index 0000000..6572349 Binary files /dev/null and b/_module/ncs/at_cryptexit_001.ncs differ diff --git a/_module/ncs/ats_at_trash_yes.ncs b/_module/ncs/ats_at_trash_yes.ncs new file mode 100644 index 0000000..670e6ec Binary files /dev/null and b/_module/ncs/ats_at_trash_yes.ncs differ diff --git a/_module/ncs/ats_tcan_onclose.ncs b/_module/ncs/ats_tcan_onclose.ncs new file mode 100644 index 0000000..b9ba1c9 Binary files /dev/null and b/_module/ncs/ats_tcan_onclose.ncs differ diff --git a/_module/ncs/ats_tcan_onopen.ncs b/_module/ncs/ats_tcan_onopen.ncs new file mode 100644 index 0000000..e31636b Binary files /dev/null and b/_module/ncs/ats_tcan_onopen.ncs differ diff --git a/_module/ncs/ats_tcan_onused.ncs b/_module/ncs/ats_tcan_onused.ncs new file mode 100644 index 0000000..fd96593 Binary files /dev/null and b/_module/ncs/ats_tcan_onused.ncs differ diff --git a/_module/ncs/autoclose.ncs b/_module/ncs/autoclose.ncs new file mode 100644 index 0000000..d7d8a7f Binary files /dev/null and b/_module/ncs/autoclose.ncs differ diff --git a/_module/ncs/aven_imbue.ncs b/_module/ncs/aven_imbue.ncs new file mode 100644 index 0000000..dde67ac Binary files /dev/null and b/_module/ncs/aven_imbue.ncs differ diff --git a/_module/ncs/b_angeldeath.ncs b/_module/ncs/b_angeldeath.ncs new file mode 100644 index 0000000..2e907cd Binary files /dev/null and b/_module/ncs/b_angeldeath.ncs differ diff --git a/_module/ncs/b_angeldeath1.ncs b/_module/ncs/b_angeldeath1.ncs new file mode 100644 index 0000000..14e4757 Binary files /dev/null and b/_module/ncs/b_angeldeath1.ncs differ diff --git a/_module/ncs/b_balordeth1.ncs b/_module/ncs/b_balordeth1.ncs new file mode 100644 index 0000000..4ba2022 Binary files /dev/null and b/_module/ncs/b_balordeth1.ncs differ diff --git a/_module/ncs/b_deathdeath1.ncs b/_module/ncs/b_deathdeath1.ncs new file mode 100644 index 0000000..0647b1d Binary files /dev/null and b/_module/ncs/b_deathdeath1.ncs differ diff --git a/_module/ncs/b_deathdeath2.ncs b/_module/ncs/b_deathdeath2.ncs new file mode 100644 index 0000000..b760d4b Binary files /dev/null and b/_module/ncs/b_deathdeath2.ncs differ diff --git a/_module/ncs/b_deathdeath3.ncs b/_module/ncs/b_deathdeath3.ncs new file mode 100644 index 0000000..59f6704 Binary files /dev/null and b/_module/ncs/b_deathdeath3.ncs differ diff --git a/_module/ncs/b_deathdeath4.ncs b/_module/ncs/b_deathdeath4.ncs new file mode 100644 index 0000000..2ebd1f1 Binary files /dev/null and b/_module/ncs/b_deathdeath4.ncs differ diff --git a/_module/ncs/b_firedeath1.ncs b/_module/ncs/b_firedeath1.ncs new file mode 100644 index 0000000..91d4f4a Binary files /dev/null and b/_module/ncs/b_firedeath1.ncs differ diff --git a/_module/ncs/b_firedeath3.ncs b/_module/ncs/b_firedeath3.ncs new file mode 100644 index 0000000..dae806b Binary files /dev/null and b/_module/ncs/b_firedeath3.ncs differ diff --git a/_module/ncs/b_golddeath.ncs b/_module/ncs/b_golddeath.ncs new file mode 100644 index 0000000..3200e1d Binary files /dev/null and b/_module/ncs/b_golddeath.ncs differ diff --git a/_module/ncs/b_souldeath.ncs b/_module/ncs/b_souldeath.ncs new file mode 100644 index 0000000..bb735af Binary files /dev/null and b/_module/ncs/b_souldeath.ncs differ diff --git a/_module/ncs/balls_off.ncs b/_module/ncs/balls_off.ncs new file mode 100644 index 0000000..fd30403 Binary files /dev/null and b/_module/ncs/balls_off.ncs differ diff --git a/_module/ncs/balordeth1.ncs b/_module/ncs/balordeth1.ncs new file mode 100644 index 0000000..f1722d4 Binary files /dev/null and b/_module/ncs/balordeth1.ncs differ diff --git a/_module/ncs/barb_slot_imbue.ncs b/_module/ncs/barb_slot_imbue.ncs new file mode 100644 index 0000000..9d4923a Binary files /dev/null and b/_module/ncs/barb_slot_imbue.ncs differ diff --git a/_module/ncs/bard_slot_imbue.ncs b/_module/ncs/bard_slot_imbue.ncs new file mode 100644 index 0000000..31980b6 Binary files /dev/null and b/_module/ncs/bard_slot_imbue.ncs differ diff --git a/_module/ncs/battleon.ncs b/_module/ncs/battleon.ncs new file mode 100644 index 0000000..af8aa41 Binary files /dev/null and b/_module/ncs/battleon.ncs differ diff --git a/_module/ncs/bdone_1.ncs b/_module/ncs/bdone_1.ncs new file mode 100644 index 0000000..bf9b044 Binary files /dev/null and b/_module/ncs/bdone_1.ncs differ diff --git a/_module/ncs/bdone_12.ncs b/_module/ncs/bdone_12.ncs new file mode 100644 index 0000000..b78f59c Binary files /dev/null and b/_module/ncs/bdone_12.ncs differ diff --git a/_module/ncs/bet_confirm.ncs b/_module/ncs/bet_confirm.ncs new file mode 100644 index 0000000..8003d40 Binary files /dev/null and b/_module/ncs/bet_confirm.ncs differ diff --git a/_module/ncs/bet_confirm1.ncs b/_module/ncs/bet_confirm1.ncs new file mode 100644 index 0000000..1c23c9b Binary files /dev/null and b/_module/ncs/bet_confirm1.ncs differ diff --git a/_module/ncs/bet_confirm2.ncs b/_module/ncs/bet_confirm2.ncs new file mode 100644 index 0000000..994068c Binary files /dev/null and b/_module/ncs/bet_confirm2.ncs differ diff --git a/_module/ncs/bet_confirm4.ncs b/_module/ncs/bet_confirm4.ncs new file mode 100644 index 0000000..1dfa5f4 Binary files /dev/null and b/_module/ncs/bet_confirm4.ncs differ diff --git a/_module/ncs/bet_type.ncs b/_module/ncs/bet_type.ncs new file mode 100644 index 0000000..950423d Binary files /dev/null and b/_module/ncs/bet_type.ncs differ diff --git a/_module/ncs/bet_type2.ncs b/_module/ncs/bet_type2.ncs new file mode 100644 index 0000000..2afb90a Binary files /dev/null and b/_module/ncs/bet_type2.ncs differ diff --git a/_module/ncs/bl_imbue25.ncs b/_module/ncs/bl_imbue25.ncs new file mode 100644 index 0000000..ca545b4 Binary files /dev/null and b/_module/ncs/bl_imbue25.ncs differ diff --git a/_module/ncs/bl_imbue252.ncs b/_module/ncs/bl_imbue252.ncs new file mode 100644 index 0000000..7c339f1 Binary files /dev/null and b/_module/ncs/bl_imbue252.ncs differ diff --git a/_module/ncs/bldred_imbue_2.ncs b/_module/ncs/bldred_imbue_2.ncs new file mode 100644 index 0000000..f9ee7f4 Binary files /dev/null and b/_module/ncs/bldred_imbue_2.ncs differ diff --git a/_module/ncs/bldred_imbue_22.ncs b/_module/ncs/bldred_imbue_22.ncs new file mode 100644 index 0000000..61c5bc0 Binary files /dev/null and b/_module/ncs/bldred_imbue_22.ncs differ diff --git a/_module/ncs/bldred_imbue_3.ncs b/_module/ncs/bldred_imbue_3.ncs new file mode 100644 index 0000000..f72c42a Binary files /dev/null and b/_module/ncs/bldred_imbue_3.ncs differ diff --git a/_module/ncs/bldred_imbue_32.ncs b/_module/ncs/bldred_imbue_32.ncs new file mode 100644 index 0000000..e26765c Binary files /dev/null and b/_module/ncs/bldred_imbue_32.ncs differ diff --git a/_module/ncs/bldred_imbue_4.ncs b/_module/ncs/bldred_imbue_4.ncs new file mode 100644 index 0000000..32be2ad Binary files /dev/null and b/_module/ncs/bldred_imbue_4.ncs differ diff --git a/_module/ncs/bldred_imbue_5.ncs b/_module/ncs/bldred_imbue_5.ncs new file mode 100644 index 0000000..69494a9 Binary files /dev/null and b/_module/ncs/bldred_imbue_5.ncs differ diff --git a/_module/ncs/blmax_reached.ncs b/_module/ncs/blmax_reached.ncs new file mode 100644 index 0000000..0789ba4 Binary files /dev/null and b/_module/ncs/blmax_reached.ncs differ diff --git a/_module/ncs/blmax_reached1.ncs b/_module/ncs/blmax_reached1.ncs new file mode 100644 index 0000000..c4b6a07 Binary files /dev/null and b/_module/ncs/blmax_reached1.ncs differ diff --git a/_module/ncs/blmax_reached12.ncs b/_module/ncs/blmax_reached12.ncs new file mode 100644 index 0000000..a5c49e8 Binary files /dev/null and b/_module/ncs/blmax_reached12.ncs differ diff --git a/_module/ncs/blmax_reached2.ncs b/_module/ncs/blmax_reached2.ncs new file mode 100644 index 0000000..9bd4468 Binary files /dev/null and b/_module/ncs/blmax_reached2.ncs differ diff --git a/_module/ncs/blred1_1.ncs b/_module/ncs/blred1_1.ncs new file mode 100644 index 0000000..524a2a0 Binary files /dev/null and b/_module/ncs/blred1_1.ncs differ diff --git a/_module/ncs/blred1_12.ncs b/_module/ncs/blred1_12.ncs new file mode 100644 index 0000000..f2cf3b0 Binary files /dev/null and b/_module/ncs/blred1_12.ncs differ diff --git a/_module/ncs/blred_10.ncs b/_module/ncs/blred_10.ncs new file mode 100644 index 0000000..02663d0 Binary files /dev/null and b/_module/ncs/blred_10.ncs differ diff --git a/_module/ncs/blred_11.ncs b/_module/ncs/blred_11.ncs new file mode 100644 index 0000000..bb195e7 Binary files /dev/null and b/_module/ncs/blred_11.ncs differ diff --git a/_module/ncs/blred_12.ncs b/_module/ncs/blred_12.ncs new file mode 100644 index 0000000..56a2710 Binary files /dev/null and b/_module/ncs/blred_12.ncs differ diff --git a/_module/ncs/blred_2.ncs b/_module/ncs/blred_2.ncs new file mode 100644 index 0000000..3b6e0db Binary files /dev/null and b/_module/ncs/blred_2.ncs differ diff --git a/_module/ncs/blred_22.ncs b/_module/ncs/blred_22.ncs new file mode 100644 index 0000000..4094b50 Binary files /dev/null and b/_module/ncs/blred_22.ncs differ diff --git a/_module/ncs/blred_3.ncs b/_module/ncs/blred_3.ncs new file mode 100644 index 0000000..d2086b0 Binary files /dev/null and b/_module/ncs/blred_3.ncs differ diff --git a/_module/ncs/blred_32.ncs b/_module/ncs/blred_32.ncs new file mode 100644 index 0000000..b502044 Binary files /dev/null and b/_module/ncs/blred_32.ncs differ diff --git a/_module/ncs/blred_4.ncs b/_module/ncs/blred_4.ncs new file mode 100644 index 0000000..00f2a5f Binary files /dev/null and b/_module/ncs/blred_4.ncs differ diff --git a/_module/ncs/blred_42.ncs b/_module/ncs/blred_42.ncs new file mode 100644 index 0000000..7e2716b Binary files /dev/null and b/_module/ncs/blred_42.ncs differ diff --git a/_module/ncs/blred_6.ncs b/_module/ncs/blred_6.ncs new file mode 100644 index 0000000..6ec31db Binary files /dev/null and b/_module/ncs/blred_6.ncs differ diff --git a/_module/ncs/blred_62.ncs b/_module/ncs/blred_62.ncs new file mode 100644 index 0000000..8cdb594 Binary files /dev/null and b/_module/ncs/blred_62.ncs differ diff --git a/_module/ncs/blred_7.ncs b/_module/ncs/blred_7.ncs new file mode 100644 index 0000000..4eb4f28 Binary files /dev/null and b/_module/ncs/blred_7.ncs differ diff --git a/_module/ncs/blred_8.ncs b/_module/ncs/blred_8.ncs new file mode 100644 index 0000000..5a24c64 Binary files /dev/null and b/_module/ncs/blred_8.ncs differ diff --git a/_module/ncs/blred_9.ncs b/_module/ncs/blred_9.ncs new file mode 100644 index 0000000..58ff4ee Binary files /dev/null and b/_module/ncs/blred_9.ncs differ diff --git a/_module/ncs/blud_imbue.ncs b/_module/ncs/blud_imbue.ncs new file mode 100644 index 0000000..3cac402 Binary files /dev/null and b/_module/ncs/blud_imbue.ncs differ diff --git a/_module/ncs/blud_imbue_arm.ncs b/_module/ncs/blud_imbue_arm.ncs new file mode 100644 index 0000000..8132b6c Binary files /dev/null and b/_module/ncs/blud_imbue_arm.ncs differ diff --git a/_module/ncs/bodd_gold.ncs b/_module/ncs/bodd_gold.ncs new file mode 100644 index 0000000..2f221bc Binary files /dev/null and b/_module/ncs/bodd_gold.ncs differ diff --git a/_module/ncs/boot_shop.ncs b/_module/ncs/boot_shop.ncs new file mode 100644 index 0000000..47fa1c0 Binary files /dev/null and b/_module/ncs/boot_shop.ncs differ diff --git a/_module/ncs/boss_gold.ncs b/_module/ncs/boss_gold.ncs new file mode 100644 index 0000000..c6b9b3b Binary files /dev/null and b/_module/ncs/boss_gold.ncs differ diff --git a/_module/ncs/bossdeath.ncs b/_module/ncs/bossdeath.ncs new file mode 100644 index 0000000..13f1efd Binary files /dev/null and b/_module/ncs/bossdeath.ncs differ diff --git a/_module/ncs/bossdeath2.ncs b/_module/ncs/bossdeath2.ncs new file mode 100644 index 0000000..7621d63 Binary files /dev/null and b/_module/ncs/bossdeath2.ncs differ diff --git a/_module/ncs/bossdeath2a.ncs b/_module/ncs/bossdeath2a.ncs new file mode 100644 index 0000000..4248d77 Binary files /dev/null and b/_module/ncs/bossdeath2a.ncs differ diff --git a/_module/ncs/bossdeath2c.ncs b/_module/ncs/bossdeath2c.ncs new file mode 100644 index 0000000..c5e34aa Binary files /dev/null and b/_module/ncs/bossdeath2c.ncs differ diff --git a/_module/ncs/bossdeath3.ncs b/_module/ncs/bossdeath3.ncs new file mode 100644 index 0000000..421a58e Binary files /dev/null and b/_module/ncs/bossdeath3.ncs differ diff --git a/_module/ncs/bow_check.ncs b/_module/ncs/bow_check.ncs new file mode 100644 index 0000000..3a26d0d Binary files /dev/null and b/_module/ncs/bow_check.ncs differ diff --git a/_module/ncs/bow_shop.ncs b/_module/ncs/bow_shop.ncs new file mode 100644 index 0000000..ef34ea4 Binary files /dev/null and b/_module/ncs/bow_shop.ncs differ diff --git a/_module/ncs/bracer_ac.ncs b/_module/ncs/bracer_ac.ncs new file mode 100644 index 0000000..9d7051d Binary files /dev/null and b/_module/ncs/bracer_ac.ncs differ diff --git a/_module/ncs/braz_act.ncs b/_module/ncs/braz_act.ncs new file mode 100644 index 0000000..25bc20f Binary files /dev/null and b/_module/ncs/braz_act.ncs differ diff --git a/_module/ncs/bred_0.ncs b/_module/ncs/bred_0.ncs new file mode 100644 index 0000000..6ae8463 Binary files /dev/null and b/_module/ncs/bred_0.ncs differ diff --git a/_module/ncs/bred_02.ncs b/_module/ncs/bred_02.ncs new file mode 100644 index 0000000..e0c919d Binary files /dev/null and b/_module/ncs/bred_02.ncs differ diff --git a/_module/ncs/bred_1.ncs b/_module/ncs/bred_1.ncs new file mode 100644 index 0000000..42eafc0 Binary files /dev/null and b/_module/ncs/bred_1.ncs differ diff --git a/_module/ncs/bred_12.ncs b/_module/ncs/bred_12.ncs new file mode 100644 index 0000000..8611ce0 Binary files /dev/null and b/_module/ncs/bred_12.ncs differ diff --git a/_module/ncs/btt_imbue25.ncs b/_module/ncs/btt_imbue25.ncs new file mode 100644 index 0000000..957a4ee Binary files /dev/null and b/_module/ncs/btt_imbue25.ncs differ diff --git a/_module/ncs/bttdone_1.ncs b/_module/ncs/bttdone_1.ncs new file mode 100644 index 0000000..c162269 Binary files /dev/null and b/_module/ncs/bttdone_1.ncs differ diff --git a/_module/ncs/bttdred_imbue_2.ncs b/_module/ncs/bttdred_imbue_2.ncs new file mode 100644 index 0000000..f7712d7 Binary files /dev/null and b/_module/ncs/bttdred_imbue_2.ncs differ diff --git a/_module/ncs/bttdred_imbue_3.ncs b/_module/ncs/bttdred_imbue_3.ncs new file mode 100644 index 0000000..9bfc233 Binary files /dev/null and b/_module/ncs/bttdred_imbue_3.ncs differ diff --git a/_module/ncs/bttdred_imbue_4.ncs b/_module/ncs/bttdred_imbue_4.ncs new file mode 100644 index 0000000..c1e1b89 Binary files /dev/null and b/_module/ncs/bttdred_imbue_4.ncs differ diff --git a/_module/ncs/bttdred_imbue_5.ncs b/_module/ncs/bttdred_imbue_5.ncs new file mode 100644 index 0000000..26e3b55 Binary files /dev/null and b/_module/ncs/bttdred_imbue_5.ncs differ diff --git a/_module/ncs/btted_1.ncs b/_module/ncs/btted_1.ncs new file mode 100644 index 0000000..884071b Binary files /dev/null and b/_module/ncs/btted_1.ncs differ diff --git a/_module/ncs/bttmax_reached.ncs b/_module/ncs/bttmax_reached.ncs new file mode 100644 index 0000000..109752d Binary files /dev/null and b/_module/ncs/bttmax_reached.ncs differ diff --git a/_module/ncs/bttmax_reached2.ncs b/_module/ncs/bttmax_reached2.ncs new file mode 100644 index 0000000..fbe8e7c Binary files /dev/null and b/_module/ncs/bttmax_reached2.ncs differ diff --git a/_module/ncs/bttred1_1.ncs b/_module/ncs/bttred1_1.ncs new file mode 100644 index 0000000..32ae4cf Binary files /dev/null and b/_module/ncs/bttred1_1.ncs differ diff --git a/_module/ncs/bttred_0.ncs b/_module/ncs/bttred_0.ncs new file mode 100644 index 0000000..42bd996 Binary files /dev/null and b/_module/ncs/bttred_0.ncs differ diff --git a/_module/ncs/bttred_10.ncs b/_module/ncs/bttred_10.ncs new file mode 100644 index 0000000..3fdea36 Binary files /dev/null and b/_module/ncs/bttred_10.ncs differ diff --git a/_module/ncs/bttred_11.ncs b/_module/ncs/bttred_11.ncs new file mode 100644 index 0000000..d628060 Binary files /dev/null and b/_module/ncs/bttred_11.ncs differ diff --git a/_module/ncs/bttred_12.ncs b/_module/ncs/bttred_12.ncs new file mode 100644 index 0000000..405a785 Binary files /dev/null and b/_module/ncs/bttred_12.ncs differ diff --git a/_module/ncs/bttred_2.ncs b/_module/ncs/bttred_2.ncs new file mode 100644 index 0000000..d983e06 Binary files /dev/null and b/_module/ncs/bttred_2.ncs differ diff --git a/_module/ncs/bttred_3.ncs b/_module/ncs/bttred_3.ncs new file mode 100644 index 0000000..f45a01c Binary files /dev/null and b/_module/ncs/bttred_3.ncs differ diff --git a/_module/ncs/bttred_4.ncs b/_module/ncs/bttred_4.ncs new file mode 100644 index 0000000..40e2f65 Binary files /dev/null and b/_module/ncs/bttred_4.ncs differ diff --git a/_module/ncs/bttred_6.ncs b/_module/ncs/bttred_6.ncs new file mode 100644 index 0000000..4f2b82b Binary files /dev/null and b/_module/ncs/bttred_6.ncs differ diff --git a/_module/ncs/bttred_7.ncs b/_module/ncs/bttred_7.ncs new file mode 100644 index 0000000..bdc491e Binary files /dev/null and b/_module/ncs/bttred_7.ncs differ diff --git a/_module/ncs/bttred_8.ncs b/_module/ncs/bttred_8.ncs new file mode 100644 index 0000000..85b27c1 Binary files /dev/null and b/_module/ncs/bttred_8.ncs differ diff --git a/_module/ncs/bttred_9.ncs b/_module/ncs/bttred_9.ncs new file mode 100644 index 0000000..0c284a4 Binary files /dev/null and b/_module/ncs/bttred_9.ncs differ diff --git a/_module/ncs/buff_talk.ncs b/_module/ncs/buff_talk.ncs new file mode 100644 index 0000000..ff6c247 Binary files /dev/null and b/_module/ncs/buff_talk.ncs differ diff --git a/_module/ncs/buff_vote.ncs b/_module/ncs/buff_vote.ncs new file mode 100644 index 0000000..65a426d Binary files /dev/null and b/_module/ncs/buff_vote.ncs differ diff --git a/_module/ncs/camera_tune.ncs b/_module/ncs/camera_tune.ncs new file mode 100644 index 0000000..b092ecf Binary files /dev/null and b/_module/ncs/camera_tune.ncs differ diff --git a/_module/ncs/castgmweapon.ncs b/_module/ncs/castgmweapon.ncs new file mode 100644 index 0000000..7d0db6e Binary files /dev/null and b/_module/ncs/castgmweapon.ncs differ diff --git a/_module/ncs/castgrestoration.ncs b/_module/ncs/castgrestoration.ncs new file mode 100644 index 0000000..51e3010 Binary files /dev/null and b/_module/ncs/castgrestoration.ncs differ diff --git a/_module/ncs/castgspellmantle.ncs b/_module/ncs/castgspellmantle.ncs new file mode 100644 index 0000000..c6a8689 Binary files /dev/null and b/_module/ncs/castgspellmantle.ncs differ diff --git a/_module/ncs/castheal.ncs b/_module/ncs/castheal.ncs new file mode 100644 index 0000000..8520320 Binary files /dev/null and b/_module/ncs/castheal.ncs differ diff --git a/_module/ncs/castshadshield.ncs b/_module/ncs/castshadshield.ncs new file mode 100644 index 0000000..f8dc302 Binary files /dev/null and b/_module/ncs/castshadshield.ncs differ diff --git a/_module/ncs/cbet_type.ncs b/_module/ncs/cbet_type.ncs new file mode 100644 index 0000000..47a9777 Binary files /dev/null and b/_module/ncs/cbet_type.ncs differ diff --git a/_module/ncs/ccast_imbue.ncs b/_module/ncs/ccast_imbue.ncs new file mode 100644 index 0000000..71723ae Binary files /dev/null and b/_module/ncs/ccast_imbue.ncs differ diff --git a/_module/ncs/ccast_imbue2.ncs b/_module/ncs/ccast_imbue2.ncs new file mode 100644 index 0000000..05425a2 Binary files /dev/null and b/_module/ncs/ccast_imbue2.ncs differ diff --git a/_module/ncs/cchamp_bet.ncs b/_module/ncs/cchamp_bet.ncs new file mode 100644 index 0000000..5dc1316 Binary files /dev/null and b/_module/ncs/cchamp_bet.ncs differ diff --git a/_module/ncs/cchamp_bet1.ncs b/_module/ncs/cchamp_bet1.ncs new file mode 100644 index 0000000..f0c3d78 Binary files /dev/null and b/_module/ncs/cchamp_bet1.ncs differ diff --git a/_module/ncs/cchamp_bet2.ncs b/_module/ncs/cchamp_bet2.ncs new file mode 100644 index 0000000..8269443 Binary files /dev/null and b/_module/ncs/cchamp_bet2.ncs differ diff --git a/_module/ncs/cchamp_bet3.ncs b/_module/ncs/cchamp_bet3.ncs new file mode 100644 index 0000000..099e5a9 Binary files /dev/null and b/_module/ncs/cchamp_bet3.ncs differ diff --git a/_module/ncs/cchamp_bet4.ncs b/_module/ncs/cchamp_bet4.ncs new file mode 100644 index 0000000..20ff7ad Binary files /dev/null and b/_module/ncs/cchamp_bet4.ncs differ diff --git a/_module/ncs/cchamp_bet5.ncs b/_module/ncs/cchamp_bet5.ncs new file mode 100644 index 0000000..9a5b10d Binary files /dev/null and b/_module/ncs/cchamp_bet5.ncs differ diff --git a/_module/ncs/cchamp_bet6.ncs b/_module/ncs/cchamp_bet6.ncs new file mode 100644 index 0000000..30f9f99 Binary files /dev/null and b/_module/ncs/cchamp_bet6.ncs differ diff --git a/_module/ncs/cchamp_bet7.ncs b/_module/ncs/cchamp_bet7.ncs new file mode 100644 index 0000000..6e80692 Binary files /dev/null and b/_module/ncs/cchamp_bet7.ncs differ diff --git a/_module/ncs/cchamp_bet8.ncs b/_module/ncs/cchamp_bet8.ncs new file mode 100644 index 0000000..cf24f7e Binary files /dev/null and b/_module/ncs/cchamp_bet8.ncs differ diff --git a/_module/ncs/cchamp_bet9.ncs b/_module/ncs/cchamp_bet9.ncs new file mode 100644 index 0000000..2a1d1f1 Binary files /dev/null and b/_module/ncs/cchamp_bet9.ncs differ diff --git a/_module/ncs/cdchamp_bet1.ncs b/_module/ncs/cdchamp_bet1.ncs new file mode 100644 index 0000000..966ebfa Binary files /dev/null and b/_module/ncs/cdchamp_bet1.ncs differ diff --git a/_module/ncs/cdchamp_bet10.ncs b/_module/ncs/cdchamp_bet10.ncs new file mode 100644 index 0000000..f75ff7c Binary files /dev/null and b/_module/ncs/cdchamp_bet10.ncs differ diff --git a/_module/ncs/cdchamp_bet11.ncs b/_module/ncs/cdchamp_bet11.ncs new file mode 100644 index 0000000..268e9df Binary files /dev/null and b/_module/ncs/cdchamp_bet11.ncs differ diff --git a/_module/ncs/cdchamp_bet2.ncs b/_module/ncs/cdchamp_bet2.ncs new file mode 100644 index 0000000..8174eca Binary files /dev/null and b/_module/ncs/cdchamp_bet2.ncs differ diff --git a/_module/ncs/cdchamp_bet3.ncs b/_module/ncs/cdchamp_bet3.ncs new file mode 100644 index 0000000..4f6000e Binary files /dev/null and b/_module/ncs/cdchamp_bet3.ncs differ diff --git a/_module/ncs/cdchamp_bet4.ncs b/_module/ncs/cdchamp_bet4.ncs new file mode 100644 index 0000000..8826dc7 Binary files /dev/null and b/_module/ncs/cdchamp_bet4.ncs differ diff --git a/_module/ncs/cdchamp_bet5.ncs b/_module/ncs/cdchamp_bet5.ncs new file mode 100644 index 0000000..516b31d Binary files /dev/null and b/_module/ncs/cdchamp_bet5.ncs differ diff --git a/_module/ncs/cdchamp_bet6.ncs b/_module/ncs/cdchamp_bet6.ncs new file mode 100644 index 0000000..dd929a3 Binary files /dev/null and b/_module/ncs/cdchamp_bet6.ncs differ diff --git a/_module/ncs/cdchamp_bet7.ncs b/_module/ncs/cdchamp_bet7.ncs new file mode 100644 index 0000000..b45e37c Binary files /dev/null and b/_module/ncs/cdchamp_bet7.ncs differ diff --git a/_module/ncs/cdchamp_bet8.ncs b/_module/ncs/cdchamp_bet8.ncs new file mode 100644 index 0000000..88e0a18 Binary files /dev/null and b/_module/ncs/cdchamp_bet8.ncs differ diff --git a/_module/ncs/cdchamp_bet9.ncs b/_module/ncs/cdchamp_bet9.ncs new file mode 100644 index 0000000..e13afa4 Binary files /dev/null and b/_module/ncs/cdchamp_bet9.ncs differ diff --git a/_module/ncs/ce.ncs b/_module/ncs/ce.ncs new file mode 100644 index 0000000..3bd2cbd Binary files /dev/null and b/_module/ncs/ce.ncs differ diff --git a/_module/ncs/cg.ncs b/_module/ncs/cg.ncs new file mode 100644 index 0000000..f3b28f9 Binary files /dev/null and b/_module/ncs/cg.ncs differ diff --git a/_module/ncs/ch_bet_confirm.ncs b/_module/ncs/ch_bet_confirm.ncs new file mode 100644 index 0000000..8c88095 Binary files /dev/null and b/_module/ncs/ch_bet_confirm.ncs differ diff --git a/_module/ncs/ch_bet_confirm2.ncs b/_module/ncs/ch_bet_confirm2.ncs new file mode 100644 index 0000000..036531a Binary files /dev/null and b/_module/ncs/ch_bet_confirm2.ncs differ diff --git a/_module/ncs/ch_bet_confirm3.ncs b/_module/ncs/ch_bet_confirm3.ncs new file mode 100644 index 0000000..372bf72 Binary files /dev/null and b/_module/ncs/ch_bet_confirm3.ncs differ diff --git a/_module/ncs/ch_bet_confirm4.ncs b/_module/ncs/ch_bet_confirm4.ncs new file mode 100644 index 0000000..ac9eefe Binary files /dev/null and b/_module/ncs/ch_bet_confirm4.ncs differ diff --git a/_module/ncs/cha_bet_confirm.ncs b/_module/ncs/cha_bet_confirm.ncs new file mode 100644 index 0000000..cd1cc06 Binary files /dev/null and b/_module/ncs/cha_bet_confirm.ncs differ diff --git a/_module/ncs/cha_evi_align.ncs b/_module/ncs/cha_evi_align.ncs new file mode 100644 index 0000000..d59b8ee Binary files /dev/null and b/_module/ncs/cha_evi_align.ncs differ diff --git a/_module/ncs/cha_goo_align.ncs b/_module/ncs/cha_goo_align.ncs new file mode 100644 index 0000000..49ecd59 Binary files /dev/null and b/_module/ncs/cha_goo_align.ncs differ diff --git a/_module/ncs/cha_imbue.ncs b/_module/ncs/cha_imbue.ncs new file mode 100644 index 0000000..80378a6 Binary files /dev/null and b/_module/ncs/cha_imbue.ncs differ diff --git a/_module/ncs/cha_neu_align.ncs b/_module/ncs/cha_neu_align.ncs new file mode 100644 index 0000000..f1930e6 Binary files /dev/null and b/_module/ncs/cha_neu_align.ncs differ diff --git a/_module/ncs/champ_bet.ncs b/_module/ncs/champ_bet.ncs new file mode 100644 index 0000000..1281770 Binary files /dev/null and b/_module/ncs/champ_bet.ncs differ diff --git a/_module/ncs/champ_bet1.ncs b/_module/ncs/champ_bet1.ncs new file mode 100644 index 0000000..aa65fdd Binary files /dev/null and b/_module/ncs/champ_bet1.ncs differ diff --git a/_module/ncs/champ_bet2.ncs b/_module/ncs/champ_bet2.ncs new file mode 100644 index 0000000..cf57148 Binary files /dev/null and b/_module/ncs/champ_bet2.ncs differ diff --git a/_module/ncs/champ_bet3.ncs b/_module/ncs/champ_bet3.ncs new file mode 100644 index 0000000..2c370cc Binary files /dev/null and b/_module/ncs/champ_bet3.ncs differ diff --git a/_module/ncs/champ_bet4.ncs b/_module/ncs/champ_bet4.ncs new file mode 100644 index 0000000..96fbf27 Binary files /dev/null and b/_module/ncs/champ_bet4.ncs differ diff --git a/_module/ncs/champ_bet5.ncs b/_module/ncs/champ_bet5.ncs new file mode 100644 index 0000000..0d0732f Binary files /dev/null and b/_module/ncs/champ_bet5.ncs differ diff --git a/_module/ncs/champ_bet6.ncs b/_module/ncs/champ_bet6.ncs new file mode 100644 index 0000000..835c20f Binary files /dev/null and b/_module/ncs/champ_bet6.ncs differ diff --git a/_module/ncs/champ_bet7.ncs b/_module/ncs/champ_bet7.ncs new file mode 100644 index 0000000..9b5fc5f Binary files /dev/null and b/_module/ncs/champ_bet7.ncs differ diff --git a/_module/ncs/champ_bet8.ncs b/_module/ncs/champ_bet8.ncs new file mode 100644 index 0000000..ea19643 Binary files /dev/null and b/_module/ncs/champ_bet8.ncs differ diff --git a/_module/ncs/champ_bet9.ncs b/_module/ncs/champ_bet9.ncs new file mode 100644 index 0000000..856ca23 Binary files /dev/null and b/_module/ncs/champ_bet9.ncs differ diff --git a/_module/ncs/champside1.ncs b/_module/ncs/champside1.ncs new file mode 100644 index 0000000..74fa824 Binary files /dev/null and b/_module/ncs/champside1.ncs differ diff --git a/_module/ncs/champside2.ncs b/_module/ncs/champside2.ncs new file mode 100644 index 0000000..1cc3bd4 Binary files /dev/null and b/_module/ncs/champside2.ncs differ diff --git a/_module/ncs/chest_clear.ncs b/_module/ncs/chest_clear.ncs new file mode 100644 index 0000000..5be437a Binary files /dev/null and b/_module/ncs/chest_clear.ncs differ diff --git a/_module/ncs/chest_clear1.ncs b/_module/ncs/chest_clear1.ncs new file mode 100644 index 0000000..2281fb8 Binary files /dev/null and b/_module/ncs/chest_clear1.ncs differ diff --git a/_module/ncs/chest_clear2.ncs b/_module/ncs/chest_clear2.ncs new file mode 100644 index 0000000..b47f382 Binary files /dev/null and b/_module/ncs/chest_clear2.ncs differ diff --git a/_module/ncs/chest_clear_orig.ncs b/_module/ncs/chest_clear_orig.ncs new file mode 100644 index 0000000..b9aeb92 Binary files /dev/null and b/_module/ncs/chest_clear_orig.ncs differ diff --git a/_module/ncs/chk_bp0.ncs b/_module/ncs/chk_bp0.ncs new file mode 100644 index 0000000..85b3faf Binary files /dev/null and b/_module/ncs/chk_bp0.ncs differ diff --git a/_module/ncs/chk_bp1.ncs b/_module/ncs/chk_bp1.ncs new file mode 100644 index 0000000..bdcc51b Binary files /dev/null and b/_module/ncs/chk_bp1.ncs differ diff --git a/_module/ncs/chk_bp2.ncs b/_module/ncs/chk_bp2.ncs new file mode 100644 index 0000000..691976a Binary files /dev/null and b/_module/ncs/chk_bp2.ncs differ diff --git a/_module/ncs/class_check_arc.ncs b/_module/ncs/class_check_arc.ncs new file mode 100644 index 0000000..071b106 Binary files /dev/null and b/_module/ncs/class_check_arc.ncs differ diff --git a/_module/ncs/clean_arena.ncs b/_module/ncs/clean_arena.ncs new file mode 100644 index 0000000..a3ec0ef Binary files /dev/null and b/_module/ncs/clean_arena.ncs differ diff --git a/_module/ncs/clear_app.ncs b/_module/ncs/clear_app.ncs new file mode 100644 index 0000000..b45a531 Binary files /dev/null and b/_module/ncs/clear_app.ncs differ diff --git a/_module/ncs/clear_group.ncs b/_module/ncs/clear_group.ncs new file mode 100644 index 0000000..84c3b69 Binary files /dev/null and b/_module/ncs/clear_group.ncs differ diff --git a/_module/ncs/cleave_imbue.ncs b/_module/ncs/cleave_imbue.ncs new file mode 100644 index 0000000..d6ddb20 Binary files /dev/null and b/_module/ncs/cleave_imbue.ncs differ diff --git a/_module/ncs/cler_slot_imbue.ncs b/_module/ncs/cler_slot_imbue.ncs new file mode 100644 index 0000000..205f1f9 Binary files /dev/null and b/_module/ncs/cler_slot_imbue.ncs differ diff --git a/_module/ncs/cloak_shop.ncs b/_module/ncs/cloak_shop.ncs new file mode 100644 index 0000000..f419ef4 Binary files /dev/null and b/_module/ncs/cloak_shop.ncs differ diff --git a/_module/ncs/clone_heartbeat.ncs b/_module/ncs/clone_heartbeat.ncs new file mode 100644 index 0000000..014c53e Binary files /dev/null and b/_module/ncs/clone_heartbeat.ncs differ diff --git a/_module/ncs/clonepc.ncs b/_module/ncs/clonepc.ncs new file mode 100644 index 0000000..edd4f3a Binary files /dev/null and b/_module/ncs/clonepc.ncs differ diff --git a/_module/ncs/close.ncs b/_module/ncs/close.ncs new file mode 100644 index 0000000..fa90242 Binary files /dev/null and b/_module/ncs/close.ncs differ diff --git a/_module/ncs/closedoor.ncs b/_module/ncs/closedoor.ncs new file mode 100644 index 0000000..8042291 Binary files /dev/null and b/_module/ncs/closedoor.ncs differ diff --git a/_module/ncs/cm_ondeath4.ncs b/_module/ncs/cm_ondeath4.ncs new file mode 100644 index 0000000..7fc4347 Binary files /dev/null and b/_module/ncs/cm_ondeath4.ncs differ diff --git a/_module/ncs/cm_onheartbeat.ncs b/_module/ncs/cm_onheartbeat.ncs new file mode 100644 index 0000000..10692c0 Binary files /dev/null and b/_module/ncs/cm_onheartbeat.ncs differ diff --git a/_module/ncs/cm_onmodload.ncs b/_module/ncs/cm_onmodload.ncs new file mode 100644 index 0000000..16a1400 Binary files /dev/null and b/_module/ncs/cm_onmodload.ncs differ diff --git a/_module/ncs/cm_onplayerdyin1.ncs b/_module/ncs/cm_onplayerdyin1.ncs new file mode 100644 index 0000000..c546a2f Binary files /dev/null and b/_module/ncs/cm_onplayerdyin1.ncs differ diff --git a/_module/ncs/cn.ncs b/_module/ncs/cn.ncs new file mode 100644 index 0000000..c5a3e37 Binary files /dev/null and b/_module/ncs/cn.ncs differ diff --git a/_module/ncs/co_imbue25.ncs b/_module/ncs/co_imbue25.ncs new file mode 100644 index 0000000..0939918 Binary files /dev/null and b/_module/ncs/co_imbue25.ncs differ diff --git a/_module/ncs/co_imbue252.ncs b/_module/ncs/co_imbue252.ncs new file mode 100644 index 0000000..2178566 Binary files /dev/null and b/_module/ncs/co_imbue252.ncs differ diff --git a/_module/ncs/codone_1.ncs b/_module/ncs/codone_1.ncs new file mode 100644 index 0000000..3622161 Binary files /dev/null and b/_module/ncs/codone_1.ncs differ diff --git a/_module/ncs/codone_12.ncs b/_module/ncs/codone_12.ncs new file mode 100644 index 0000000..bfc078a Binary files /dev/null and b/_module/ncs/codone_12.ncs differ diff --git a/_module/ncs/codred_imbue_2.ncs b/_module/ncs/codred_imbue_2.ncs new file mode 100644 index 0000000..d01e6f7 Binary files /dev/null and b/_module/ncs/codred_imbue_2.ncs differ diff --git a/_module/ncs/codred_imbue_22.ncs b/_module/ncs/codred_imbue_22.ncs new file mode 100644 index 0000000..4fbe5a7 Binary files /dev/null and b/_module/ncs/codred_imbue_22.ncs differ diff --git a/_module/ncs/codred_imbue_3.ncs b/_module/ncs/codred_imbue_3.ncs new file mode 100644 index 0000000..76e91d9 Binary files /dev/null and b/_module/ncs/codred_imbue_3.ncs differ diff --git a/_module/ncs/codred_imbue_32.ncs b/_module/ncs/codred_imbue_32.ncs new file mode 100644 index 0000000..a5cfd5f Binary files /dev/null and b/_module/ncs/codred_imbue_32.ncs differ diff --git a/_module/ncs/codred_imbue_4.ncs b/_module/ncs/codred_imbue_4.ncs new file mode 100644 index 0000000..25809c6 Binary files /dev/null and b/_module/ncs/codred_imbue_4.ncs differ diff --git a/_module/ncs/codred_imbue_5.ncs b/_module/ncs/codred_imbue_5.ncs new file mode 100644 index 0000000..7c2288d Binary files /dev/null and b/_module/ncs/codred_imbue_5.ncs differ diff --git a/_module/ncs/coed_1.ncs b/_module/ncs/coed_1.ncs new file mode 100644 index 0000000..fe659bf Binary files /dev/null and b/_module/ncs/coed_1.ncs differ diff --git a/_module/ncs/coed_12.ncs b/_module/ncs/coed_12.ncs new file mode 100644 index 0000000..41c6303 Binary files /dev/null and b/_module/ncs/coed_12.ncs differ diff --git a/_module/ncs/cold_imbue.ncs b/_module/ncs/cold_imbue.ncs new file mode 100644 index 0000000..0daa619 Binary files /dev/null and b/_module/ncs/cold_imbue.ncs differ diff --git a/_module/ncs/cold_imbue_arm.ncs b/_module/ncs/cold_imbue_arm.ncs new file mode 100644 index 0000000..f9fc06d Binary files /dev/null and b/_module/ncs/cold_imbue_arm.ncs differ diff --git a/_module/ncs/collect_win.ncs b/_module/ncs/collect_win.ncs new file mode 100644 index 0000000..454fd29 Binary files /dev/null and b/_module/ncs/collect_win.ncs differ diff --git a/_module/ncs/comax_damred.ncs b/_module/ncs/comax_damred.ncs new file mode 100644 index 0000000..bddbcdd Binary files /dev/null and b/_module/ncs/comax_damred.ncs differ diff --git a/_module/ncs/comax_damred1.ncs b/_module/ncs/comax_damred1.ncs new file mode 100644 index 0000000..a58dd08 Binary files /dev/null and b/_module/ncs/comax_damred1.ncs differ diff --git a/_module/ncs/comax_damred12.ncs b/_module/ncs/comax_damred12.ncs new file mode 100644 index 0000000..732d7c6 Binary files /dev/null and b/_module/ncs/comax_damred12.ncs differ diff --git a/_module/ncs/comax_damred2.ncs b/_module/ncs/comax_damred2.ncs new file mode 100644 index 0000000..a7c72e1 Binary files /dev/null and b/_module/ncs/comax_damred2.ncs differ diff --git a/_module/ncs/comax_reached.ncs b/_module/ncs/comax_reached.ncs new file mode 100644 index 0000000..bddbcdd Binary files /dev/null and b/_module/ncs/comax_reached.ncs differ diff --git a/_module/ncs/compare_xp.ncs b/_module/ncs/compare_xp.ncs new file mode 100644 index 0000000..e88e147 Binary files /dev/null and b/_module/ncs/compare_xp.ncs differ diff --git a/_module/ncs/con_imbue.ncs b/_module/ncs/con_imbue.ncs new file mode 100644 index 0000000..87d2034 Binary files /dev/null and b/_module/ncs/con_imbue.ncs differ diff --git a/_module/ncs/conc_imbue.ncs b/_module/ncs/conc_imbue.ncs new file mode 100644 index 0000000..038f0b6 Binary files /dev/null and b/_module/ncs/conc_imbue.ncs differ diff --git a/_module/ncs/cont_cryst.ncs b/_module/ncs/cont_cryst.ncs new file mode 100644 index 0000000..752ed9f Binary files /dev/null and b/_module/ncs/cont_cryst.ncs differ diff --git a/_module/ncs/cont_fount.ncs b/_module/ncs/cont_fount.ncs new file mode 100644 index 0000000..d72a0d0 Binary files /dev/null and b/_module/ncs/cont_fount.ncs differ diff --git a/_module/ncs/cont_fount2.ncs b/_module/ncs/cont_fount2.ncs new file mode 100644 index 0000000..7da3b0b Binary files /dev/null and b/_module/ncs/cont_fount2.ncs differ diff --git a/_module/ncs/cont_pool.ncs b/_module/ncs/cont_pool.ncs new file mode 100644 index 0000000..06cc6e6 Binary files /dev/null and b/_module/ncs/cont_pool.ncs differ diff --git a/_module/ncs/cont_pool2.ncs b/_module/ncs/cont_pool2.ncs new file mode 100644 index 0000000..2e8b9a7 Binary files /dev/null and b/_module/ncs/cont_pool2.ncs differ diff --git a/_module/ncs/conv.ncs b/_module/ncs/conv.ncs new file mode 100644 index 0000000..3d0eb5a Binary files /dev/null and b/_module/ncs/conv.ncs differ diff --git a/_module/ncs/conv1.ncs b/_module/ncs/conv1.ncs new file mode 100644 index 0000000..0285077 Binary files /dev/null and b/_module/ncs/conv1.ncs differ diff --git a/_module/ncs/conv2.ncs b/_module/ncs/conv2.ncs new file mode 100644 index 0000000..19f8952 Binary files /dev/null and b/_module/ncs/conv2.ncs differ diff --git a/_module/ncs/conv3.ncs b/_module/ncs/conv3.ncs new file mode 100644 index 0000000..e270b10 Binary files /dev/null and b/_module/ncs/conv3.ncs differ diff --git a/_module/ncs/conv4.ncs b/_module/ncs/conv4.ncs new file mode 100644 index 0000000..110c2da Binary files /dev/null and b/_module/ncs/conv4.ncs differ diff --git a/_module/ncs/conv5.ncs b/_module/ncs/conv5.ncs new file mode 100644 index 0000000..89f67a6 Binary files /dev/null and b/_module/ncs/conv5.ncs differ diff --git a/_module/ncs/conv_store.ncs b/_module/ncs/conv_store.ncs new file mode 100644 index 0000000..38c53c4 Binary files /dev/null and b/_module/ncs/conv_store.ncs differ diff --git a/_module/ncs/copy_item.ncs b/_module/ncs/copy_item.ncs new file mode 100644 index 0000000..2ea4cad Binary files /dev/null and b/_module/ncs/copy_item.ncs differ diff --git a/_module/ncs/copy_item2.ncs b/_module/ncs/copy_item2.ncs new file mode 100644 index 0000000..33f72df Binary files /dev/null and b/_module/ncs/copy_item2.ncs differ diff --git a/_module/ncs/copy_item3.ncs b/_module/ncs/copy_item3.ncs new file mode 100644 index 0000000..9065793 Binary files /dev/null and b/_module/ncs/copy_item3.ncs differ diff --git a/_module/ncs/copy_item4.ncs b/_module/ncs/copy_item4.ncs new file mode 100644 index 0000000..7a07ab7 Binary files /dev/null and b/_module/ncs/copy_item4.ncs differ diff --git a/_module/ncs/cored1_1.ncs b/_module/ncs/cored1_1.ncs new file mode 100644 index 0000000..2166992 Binary files /dev/null and b/_module/ncs/cored1_1.ncs differ diff --git a/_module/ncs/cored1_12.ncs b/_module/ncs/cored1_12.ncs new file mode 100644 index 0000000..b24dffe Binary files /dev/null and b/_module/ncs/cored1_12.ncs differ diff --git a/_module/ncs/cored_0.ncs b/_module/ncs/cored_0.ncs new file mode 100644 index 0000000..f7a3262 Binary files /dev/null and b/_module/ncs/cored_0.ncs differ diff --git a/_module/ncs/cored_02.ncs b/_module/ncs/cored_02.ncs new file mode 100644 index 0000000..f2f54a2 Binary files /dev/null and b/_module/ncs/cored_02.ncs differ diff --git a/_module/ncs/cored_10.ncs b/_module/ncs/cored_10.ncs new file mode 100644 index 0000000..1501548 Binary files /dev/null and b/_module/ncs/cored_10.ncs differ diff --git a/_module/ncs/cored_11.ncs b/_module/ncs/cored_11.ncs new file mode 100644 index 0000000..d9581bc Binary files /dev/null and b/_module/ncs/cored_11.ncs differ diff --git a/_module/ncs/cored_12.ncs b/_module/ncs/cored_12.ncs new file mode 100644 index 0000000..c494f9f Binary files /dev/null and b/_module/ncs/cored_12.ncs differ diff --git a/_module/ncs/cored_2.ncs b/_module/ncs/cored_2.ncs new file mode 100644 index 0000000..fd90005 Binary files /dev/null and b/_module/ncs/cored_2.ncs differ diff --git a/_module/ncs/cored_22.ncs b/_module/ncs/cored_22.ncs new file mode 100644 index 0000000..72b565e Binary files /dev/null and b/_module/ncs/cored_22.ncs differ diff --git a/_module/ncs/cored_3.ncs b/_module/ncs/cored_3.ncs new file mode 100644 index 0000000..5dd0222 Binary files /dev/null and b/_module/ncs/cored_3.ncs differ diff --git a/_module/ncs/cored_32.ncs b/_module/ncs/cored_32.ncs new file mode 100644 index 0000000..ab44c41 Binary files /dev/null and b/_module/ncs/cored_32.ncs differ diff --git a/_module/ncs/cored_4.ncs b/_module/ncs/cored_4.ncs new file mode 100644 index 0000000..5cd6e83 Binary files /dev/null and b/_module/ncs/cored_4.ncs differ diff --git a/_module/ncs/cored_42.ncs b/_module/ncs/cored_42.ncs new file mode 100644 index 0000000..ddd7b6b Binary files /dev/null and b/_module/ncs/cored_42.ncs differ diff --git a/_module/ncs/cored_6.ncs b/_module/ncs/cored_6.ncs new file mode 100644 index 0000000..c932fa4 Binary files /dev/null and b/_module/ncs/cored_6.ncs differ diff --git a/_module/ncs/cored_62.ncs b/_module/ncs/cored_62.ncs new file mode 100644 index 0000000..24a355f Binary files /dev/null and b/_module/ncs/cored_62.ncs differ diff --git a/_module/ncs/cored_7.ncs b/_module/ncs/cored_7.ncs new file mode 100644 index 0000000..88bd161 Binary files /dev/null and b/_module/ncs/cored_7.ncs differ diff --git a/_module/ncs/cored_8.ncs b/_module/ncs/cored_8.ncs new file mode 100644 index 0000000..9babed8 Binary files /dev/null and b/_module/ncs/cored_8.ncs differ diff --git a/_module/ncs/cored_9.ncs b/_module/ncs/cored_9.ncs new file mode 100644 index 0000000..c7f6b63 Binary files /dev/null and b/_module/ncs/cored_9.ncs differ diff --git a/_module/ncs/craft_skill_up.ncs b/_module/ncs/craft_skill_up.ncs new file mode 100644 index 0000000..7fbcce6 Binary files /dev/null and b/_module/ncs/craft_skill_up.ncs differ diff --git a/_module/ncs/crash.ncs b/_module/ncs/crash.ncs new file mode 100644 index 0000000..d524091 Binary files /dev/null and b/_module/ncs/crash.ncs differ diff --git a/_module/ncs/create_apparel.ncs b/_module/ncs/create_apparel.ncs new file mode 100644 index 0000000..9f1f066 Binary files /dev/null and b/_module/ncs/create_apparel.ncs differ diff --git a/_module/ncs/create_asabi.ncs b/_module/ncs/create_asabi.ncs new file mode 100644 index 0000000..bde902f Binary files /dev/null and b/_module/ncs/create_asabi.ncs differ diff --git a/_module/ncs/create_bard0.ncs b/_module/ncs/create_bard0.ncs new file mode 100644 index 0000000..30a0fbf Binary files /dev/null and b/_module/ncs/create_bard0.ncs differ diff --git a/_module/ncs/create_bard1.ncs b/_module/ncs/create_bard1.ncs new file mode 100644 index 0000000..9b96aa8 Binary files /dev/null and b/_module/ncs/create_bard1.ncs differ diff --git a/_module/ncs/create_bard2.ncs b/_module/ncs/create_bard2.ncs new file mode 100644 index 0000000..10f5c52 Binary files /dev/null and b/_module/ncs/create_bard2.ncs differ diff --git a/_module/ncs/create_bard3.ncs b/_module/ncs/create_bard3.ncs new file mode 100644 index 0000000..fbbfdd1 Binary files /dev/null and b/_module/ncs/create_bard3.ncs differ diff --git a/_module/ncs/create_bard4.ncs b/_module/ncs/create_bard4.ncs new file mode 100644 index 0000000..0193f31 Binary files /dev/null and b/_module/ncs/create_bard4.ncs differ diff --git a/_module/ncs/create_bard5.ncs b/_module/ncs/create_bard5.ncs new file mode 100644 index 0000000..45df70f Binary files /dev/null and b/_module/ncs/create_bard5.ncs differ diff --git a/_module/ncs/create_bard6.ncs b/_module/ncs/create_bard6.ncs new file mode 100644 index 0000000..6aca896 Binary files /dev/null and b/_module/ncs/create_bard6.ncs differ diff --git a/_module/ncs/create_books.ncs b/_module/ncs/create_books.ncs new file mode 100644 index 0000000..24a6e28 Binary files /dev/null and b/_module/ncs/create_books.ncs differ diff --git a/_module/ncs/create_c0.ncs b/_module/ncs/create_c0.ncs new file mode 100644 index 0000000..ae5cfb7 Binary files /dev/null and b/_module/ncs/create_c0.ncs differ diff --git a/_module/ncs/create_c1.ncs b/_module/ncs/create_c1.ncs new file mode 100644 index 0000000..fed1244 Binary files /dev/null and b/_module/ncs/create_c1.ncs differ diff --git a/_module/ncs/create_c2.ncs b/_module/ncs/create_c2.ncs new file mode 100644 index 0000000..2aa09b3 Binary files /dev/null and b/_module/ncs/create_c2.ncs differ diff --git a/_module/ncs/create_c3.ncs b/_module/ncs/create_c3.ncs new file mode 100644 index 0000000..8510047 Binary files /dev/null and b/_module/ncs/create_c3.ncs differ diff --git a/_module/ncs/create_c4.ncs b/_module/ncs/create_c4.ncs new file mode 100644 index 0000000..024c2f7 Binary files /dev/null and b/_module/ncs/create_c4.ncs differ diff --git a/_module/ncs/create_c5.ncs b/_module/ncs/create_c5.ncs new file mode 100644 index 0000000..90e47bc Binary files /dev/null and b/_module/ncs/create_c5.ncs differ diff --git a/_module/ncs/create_c6.ncs b/_module/ncs/create_c6.ncs new file mode 100644 index 0000000..0dcf5c3 Binary files /dev/null and b/_module/ncs/create_c6.ncs differ diff --git a/_module/ncs/create_c7.ncs b/_module/ncs/create_c7.ncs new file mode 100644 index 0000000..e4d0e95 Binary files /dev/null and b/_module/ncs/create_c7.ncs differ diff --git a/_module/ncs/create_c8.ncs b/_module/ncs/create_c8.ncs new file mode 100644 index 0000000..8315ceb Binary files /dev/null and b/_module/ncs/create_c8.ncs differ diff --git a/_module/ncs/create_c9.ncs b/_module/ncs/create_c9.ncs new file mode 100644 index 0000000..2d4cee0 Binary files /dev/null and b/_module/ncs/create_c9.ncs differ diff --git a/_module/ncs/create_capp.ncs b/_module/ncs/create_capp.ncs new file mode 100644 index 0000000..3299348 Binary files /dev/null and b/_module/ncs/create_capp.ncs differ diff --git a/_module/ncs/create_carmor.ncs b/_module/ncs/create_carmor.ncs new file mode 100644 index 0000000..fe6ad74 Binary files /dev/null and b/_module/ncs/create_carmor.ncs differ diff --git a/_module/ncs/create_cdye.ncs b/_module/ncs/create_cdye.ncs new file mode 100644 index 0000000..34ce448 Binary files /dev/null and b/_module/ncs/create_cdye.ncs differ diff --git a/_module/ncs/create_cep.ncs b/_module/ncs/create_cep.ncs new file mode 100644 index 0000000..005fc39 Binary files /dev/null and b/_module/ncs/create_cep.ncs differ diff --git a/_module/ncs/create_cgm.ncs b/_module/ncs/create_cgm.ncs new file mode 100644 index 0000000..20c0448 Binary files /dev/null and b/_module/ncs/create_cgm.ncs differ diff --git a/_module/ncs/create_craft.ncs b/_module/ncs/create_craft.ncs new file mode 100644 index 0000000..22b7178 Binary files /dev/null and b/_module/ncs/create_craft.ncs differ diff --git a/_module/ncs/create_crafts.ncs b/_module/ncs/create_crafts.ncs new file mode 100644 index 0000000..177efe3 Binary files /dev/null and b/_module/ncs/create_crafts.ncs differ diff --git a/_module/ncs/create_crange.ncs b/_module/ncs/create_crange.ncs new file mode 100644 index 0000000..3868f99 Binary files /dev/null and b/_module/ncs/create_crange.ncs differ diff --git a/_module/ncs/create_druid0.ncs b/_module/ncs/create_druid0.ncs new file mode 100644 index 0000000..1302fa4 Binary files /dev/null and b/_module/ncs/create_druid0.ncs differ diff --git a/_module/ncs/create_druid1.ncs b/_module/ncs/create_druid1.ncs new file mode 100644 index 0000000..028c740 Binary files /dev/null and b/_module/ncs/create_druid1.ncs differ diff --git a/_module/ncs/create_druid2.ncs b/_module/ncs/create_druid2.ncs new file mode 100644 index 0000000..14c8736 Binary files /dev/null and b/_module/ncs/create_druid2.ncs differ diff --git a/_module/ncs/create_druid3.ncs b/_module/ncs/create_druid3.ncs new file mode 100644 index 0000000..12c97d8 Binary files /dev/null and b/_module/ncs/create_druid3.ncs differ diff --git a/_module/ncs/create_druid4.ncs b/_module/ncs/create_druid4.ncs new file mode 100644 index 0000000..9d61783 Binary files /dev/null and b/_module/ncs/create_druid4.ncs differ diff --git a/_module/ncs/create_druid5.ncs b/_module/ncs/create_druid5.ncs new file mode 100644 index 0000000..fa4229d Binary files /dev/null and b/_module/ncs/create_druid5.ncs differ diff --git a/_module/ncs/create_druid6.ncs b/_module/ncs/create_druid6.ncs new file mode 100644 index 0000000..57a69a1 Binary files /dev/null and b/_module/ncs/create_druid6.ncs differ diff --git a/_module/ncs/create_druid7.ncs b/_module/ncs/create_druid7.ncs new file mode 100644 index 0000000..96068af Binary files /dev/null and b/_module/ncs/create_druid7.ncs differ diff --git a/_module/ncs/create_druid8.ncs b/_module/ncs/create_druid8.ncs new file mode 100644 index 0000000..49a1ea5 Binary files /dev/null and b/_module/ncs/create_druid8.ncs differ diff --git a/_module/ncs/create_druid9.ncs b/_module/ncs/create_druid9.ncs new file mode 100644 index 0000000..c459b9d Binary files /dev/null and b/_module/ncs/create_druid9.ncs differ diff --git a/_module/ncs/create_dye.ncs b/_module/ncs/create_dye.ncs new file mode 100644 index 0000000..8c9d726 Binary files /dev/null and b/_module/ncs/create_dye.ncs differ diff --git a/_module/ncs/create_enserric.ncs b/_module/ncs/create_enserric.ncs new file mode 100644 index 0000000..bc560f5 Binary files /dev/null and b/_module/ncs/create_enserric.ncs differ diff --git a/_module/ncs/create_exomelee.ncs b/_module/ncs/create_exomelee.ncs new file mode 100644 index 0000000..25f5437 Binary files /dev/null and b/_module/ncs/create_exomelee.ncs differ diff --git a/_module/ncs/create_fence.ncs b/_module/ncs/create_fence.ncs new file mode 100644 index 0000000..c82c478 Binary files /dev/null and b/_module/ncs/create_fence.ncs differ diff --git a/_module/ncs/create_gems.ncs b/_module/ncs/create_gems.ncs new file mode 100644 index 0000000..3c4f8ba Binary files /dev/null and b/_module/ncs/create_gems.ncs differ diff --git a/_module/ncs/create_gen1.ncs b/_module/ncs/create_gen1.ncs new file mode 100644 index 0000000..b718a97 Binary files /dev/null and b/_module/ncs/create_gen1.ncs differ diff --git a/_module/ncs/create_gen2.ncs b/_module/ncs/create_gen2.ncs new file mode 100644 index 0000000..9fe9161 Binary files /dev/null and b/_module/ncs/create_gen2.ncs differ diff --git a/_module/ncs/create_genie.ncs b/_module/ncs/create_genie.ncs new file mode 100644 index 0000000..83154fe Binary files /dev/null and b/_module/ncs/create_genie.ncs differ diff --git a/_module/ncs/create_genmelee.ncs b/_module/ncs/create_genmelee.ncs new file mode 100644 index 0000000..cb49f10 Binary files /dev/null and b/_module/ncs/create_genmelee.ncs differ diff --git a/_module/ncs/create_jewelry.ncs b/_module/ncs/create_jewelry.ncs new file mode 100644 index 0000000..265f023 Binary files /dev/null and b/_module/ncs/create_jewelry.ncs differ diff --git a/_module/ncs/create_kat.ncs b/_module/ncs/create_kat.ncs new file mode 100644 index 0000000..bc22ca6 Binary files /dev/null and b/_module/ncs/create_kat.ncs differ diff --git a/_module/ncs/create_kit.ncs b/_module/ncs/create_kit.ncs new file mode 100644 index 0000000..4ca07e1 Binary files /dev/null and b/_module/ncs/create_kit.ncs differ diff --git a/_module/ncs/create_ldye.ncs b/_module/ncs/create_ldye.ncs new file mode 100644 index 0000000..70ef544 Binary files /dev/null and b/_module/ncs/create_ldye.ncs differ diff --git a/_module/ncs/create_mage1.ncs b/_module/ncs/create_mage1.ncs new file mode 100644 index 0000000..06950d5 Binary files /dev/null and b/_module/ncs/create_mage1.ncs differ diff --git a/_module/ncs/create_mage2.ncs b/_module/ncs/create_mage2.ncs new file mode 100644 index 0000000..91c99d9 Binary files /dev/null and b/_module/ncs/create_mage2.ncs differ diff --git a/_module/ncs/create_mage3.ncs b/_module/ncs/create_mage3.ncs new file mode 100644 index 0000000..3c02473 Binary files /dev/null and b/_module/ncs/create_mage3.ncs differ diff --git a/_module/ncs/create_mage4.ncs b/_module/ncs/create_mage4.ncs new file mode 100644 index 0000000..5c82cac Binary files /dev/null and b/_module/ncs/create_mage4.ncs differ diff --git a/_module/ncs/create_mage5.ncs b/_module/ncs/create_mage5.ncs new file mode 100644 index 0000000..27fdb2a Binary files /dev/null and b/_module/ncs/create_mage5.ncs differ diff --git a/_module/ncs/create_mage6.ncs b/_module/ncs/create_mage6.ncs new file mode 100644 index 0000000..663fcc6 Binary files /dev/null and b/_module/ncs/create_mage6.ncs differ diff --git a/_module/ncs/create_mage7.ncs b/_module/ncs/create_mage7.ncs new file mode 100644 index 0000000..56e729c Binary files /dev/null and b/_module/ncs/create_mage7.ncs differ diff --git a/_module/ncs/create_mage8.ncs b/_module/ncs/create_mage8.ncs new file mode 100644 index 0000000..bdde70e Binary files /dev/null and b/_module/ncs/create_mage8.ncs differ diff --git a/_module/ncs/create_mage9.ncs b/_module/ncs/create_mage9.ncs new file mode 100644 index 0000000..e6ff0c5 Binary files /dev/null and b/_module/ncs/create_mage9.ncs differ diff --git a/_module/ncs/create_mdye.ncs b/_module/ncs/create_mdye.ncs new file mode 100644 index 0000000..09cefab Binary files /dev/null and b/_module/ncs/create_mdye.ncs differ diff --git a/_module/ncs/create_mush.ncs b/_module/ncs/create_mush.ncs new file mode 100644 index 0000000..1edd3b1 Binary files /dev/null and b/_module/ncs/create_mush.ncs differ diff --git a/_module/ncs/create_nat1.ncs b/_module/ncs/create_nat1.ncs new file mode 100644 index 0000000..c0a3d4a Binary files /dev/null and b/_module/ncs/create_nat1.ncs differ diff --git a/_module/ncs/create_nat2.ncs b/_module/ncs/create_nat2.ncs new file mode 100644 index 0000000..ba6c18c Binary files /dev/null and b/_module/ncs/create_nat2.ncs differ diff --git a/_module/ncs/create_nat3.ncs b/_module/ncs/create_nat3.ncs new file mode 100644 index 0000000..1b98fae Binary files /dev/null and b/_module/ncs/create_nat3.ncs differ diff --git a/_module/ncs/create_nat4.ncs b/_module/ncs/create_nat4.ncs new file mode 100644 index 0000000..ac63fc1 Binary files /dev/null and b/_module/ncs/create_nat4.ncs differ diff --git a/_module/ncs/create_nat5.ncs b/_module/ncs/create_nat5.ncs new file mode 100644 index 0000000..ee6e19e Binary files /dev/null and b/_module/ncs/create_nat5.ncs differ diff --git a/_module/ncs/create_nat6.ncs b/_module/ncs/create_nat6.ncs new file mode 100644 index 0000000..201c544 Binary files /dev/null and b/_module/ncs/create_nat6.ncs differ diff --git a/_module/ncs/create_pal1.ncs b/_module/ncs/create_pal1.ncs new file mode 100644 index 0000000..90dc9b3 Binary files /dev/null and b/_module/ncs/create_pal1.ncs differ diff --git a/_module/ncs/create_pal2.ncs b/_module/ncs/create_pal2.ncs new file mode 100644 index 0000000..48a74f2 Binary files /dev/null and b/_module/ncs/create_pal2.ncs differ diff --git a/_module/ncs/create_pal3.ncs b/_module/ncs/create_pal3.ncs new file mode 100644 index 0000000..77ff403 Binary files /dev/null and b/_module/ncs/create_pal3.ncs differ diff --git a/_module/ncs/create_pal4.ncs b/_module/ncs/create_pal4.ncs new file mode 100644 index 0000000..f12e004 Binary files /dev/null and b/_module/ncs/create_pal4.ncs differ diff --git a/_module/ncs/create_plot.ncs b/_module/ncs/create_plot.ncs new file mode 100644 index 0000000..03bd68f Binary files /dev/null and b/_module/ncs/create_plot.ncs differ diff --git a/_module/ncs/create_pots.ncs b/_module/ncs/create_pots.ncs new file mode 100644 index 0000000..2557ce8 Binary files /dev/null and b/_module/ncs/create_pots.ncs differ diff --git a/_module/ncs/create_ra1.ncs b/_module/ncs/create_ra1.ncs new file mode 100644 index 0000000..bfff81c Binary files /dev/null and b/_module/ncs/create_ra1.ncs differ diff --git a/_module/ncs/create_ra2.ncs b/_module/ncs/create_ra2.ncs new file mode 100644 index 0000000..1c3284c Binary files /dev/null and b/_module/ncs/create_ra2.ncs differ diff --git a/_module/ncs/create_ra3.ncs b/_module/ncs/create_ra3.ncs new file mode 100644 index 0000000..d8f34bb Binary files /dev/null and b/_module/ncs/create_ra3.ncs differ diff --git a/_module/ncs/create_ra4.ncs b/_module/ncs/create_ra4.ncs new file mode 100644 index 0000000..5aa202f Binary files /dev/null and b/_module/ncs/create_ra4.ncs differ diff --git a/_module/ncs/create_ranged.ncs b/_module/ncs/create_ranged.ncs new file mode 100644 index 0000000..02e3ad3 Binary files /dev/null and b/_module/ncs/create_ranged.ncs differ diff --git a/_module/ncs/create_shadow.ncs b/_module/ncs/create_shadow.ncs new file mode 100644 index 0000000..537075d Binary files /dev/null and b/_module/ncs/create_shadow.ncs differ diff --git a/_module/ncs/create_spec1.ncs b/_module/ncs/create_spec1.ncs new file mode 100644 index 0000000..9172161 Binary files /dev/null and b/_module/ncs/create_spec1.ncs differ diff --git a/_module/ncs/create_spec2.ncs b/_module/ncs/create_spec2.ncs new file mode 100644 index 0000000..aaaccaf Binary files /dev/null and b/_module/ncs/create_spec2.ncs differ diff --git a/_module/ncs/create_spec3.ncs b/_module/ncs/create_spec3.ncs new file mode 100644 index 0000000..2db2c9b Binary files /dev/null and b/_module/ncs/create_spec3.ncs differ diff --git a/_module/ncs/create_staves.ncs b/_module/ncs/create_staves.ncs new file mode 100644 index 0000000..17cb49e Binary files /dev/null and b/_module/ncs/create_staves.ncs differ diff --git a/_module/ncs/create_stdarmor.ncs b/_module/ncs/create_stdarmor.ncs new file mode 100644 index 0000000..7bb8844 Binary files /dev/null and b/_module/ncs/create_stdarmor.ncs differ diff --git a/_module/ncs/create_stdhelm.ncs b/_module/ncs/create_stdhelm.ncs new file mode 100644 index 0000000..b5257b3 Binary files /dev/null and b/_module/ncs/create_stdhelm.ncs differ diff --git a/_module/ncs/create_temple.ncs b/_module/ncs/create_temple.ncs new file mode 100644 index 0000000..aad3b8f Binary files /dev/null and b/_module/ncs/create_temple.ncs differ diff --git a/_module/ncs/create_temple1.ncs b/_module/ncs/create_temple1.ncs new file mode 100644 index 0000000..379ad7e Binary files /dev/null and b/_module/ncs/create_temple1.ncs differ diff --git a/_module/ncs/create_temple2.ncs b/_module/ncs/create_temple2.ncs new file mode 100644 index 0000000..859419d Binary files /dev/null and b/_module/ncs/create_temple2.ncs differ diff --git a/_module/ncs/create_temple3.ncs b/_module/ncs/create_temple3.ncs new file mode 100644 index 0000000..0558543 Binary files /dev/null and b/_module/ncs/create_temple3.ncs differ diff --git a/_module/ncs/create_temple4.ncs b/_module/ncs/create_temple4.ncs new file mode 100644 index 0000000..2d75632 Binary files /dev/null and b/_module/ncs/create_temple4.ncs differ diff --git a/_module/ncs/create_temple5.ncs b/_module/ncs/create_temple5.ncs new file mode 100644 index 0000000..1a15dac Binary files /dev/null and b/_module/ncs/create_temple5.ncs differ diff --git a/_module/ncs/create_temple6.ncs b/_module/ncs/create_temple6.ncs new file mode 100644 index 0000000..2695e11 Binary files /dev/null and b/_module/ncs/create_temple6.ncs differ diff --git a/_module/ncs/create_thief1.ncs b/_module/ncs/create_thief1.ncs new file mode 100644 index 0000000..157c094 Binary files /dev/null and b/_module/ncs/create_thief1.ncs differ diff --git a/_module/ncs/create_thief2.ncs b/_module/ncs/create_thief2.ncs new file mode 100644 index 0000000..2b2f064 Binary files /dev/null and b/_module/ncs/create_thief2.ncs differ diff --git a/_module/ncs/create_thief3.ncs b/_module/ncs/create_thief3.ncs new file mode 100644 index 0000000..669e9b2 Binary files /dev/null and b/_module/ncs/create_thief3.ncs differ diff --git a/_module/ncs/create_thief4.ncs b/_module/ncs/create_thief4.ncs new file mode 100644 index 0000000..ade8d23 Binary files /dev/null and b/_module/ncs/create_thief4.ncs differ diff --git a/_module/ncs/create_thief5.ncs b/_module/ncs/create_thief5.ncs new file mode 100644 index 0000000..83f378f Binary files /dev/null and b/_module/ncs/create_thief5.ncs differ diff --git a/_module/ncs/create_thief6.ncs b/_module/ncs/create_thief6.ncs new file mode 100644 index 0000000..73f4d93 Binary files /dev/null and b/_module/ncs/create_thief6.ncs differ diff --git a/_module/ncs/create_thief7.ncs b/_module/ncs/create_thief7.ncs new file mode 100644 index 0000000..789584b Binary files /dev/null and b/_module/ncs/create_thief7.ncs differ diff --git a/_module/ncs/create_thief8.ncs b/_module/ncs/create_thief8.ncs new file mode 100644 index 0000000..ab37e61 Binary files /dev/null and b/_module/ncs/create_thief8.ncs differ diff --git a/_module/ncs/create_tut.ncs b/_module/ncs/create_tut.ncs new file mode 100644 index 0000000..201fe29 Binary files /dev/null and b/_module/ncs/create_tut.ncs differ diff --git a/_module/ncs/create_weap1.ncs b/_module/ncs/create_weap1.ncs new file mode 100644 index 0000000..d011fc2 Binary files /dev/null and b/_module/ncs/create_weap1.ncs differ diff --git a/_module/ncs/create_weap2.ncs b/_module/ncs/create_weap2.ncs new file mode 100644 index 0000000..37936e2 Binary files /dev/null and b/_module/ncs/create_weap2.ncs differ diff --git a/_module/ncs/create_weap3.ncs b/_module/ncs/create_weap3.ncs new file mode 100644 index 0000000..83c2352 Binary files /dev/null and b/_module/ncs/create_weap3.ncs differ diff --git a/_module/ncs/create_weap4.ncs b/_module/ncs/create_weap4.ncs new file mode 100644 index 0000000..7dc76ae Binary files /dev/null and b/_module/ncs/create_weap4.ncs differ diff --git a/_module/ncs/create_weap5.ncs b/_module/ncs/create_weap5.ncs new file mode 100644 index 0000000..7ce6f46 Binary files /dev/null and b/_module/ncs/create_weap5.ncs differ diff --git a/_module/ncs/create_weap6.ncs b/_module/ncs/create_weap6.ncs new file mode 100644 index 0000000..9388c1b Binary files /dev/null and b/_module/ncs/create_weap6.ncs differ diff --git a/_module/ncs/create_weap7.ncs b/_module/ncs/create_weap7.ncs new file mode 100644 index 0000000..b832507 Binary files /dev/null and b/_module/ncs/create_weap7.ncs differ diff --git a/_module/ncs/create_weap8.ncs b/_module/ncs/create_weap8.ncs new file mode 100644 index 0000000..7bd2be5 Binary files /dev/null and b/_module/ncs/create_weap8.ncs differ diff --git a/_module/ncs/create_weap9.ncs b/_module/ncs/create_weap9.ncs new file mode 100644 index 0000000..8cb5275 Binary files /dev/null and b/_module/ncs/create_weap9.ncs differ diff --git a/_module/ncs/create_ws0.ncs b/_module/ncs/create_ws0.ncs new file mode 100644 index 0000000..f3aa67f Binary files /dev/null and b/_module/ncs/create_ws0.ncs differ diff --git a/_module/ncs/create_ws1.ncs b/_module/ncs/create_ws1.ncs new file mode 100644 index 0000000..f66fe0e Binary files /dev/null and b/_module/ncs/create_ws1.ncs differ diff --git a/_module/ncs/create_ws2.ncs b/_module/ncs/create_ws2.ncs new file mode 100644 index 0000000..9a7a582 Binary files /dev/null and b/_module/ncs/create_ws2.ncs differ diff --git a/_module/ncs/create_ws3.ncs b/_module/ncs/create_ws3.ncs new file mode 100644 index 0000000..7d84783 Binary files /dev/null and b/_module/ncs/create_ws3.ncs differ diff --git a/_module/ncs/create_ws4.ncs b/_module/ncs/create_ws4.ncs new file mode 100644 index 0000000..258d880 Binary files /dev/null and b/_module/ncs/create_ws4.ncs differ diff --git a/_module/ncs/create_ws5.ncs b/_module/ncs/create_ws5.ncs new file mode 100644 index 0000000..ba96f8b Binary files /dev/null and b/_module/ncs/create_ws5.ncs differ diff --git a/_module/ncs/create_ws6.ncs b/_module/ncs/create_ws6.ncs new file mode 100644 index 0000000..f32022d Binary files /dev/null and b/_module/ncs/create_ws6.ncs differ diff --git a/_module/ncs/create_ws7.ncs b/_module/ncs/create_ws7.ncs new file mode 100644 index 0000000..d8ae2bd Binary files /dev/null and b/_module/ncs/create_ws7.ncs differ diff --git a/_module/ncs/create_ws8.ncs b/_module/ncs/create_ws8.ncs new file mode 100644 index 0000000..990d65d Binary files /dev/null and b/_module/ncs/create_ws8.ncs differ diff --git a/_module/ncs/create_ws9.ncs b/_module/ncs/create_ws9.ncs new file mode 100644 index 0000000..1cd11e1 Binary files /dev/null and b/_module/ncs/create_ws9.ncs differ diff --git a/_module/ncs/crit_imbue.ncs b/_module/ncs/crit_imbue.ncs new file mode 100644 index 0000000..0418761 Binary files /dev/null and b/_module/ncs/crit_imbue.ncs differ diff --git a/_module/ncs/cryst_off.ncs b/_module/ncs/cryst_off.ncs new file mode 100644 index 0000000..b0c407c Binary files /dev/null and b/_module/ncs/cryst_off.ncs differ diff --git a/_module/ncs/cryst_on.ncs b/_module/ncs/cryst_on.ncs new file mode 100644 index 0000000..3cd4656 Binary files /dev/null and b/_module/ncs/cryst_on.ncs differ diff --git a/_module/ncs/csc_041a.ncs b/_module/ncs/csc_041a.ncs new file mode 100644 index 0000000..21343b9 Binary files /dev/null and b/_module/ncs/csc_041a.ncs differ diff --git a/_module/ncs/cust_weap.ncs b/_module/ncs/cust_weap.ncs new file mode 100644 index 0000000..e3254fe Binary files /dev/null and b/_module/ncs/cust_weap.ncs differ diff --git a/_module/ncs/custom_blocked.ncs b/_module/ncs/custom_blocked.ncs new file mode 100644 index 0000000..6f4718b Binary files /dev/null and b/_module/ncs/custom_blocked.ncs differ diff --git a/_module/ncs/custom_combatend.ncs b/_module/ncs/custom_combatend.ncs new file mode 100644 index 0000000..28d9917 Binary files /dev/null and b/_module/ncs/custom_combatend.ncs differ diff --git a/_module/ncs/custom_conv.ncs b/_module/ncs/custom_conv.ncs new file mode 100644 index 0000000..31a8351 Binary files /dev/null and b/_module/ncs/custom_conv.ncs differ diff --git a/_module/ncs/custom_damage.ncs b/_module/ncs/custom_damage.ncs new file mode 100644 index 0000000..f96ef6f Binary files /dev/null and b/_module/ncs/custom_damage.ncs differ diff --git a/_module/ncs/custom_death.ncs b/_module/ncs/custom_death.ncs new file mode 100644 index 0000000..ffaafd2 Binary files /dev/null and b/_module/ncs/custom_death.ncs differ diff --git a/_module/ncs/custom_disturbed.ncs b/_module/ncs/custom_disturbed.ncs new file mode 100644 index 0000000..18238c0 Binary files /dev/null and b/_module/ncs/custom_disturbed.ncs differ diff --git a/_module/ncs/custom_heartbeat.ncs b/_module/ncs/custom_heartbeat.ncs new file mode 100644 index 0000000..ca36ef3 Binary files /dev/null and b/_module/ncs/custom_heartbeat.ncs differ diff --git a/_module/ncs/custom_percep.ncs b/_module/ncs/custom_percep.ncs new file mode 100644 index 0000000..57a2b00 Binary files /dev/null and b/_module/ncs/custom_percep.ncs differ diff --git a/_module/ncs/custom_physicald.ncs b/_module/ncs/custom_physicald.ncs new file mode 100644 index 0000000..7e75910 Binary files /dev/null and b/_module/ncs/custom_physicald.ncs differ diff --git a/_module/ncs/custom_rested.ncs b/_module/ncs/custom_rested.ncs new file mode 100644 index 0000000..b17bd7a Binary files /dev/null and b/_module/ncs/custom_rested.ncs differ diff --git a/_module/ncs/custom_spawn.ncs b/_module/ncs/custom_spawn.ncs new file mode 100644 index 0000000..a525ac6 Binary files /dev/null and b/_module/ncs/custom_spawn.ncs differ diff --git a/_module/ncs/custom_spellcast.ncs b/_module/ncs/custom_spellcast.ncs new file mode 100644 index 0000000..8709756 Binary files /dev/null and b/_module/ncs/custom_spellcast.ncs differ diff --git a/_module/ncs/custom_userdef.ncs b/_module/ncs/custom_userdef.ncs new file mode 100644 index 0000000..5af5cd6 Binary files /dev/null and b/_module/ncs/custom_userdef.ncs differ diff --git a/_module/ncs/cut_test1.ncs b/_module/ncs/cut_test1.ncs new file mode 100644 index 0000000..87459c8 Binary files /dev/null and b/_module/ncs/cut_test1.ncs differ diff --git a/_module/ncs/cut_test2.ncs b/_module/ncs/cut_test2.ncs new file mode 100644 index 0000000..af7e631 Binary files /dev/null and b/_module/ncs/cut_test2.ncs differ diff --git a/_module/ncs/cut_test3.ncs b/_module/ncs/cut_test3.ncs new file mode 100644 index 0000000..4a5dca2 Binary files /dev/null and b/_module/ncs/cut_test3.ncs differ diff --git a/_module/ncs/cut_test4.ncs b/_module/ncs/cut_test4.ncs new file mode 100644 index 0000000..1ba3ec3 Binary files /dev/null and b/_module/ncs/cut_test4.ncs differ diff --git a/_module/ncs/cut_test5.ncs b/_module/ncs/cut_test5.ncs new file mode 100644 index 0000000..4373c1c Binary files /dev/null and b/_module/ncs/cut_test5.ncs differ diff --git a/_module/ncs/cut_test6.ncs b/_module/ncs/cut_test6.ncs new file mode 100644 index 0000000..6196e0d Binary files /dev/null and b/_module/ncs/cut_test6.ncs differ diff --git a/_module/ncs/cutscene_test.ncs b/_module/ncs/cutscene_test.ncs new file mode 100644 index 0000000..213fbc1 Binary files /dev/null and b/_module/ncs/cutscene_test.ncs differ diff --git a/_module/ncs/d2c.ncs b/_module/ncs/d2c.ncs new file mode 100644 index 0000000..b697ed5 Binary files /dev/null and b/_module/ncs/d2c.ncs differ diff --git a/_module/ncs/d2cd.ncs b/_module/ncs/d2cd.ncs new file mode 100644 index 0000000..eba49af Binary files /dev/null and b/_module/ncs/d2cd.ncs differ diff --git a/_module/ncs/d2cde.ncs b/_module/ncs/d2cde.ncs new file mode 100644 index 0000000..4e13d3f Binary files /dev/null and b/_module/ncs/d2cde.ncs differ diff --git a/_module/ncs/d2cdef.ncs b/_module/ncs/d2cdef.ncs new file mode 100644 index 0000000..43ae19a Binary files /dev/null and b/_module/ncs/d2cdef.ncs differ diff --git a/_module/ncs/damned_w1.ncs b/_module/ncs/damned_w1.ncs new file mode 100644 index 0000000..f002fe3 Binary files /dev/null and b/_module/ncs/damned_w1.ncs differ diff --git a/_module/ncs/damned_w2.ncs b/_module/ncs/damned_w2.ncs new file mode 100644 index 0000000..aa801c8 Binary files /dev/null and b/_module/ncs/damned_w2.ncs differ diff --git a/_module/ncs/damned_w3.ncs b/_module/ncs/damned_w3.ncs new file mode 100644 index 0000000..21d435a Binary files /dev/null and b/_module/ncs/damned_w3.ncs differ diff --git a/_module/ncs/damned_w4.ncs b/_module/ncs/damned_w4.ncs new file mode 100644 index 0000000..e825c74 Binary files /dev/null and b/_module/ncs/damned_w4.ncs differ diff --git a/_module/ncs/damned_w5.ncs b/_module/ncs/damned_w5.ncs new file mode 100644 index 0000000..781e9a7 Binary files /dev/null and b/_module/ncs/damned_w5.ncs differ diff --git a/_module/ncs/damned_w6.ncs b/_module/ncs/damned_w6.ncs new file mode 100644 index 0000000..68a78c1 Binary files /dev/null and b/_module/ncs/damned_w6.ncs differ diff --git a/_module/ncs/damned_wc1.ncs b/_module/ncs/damned_wc1.ncs new file mode 100644 index 0000000..4082aa9 Binary files /dev/null and b/_module/ncs/damned_wc1.ncs differ diff --git a/_module/ncs/damned_wc2.ncs b/_module/ncs/damned_wc2.ncs new file mode 100644 index 0000000..f3e4e02 Binary files /dev/null and b/_module/ncs/damned_wc2.ncs differ diff --git a/_module/ncs/damned_wc3.ncs b/_module/ncs/damned_wc3.ncs new file mode 100644 index 0000000..0a43504 Binary files /dev/null and b/_module/ncs/damned_wc3.ncs differ diff --git a/_module/ncs/damned_wc4.ncs b/_module/ncs/damned_wc4.ncs new file mode 100644 index 0000000..5538a67 Binary files /dev/null and b/_module/ncs/damned_wc4.ncs differ diff --git a/_module/ncs/damned_wc5.ncs b/_module/ncs/damned_wc5.ncs new file mode 100644 index 0000000..bd79791 Binary files /dev/null and b/_module/ncs/damned_wc5.ncs differ diff --git a/_module/ncs/damned_wc6.ncs b/_module/ncs/damned_wc6.ncs new file mode 100644 index 0000000..f5e7005 Binary files /dev/null and b/_module/ncs/damned_wc6.ncs differ diff --git a/_module/ncs/damned_wz1.ncs b/_module/ncs/damned_wz1.ncs new file mode 100644 index 0000000..1d94ab3 Binary files /dev/null and b/_module/ncs/damned_wz1.ncs differ diff --git a/_module/ncs/damned_wz2.ncs b/_module/ncs/damned_wz2.ncs new file mode 100644 index 0000000..3d9eeb4 Binary files /dev/null and b/_module/ncs/damned_wz2.ncs differ diff --git a/_module/ncs/damned_wz3.ncs b/_module/ncs/damned_wz3.ncs new file mode 100644 index 0000000..7328317 Binary files /dev/null and b/_module/ncs/damned_wz3.ncs differ diff --git a/_module/ncs/damned_wz4.ncs b/_module/ncs/damned_wz4.ncs new file mode 100644 index 0000000..f93fb77 Binary files /dev/null and b/_module/ncs/damned_wz4.ncs differ diff --git a/_module/ncs/damned_wz5.ncs b/_module/ncs/damned_wz5.ncs new file mode 100644 index 0000000..b30434e Binary files /dev/null and b/_module/ncs/damned_wz5.ncs differ diff --git a/_module/ncs/damned_wz6.ncs b/_module/ncs/damned_wz6.ncs new file mode 100644 index 0000000..3629f06 Binary files /dev/null and b/_module/ncs/damned_wz6.ncs differ diff --git a/_module/ncs/dark_bet.ncs b/_module/ncs/dark_bet.ncs new file mode 100644 index 0000000..76243f2 Binary files /dev/null and b/_module/ncs/dark_bet.ncs differ diff --git a/_module/ncs/darkstarr_death.ncs b/_module/ncs/darkstarr_death.ncs new file mode 100644 index 0000000..2372602 Binary files /dev/null and b/_module/ncs/darkstarr_death.ncs differ diff --git a/_module/ncs/day_tester.ncs b/_module/ncs/day_tester.ncs new file mode 100644 index 0000000..99a0d4d Binary files /dev/null and b/_module/ncs/day_tester.ncs differ diff --git a/_module/ncs/dchamp_bet1.ncs b/_module/ncs/dchamp_bet1.ncs new file mode 100644 index 0000000..cc423e6 Binary files /dev/null and b/_module/ncs/dchamp_bet1.ncs differ diff --git a/_module/ncs/dchamp_bet10.ncs b/_module/ncs/dchamp_bet10.ncs new file mode 100644 index 0000000..db15ab7 Binary files /dev/null and b/_module/ncs/dchamp_bet10.ncs differ diff --git a/_module/ncs/dchamp_bet11.ncs b/_module/ncs/dchamp_bet11.ncs new file mode 100644 index 0000000..3b4ca3e Binary files /dev/null and b/_module/ncs/dchamp_bet11.ncs differ diff --git a/_module/ncs/dchamp_bet12.ncs b/_module/ncs/dchamp_bet12.ncs new file mode 100644 index 0000000..f0b58ed Binary files /dev/null and b/_module/ncs/dchamp_bet12.ncs differ diff --git a/_module/ncs/dchamp_bet2.ncs b/_module/ncs/dchamp_bet2.ncs new file mode 100644 index 0000000..4892709 Binary files /dev/null and b/_module/ncs/dchamp_bet2.ncs differ diff --git a/_module/ncs/dchamp_bet3.ncs b/_module/ncs/dchamp_bet3.ncs new file mode 100644 index 0000000..9ba817d Binary files /dev/null and b/_module/ncs/dchamp_bet3.ncs differ diff --git a/_module/ncs/dchamp_bet4.ncs b/_module/ncs/dchamp_bet4.ncs new file mode 100644 index 0000000..9247fde Binary files /dev/null and b/_module/ncs/dchamp_bet4.ncs differ diff --git a/_module/ncs/dchamp_bet5.ncs b/_module/ncs/dchamp_bet5.ncs new file mode 100644 index 0000000..047d4c6 Binary files /dev/null and b/_module/ncs/dchamp_bet5.ncs differ diff --git a/_module/ncs/dchamp_bet6.ncs b/_module/ncs/dchamp_bet6.ncs new file mode 100644 index 0000000..a01a76c Binary files /dev/null and b/_module/ncs/dchamp_bet6.ncs differ diff --git a/_module/ncs/dchamp_bet7.ncs b/_module/ncs/dchamp_bet7.ncs new file mode 100644 index 0000000..2e254b2 Binary files /dev/null and b/_module/ncs/dchamp_bet7.ncs differ diff --git a/_module/ncs/dchamp_bet8.ncs b/_module/ncs/dchamp_bet8.ncs new file mode 100644 index 0000000..dc6db84 Binary files /dev/null and b/_module/ncs/dchamp_bet8.ncs differ diff --git a/_module/ncs/dchamp_bet9.ncs b/_module/ncs/dchamp_bet9.ncs new file mode 100644 index 0000000..24d774a Binary files /dev/null and b/_module/ncs/dchamp_bet9.ncs differ diff --git a/_module/ncs/deactivator.ncs b/_module/ncs/deactivator.ncs new file mode 100644 index 0000000..659586a Binary files /dev/null and b/_module/ncs/deactivator.ncs differ diff --git a/_module/ncs/deactivator2.ncs b/_module/ncs/deactivator2.ncs new file mode 100644 index 0000000..ebe8f04 Binary files /dev/null and b/_module/ncs/deactivator2.ncs differ diff --git a/_module/ncs/deactivator_gate.ncs b/_module/ncs/deactivator_gate.ncs new file mode 100644 index 0000000..cf0c720 Binary files /dev/null and b/_module/ncs/deactivator_gate.ncs differ diff --git a/_module/ncs/death_conv.ncs b/_module/ncs/death_conv.ncs new file mode 100644 index 0000000..72ddcca Binary files /dev/null and b/_module/ncs/death_conv.ncs differ diff --git a/_module/ncs/death_imbue.ncs b/_module/ncs/death_imbue.ncs new file mode 100644 index 0000000..6d59dc5 Binary files /dev/null and b/_module/ncs/death_imbue.ncs differ diff --git a/_module/ncs/deathdeath.ncs b/_module/ncs/deathdeath.ncs new file mode 100644 index 0000000..6adaa37 Binary files /dev/null and b/_module/ncs/deathdeath.ncs differ diff --git a/_module/ncs/deathdeath1.ncs b/_module/ncs/deathdeath1.ncs new file mode 100644 index 0000000..d9b06bc Binary files /dev/null and b/_module/ncs/deathdeath1.ncs differ diff --git a/_module/ncs/deathdeath2.ncs b/_module/ncs/deathdeath2.ncs new file mode 100644 index 0000000..e997c55 Binary files /dev/null and b/_module/ncs/deathdeath2.ncs differ diff --git a/_module/ncs/deathdeath2a.ncs b/_module/ncs/deathdeath2a.ncs new file mode 100644 index 0000000..4b1774a Binary files /dev/null and b/_module/ncs/deathdeath2a.ncs differ diff --git a/_module/ncs/deathdeath3.ncs b/_module/ncs/deathdeath3.ncs new file mode 100644 index 0000000..1fb9660 Binary files /dev/null and b/_module/ncs/deathdeath3.ncs differ diff --git a/_module/ncs/deathpotion.ncs b/_module/ncs/deathpotion.ncs new file mode 100644 index 0000000..7077bf6 Binary files /dev/null and b/_module/ncs/deathpotion.ncs differ diff --git a/_module/ncs/debug_treasure.ncs b/_module/ncs/debug_treasure.ncs new file mode 100644 index 0000000..d9c02b7 Binary files /dev/null and b/_module/ncs/debug_treasure.ncs differ diff --git a/_module/ncs/debug_vars.ncs b/_module/ncs/debug_vars.ncs new file mode 100644 index 0000000..78b0c9d Binary files /dev/null and b/_module/ncs/debug_vars.ncs differ diff --git a/_module/ncs/debuggingrod.ncs b/_module/ncs/debuggingrod.ncs new file mode 100644 index 0000000..c08aec7 Binary files /dev/null and b/_module/ncs/debuggingrod.ncs differ diff --git a/_module/ncs/debugrod.ncs b/_module/ncs/debugrod.ncs new file mode 100644 index 0000000..e52a9e7 Binary files /dev/null and b/_module/ncs/debugrod.ncs differ diff --git a/_module/ncs/defscroll_shop.ncs b/_module/ncs/defscroll_shop.ncs new file mode 100644 index 0000000..442b030 Binary files /dev/null and b/_module/ncs/defscroll_shop.ncs differ diff --git a/_module/ncs/deity_abort.ncs b/_module/ncs/deity_abort.ncs new file mode 100644 index 0000000..c0f265c Binary files /dev/null and b/_module/ncs/deity_abort.ncs differ diff --git a/_module/ncs/deity_donate1.ncs b/_module/ncs/deity_donate1.ncs new file mode 100644 index 0000000..0c64245 Binary files /dev/null and b/_module/ncs/deity_donate1.ncs differ diff --git a/_module/ncs/deity_donate1a.ncs b/_module/ncs/deity_donate1a.ncs new file mode 100644 index 0000000..5c0a1f0 Binary files /dev/null and b/_module/ncs/deity_donate1a.ncs differ diff --git a/_module/ncs/deity_donate2.ncs b/_module/ncs/deity_donate2.ncs new file mode 100644 index 0000000..ec2a5f9 Binary files /dev/null and b/_module/ncs/deity_donate2.ncs differ diff --git a/_module/ncs/deity_donate3.ncs b/_module/ncs/deity_donate3.ncs new file mode 100644 index 0000000..2e5d544 Binary files /dev/null and b/_module/ncs/deity_donate3.ncs differ diff --git a/_module/ncs/deity_donate4.ncs b/_module/ncs/deity_donate4.ncs new file mode 100644 index 0000000..96788f2 Binary files /dev/null and b/_module/ncs/deity_donate4.ncs differ diff --git a/_module/ncs/deity_start.ncs b/_module/ncs/deity_start.ncs new file mode 100644 index 0000000..fd687c8 Binary files /dev/null and b/_module/ncs/deity_start.ncs differ diff --git a/_module/ncs/deity_token.ncs b/_module/ncs/deity_token.ncs new file mode 100644 index 0000000..0fd7d15 Binary files /dev/null and b/_module/ncs/deity_token.ncs differ diff --git a/_module/ncs/delevel.ncs b/_module/ncs/delevel.ncs new file mode 100644 index 0000000..aaf1c8b Binary files /dev/null and b/_module/ncs/delevel.ncs differ diff --git a/_module/ncs/dex_imbue.ncs b/_module/ncs/dex_imbue.ncs new file mode 100644 index 0000000..9e89c71 Binary files /dev/null and b/_module/ncs/dex_imbue.ncs differ diff --git a/_module/ncs/disc_imbue.ncs b/_module/ncs/disc_imbue.ncs new file mode 100644 index 0000000..0a59f58 Binary files /dev/null and b/_module/ncs/disc_imbue.ncs differ diff --git a/_module/ncs/div_got.ncs b/_module/ncs/div_got.ncs new file mode 100644 index 0000000..1eac3bc Binary files /dev/null and b/_module/ncs/div_got.ncs differ diff --git a/_module/ncs/divine_ammo.ncs b/_module/ncs/divine_ammo.ncs new file mode 100644 index 0000000..56339c5 Binary files /dev/null and b/_module/ncs/divine_ammo.ncs differ diff --git a/_module/ncs/divine_ammo2.ncs b/_module/ncs/divine_ammo2.ncs new file mode 100644 index 0000000..256ef9b Binary files /dev/null and b/_module/ncs/divine_ammo2.ncs differ diff --git a/_module/ncs/divine_imbue.ncs b/_module/ncs/divine_imbue.ncs new file mode 100644 index 0000000..a0b2516 Binary files /dev/null and b/_module/ncs/divine_imbue.ncs differ diff --git a/_module/ncs/divine_imbue_arm.ncs b/_module/ncs/divine_imbue_arm.ncs new file mode 100644 index 0000000..0e76547 Binary files /dev/null and b/_module/ncs/divine_imbue_arm.ncs differ diff --git a/_module/ncs/divine_ready.ncs b/_module/ncs/divine_ready.ncs new file mode 100644 index 0000000..6f5fb47 Binary files /dev/null and b/_module/ncs/divine_ready.ncs differ diff --git a/_module/ncs/divine_ready1.ncs b/_module/ncs/divine_ready1.ncs new file mode 100644 index 0000000..3c68886 Binary files /dev/null and b/_module/ncs/divine_ready1.ncs differ diff --git a/_module/ncs/divine_ready1a.ncs b/_module/ncs/divine_ready1a.ncs new file mode 100644 index 0000000..6822f49 Binary files /dev/null and b/_module/ncs/divine_ready1a.ncs differ diff --git a/_module/ncs/divine_ready1b.ncs b/_module/ncs/divine_ready1b.ncs new file mode 100644 index 0000000..75527d6 Binary files /dev/null and b/_module/ncs/divine_ready1b.ncs differ diff --git a/_module/ncs/divine_ready1c.ncs b/_module/ncs/divine_ready1c.ncs new file mode 100644 index 0000000..3c68886 Binary files /dev/null and b/_module/ncs/divine_ready1c.ncs differ diff --git a/_module/ncs/divset.ncs b/_module/ncs/divset.ncs new file mode 100644 index 0000000..25b4f0e Binary files /dev/null and b/_module/ncs/divset.ncs differ diff --git a/_module/ncs/dodge_imbue.ncs b/_module/ncs/dodge_imbue.ncs new file mode 100644 index 0000000..51cfcd2 Binary files /dev/null and b/_module/ncs/dodge_imbue.ncs differ diff --git a/_module/ncs/doeffect.ncs b/_module/ncs/doeffect.ncs new file mode 100644 index 0000000..ecb1c72 Binary files /dev/null and b/_module/ncs/doeffect.ncs differ diff --git a/_module/ncs/donation_recieve.ncs b/_module/ncs/donation_recieve.ncs new file mode 100644 index 0000000..c516f7c Binary files /dev/null and b/_module/ncs/donation_recieve.ncs differ diff --git a/_module/ncs/done_1.ncs b/_module/ncs/done_1.ncs new file mode 100644 index 0000000..09f9b4b Binary files /dev/null and b/_module/ncs/done_1.ncs differ diff --git a/_module/ncs/done_1a.ncs b/_module/ncs/done_1a.ncs new file mode 100644 index 0000000..1b707a2 Binary files /dev/null and b/_module/ncs/done_1a.ncs differ diff --git a/_module/ncs/door_msg.ncs b/_module/ncs/door_msg.ncs new file mode 100644 index 0000000..51d3df4 Binary files /dev/null and b/_module/ncs/door_msg.ncs differ diff --git a/_module/ncs/dred_imbue_1.ncs b/_module/ncs/dred_imbue_1.ncs new file mode 100644 index 0000000..a47dbce Binary files /dev/null and b/_module/ncs/dred_imbue_1.ncs differ diff --git a/_module/ncs/dred_imbue_1a.ncs b/_module/ncs/dred_imbue_1a.ncs new file mode 100644 index 0000000..e9344e1 Binary files /dev/null and b/_module/ncs/dred_imbue_1a.ncs differ diff --git a/_module/ncs/dred_imbue_2.ncs b/_module/ncs/dred_imbue_2.ncs new file mode 100644 index 0000000..52b7941 Binary files /dev/null and b/_module/ncs/dred_imbue_2.ncs differ diff --git a/_module/ncs/dred_imbue_2a.ncs b/_module/ncs/dred_imbue_2a.ncs new file mode 100644 index 0000000..75b1753 Binary files /dev/null and b/_module/ncs/dred_imbue_2a.ncs differ diff --git a/_module/ncs/dred_imbue_3.ncs b/_module/ncs/dred_imbue_3.ncs new file mode 100644 index 0000000..16d1fd2 Binary files /dev/null and b/_module/ncs/dred_imbue_3.ncs differ diff --git a/_module/ncs/dred_imbue_3a.ncs b/_module/ncs/dred_imbue_3a.ncs new file mode 100644 index 0000000..0f168ce Binary files /dev/null and b/_module/ncs/dred_imbue_3a.ncs differ diff --git a/_module/ncs/dred_imbue_4.ncs b/_module/ncs/dred_imbue_4.ncs new file mode 100644 index 0000000..5c83a4a Binary files /dev/null and b/_module/ncs/dred_imbue_4.ncs differ diff --git a/_module/ncs/dred_imbue_5.ncs b/_module/ncs/dred_imbue_5.ncs new file mode 100644 index 0000000..f16f0a0 Binary files /dev/null and b/_module/ncs/dred_imbue_5.ncs differ diff --git a/_module/ncs/druid_slot_imbue.ncs b/_module/ncs/druid_slot_imbue.ncs new file mode 100644 index 0000000..35fff00 Binary files /dev/null and b/_module/ncs/druid_slot_imbue.ncs differ diff --git a/_module/ncs/dt_set.ncs b/_module/ncs/dt_set.ncs new file mode 100644 index 0000000..95ae544 Binary files /dev/null and b/_module/ncs/dt_set.ncs differ diff --git a/_module/ncs/dt_set0.ncs b/_module/ncs/dt_set0.ncs new file mode 100644 index 0000000..95ae544 Binary files /dev/null and b/_module/ncs/dt_set0.ncs differ diff --git a/_module/ncs/dt_set1.ncs b/_module/ncs/dt_set1.ncs new file mode 100644 index 0000000..d69363d Binary files /dev/null and b/_module/ncs/dt_set1.ncs differ diff --git a/_module/ncs/dt_set10.ncs b/_module/ncs/dt_set10.ncs new file mode 100644 index 0000000..146c29d Binary files /dev/null and b/_module/ncs/dt_set10.ncs differ diff --git a/_module/ncs/dt_set11.ncs b/_module/ncs/dt_set11.ncs new file mode 100644 index 0000000..e5e641a Binary files /dev/null and b/_module/ncs/dt_set11.ncs differ diff --git a/_module/ncs/dt_set12.ncs b/_module/ncs/dt_set12.ncs new file mode 100644 index 0000000..a23832d Binary files /dev/null and b/_module/ncs/dt_set12.ncs differ diff --git a/_module/ncs/dt_set13.ncs b/_module/ncs/dt_set13.ncs new file mode 100644 index 0000000..ec1a7c1 Binary files /dev/null and b/_module/ncs/dt_set13.ncs differ diff --git a/_module/ncs/dt_set14.ncs b/_module/ncs/dt_set14.ncs new file mode 100644 index 0000000..de16114 Binary files /dev/null and b/_module/ncs/dt_set14.ncs differ diff --git a/_module/ncs/dt_set15.ncs b/_module/ncs/dt_set15.ncs new file mode 100644 index 0000000..19cc1b3 Binary files /dev/null and b/_module/ncs/dt_set15.ncs differ diff --git a/_module/ncs/dt_set16.ncs b/_module/ncs/dt_set16.ncs new file mode 100644 index 0000000..b857e55 Binary files /dev/null and b/_module/ncs/dt_set16.ncs differ diff --git a/_module/ncs/dt_set17.ncs b/_module/ncs/dt_set17.ncs new file mode 100644 index 0000000..a530c51 Binary files /dev/null and b/_module/ncs/dt_set17.ncs differ diff --git a/_module/ncs/dt_set18.ncs b/_module/ncs/dt_set18.ncs new file mode 100644 index 0000000..7559c9a Binary files /dev/null and b/_module/ncs/dt_set18.ncs differ diff --git a/_module/ncs/dt_set19.ncs b/_module/ncs/dt_set19.ncs new file mode 100644 index 0000000..ccab9b3 Binary files /dev/null and b/_module/ncs/dt_set19.ncs differ diff --git a/_module/ncs/dt_set2.ncs b/_module/ncs/dt_set2.ncs new file mode 100644 index 0000000..1af5f21 Binary files /dev/null and b/_module/ncs/dt_set2.ncs differ diff --git a/_module/ncs/dt_set20.ncs b/_module/ncs/dt_set20.ncs new file mode 100644 index 0000000..62d0373 Binary files /dev/null and b/_module/ncs/dt_set20.ncs differ diff --git a/_module/ncs/dt_set21.ncs b/_module/ncs/dt_set21.ncs new file mode 100644 index 0000000..8f10a73 Binary files /dev/null and b/_module/ncs/dt_set21.ncs differ diff --git a/_module/ncs/dt_set4.ncs b/_module/ncs/dt_set4.ncs new file mode 100644 index 0000000..eba8ccf Binary files /dev/null and b/_module/ncs/dt_set4.ncs differ diff --git a/_module/ncs/dt_set5.ncs b/_module/ncs/dt_set5.ncs new file mode 100644 index 0000000..3ec3657 Binary files /dev/null and b/_module/ncs/dt_set5.ncs differ diff --git a/_module/ncs/dt_set6.ncs b/_module/ncs/dt_set6.ncs new file mode 100644 index 0000000..bc8982c Binary files /dev/null and b/_module/ncs/dt_set6.ncs differ diff --git a/_module/ncs/dt_set7.ncs b/_module/ncs/dt_set7.ncs new file mode 100644 index 0000000..ebfebff Binary files /dev/null and b/_module/ncs/dt_set7.ncs differ diff --git a/_module/ncs/dt_set8.ncs b/_module/ncs/dt_set8.ncs new file mode 100644 index 0000000..607e769 Binary files /dev/null and b/_module/ncs/dt_set8.ncs differ diff --git a/_module/ncs/dt_set9.ncs b/_module/ncs/dt_set9.ncs new file mode 100644 index 0000000..db93905 Binary files /dev/null and b/_module/ncs/dt_set9.ncs differ diff --git a/_module/ncs/duel_time.ncs b/_module/ncs/duel_time.ncs new file mode 100644 index 0000000..339c083 Binary files /dev/null and b/_module/ncs/duel_time.ncs differ diff --git a/_module/ncs/duel_time_diff.ncs b/_module/ncs/duel_time_diff.ncs new file mode 100644 index 0000000..2c93f00 Binary files /dev/null and b/_module/ncs/duel_time_diff.ncs differ diff --git a/_module/ncs/duel_time_easy.ncs b/_module/ncs/duel_time_easy.ncs new file mode 100644 index 0000000..e0c34c8 Binary files /dev/null and b/_module/ncs/duel_time_easy.ncs differ diff --git a/_module/ncs/duel_time_hard.ncs b/_module/ncs/duel_time_hard.ncs new file mode 100644 index 0000000..fb08a31 Binary files /dev/null and b/_module/ncs/duel_time_hard.ncs differ diff --git a/_module/ncs/duel_time_imposs.ncs b/_module/ncs/duel_time_imposs.ncs new file mode 100644 index 0000000..96aad82 Binary files /dev/null and b/_module/ncs/duel_time_imposs.ncs differ diff --git a/_module/ncs/duel_time_med.ncs b/_module/ncs/duel_time_med.ncs new file mode 100644 index 0000000..fe46a25 Binary files /dev/null and b/_module/ncs/duel_time_med.ncs differ diff --git a/_module/ncs/duel_time_vhard.ncs b/_module/ncs/duel_time_vhard.ncs new file mode 100644 index 0000000..cc83a5f Binary files /dev/null and b/_module/ncs/duel_time_vhard.ncs differ diff --git a/_module/ncs/dv_imbue25.ncs b/_module/ncs/dv_imbue25.ncs new file mode 100644 index 0000000..d60117f Binary files /dev/null and b/_module/ncs/dv_imbue25.ncs differ diff --git a/_module/ncs/dv_imbue252.ncs b/_module/ncs/dv_imbue252.ncs new file mode 100644 index 0000000..46e1c0e Binary files /dev/null and b/_module/ncs/dv_imbue252.ncs differ diff --git a/_module/ncs/dv_imbue252a.ncs b/_module/ncs/dv_imbue252a.ncs new file mode 100644 index 0000000..98d9ed7 Binary files /dev/null and b/_module/ncs/dv_imbue252a.ncs differ diff --git a/_module/ncs/dv_imbue252a1.ncs b/_module/ncs/dv_imbue252a1.ncs new file mode 100644 index 0000000..2476cdb Binary files /dev/null and b/_module/ncs/dv_imbue252a1.ncs differ diff --git a/_module/ncs/dv_imbue252a2.ncs b/_module/ncs/dv_imbue252a2.ncs new file mode 100644 index 0000000..2af6451 Binary files /dev/null and b/_module/ncs/dv_imbue252a2.ncs differ diff --git a/_module/ncs/dvdone_1.ncs b/_module/ncs/dvdone_1.ncs new file mode 100644 index 0000000..4be56cd Binary files /dev/null and b/_module/ncs/dvdone_1.ncs differ diff --git a/_module/ncs/dvdone_12.ncs b/_module/ncs/dvdone_12.ncs new file mode 100644 index 0000000..984d8b2 Binary files /dev/null and b/_module/ncs/dvdone_12.ncs differ diff --git a/_module/ncs/dvdone_12a.ncs b/_module/ncs/dvdone_12a.ncs new file mode 100644 index 0000000..5e231ab Binary files /dev/null and b/_module/ncs/dvdone_12a.ncs differ diff --git a/_module/ncs/dvdred_imbue_2.ncs b/_module/ncs/dvdred_imbue_2.ncs new file mode 100644 index 0000000..7cbaa98 Binary files /dev/null and b/_module/ncs/dvdred_imbue_2.ncs differ diff --git a/_module/ncs/dvdred_imbue_22.ncs b/_module/ncs/dvdred_imbue_22.ncs new file mode 100644 index 0000000..8974993 Binary files /dev/null and b/_module/ncs/dvdred_imbue_22.ncs differ diff --git a/_module/ncs/dvdred_imbue_3.ncs b/_module/ncs/dvdred_imbue_3.ncs new file mode 100644 index 0000000..6f8a3f5 Binary files /dev/null and b/_module/ncs/dvdred_imbue_3.ncs differ diff --git a/_module/ncs/dvdred_imbue_32.ncs b/_module/ncs/dvdred_imbue_32.ncs new file mode 100644 index 0000000..a614f8f Binary files /dev/null and b/_module/ncs/dvdred_imbue_32.ncs differ diff --git a/_module/ncs/dvdred_imbue_4.ncs b/_module/ncs/dvdred_imbue_4.ncs new file mode 100644 index 0000000..64ce62c Binary files /dev/null and b/_module/ncs/dvdred_imbue_4.ncs differ diff --git a/_module/ncs/dvdred_imbue_5.ncs b/_module/ncs/dvdred_imbue_5.ncs new file mode 100644 index 0000000..a34e865 Binary files /dev/null and b/_module/ncs/dvdred_imbue_5.ncs differ diff --git a/_module/ncs/dved1_1.ncs b/_module/ncs/dved1_1.ncs new file mode 100644 index 0000000..fb77b6b Binary files /dev/null and b/_module/ncs/dved1_1.ncs differ diff --git a/_module/ncs/dved1_12.ncs b/_module/ncs/dved1_12.ncs new file mode 100644 index 0000000..d9070d3 Binary files /dev/null and b/_module/ncs/dved1_12.ncs differ diff --git a/_module/ncs/dved1_12a.ncs b/_module/ncs/dved1_12a.ncs new file mode 100644 index 0000000..5702170 Binary files /dev/null and b/_module/ncs/dved1_12a.ncs differ diff --git a/_module/ncs/dved1_12b.ncs b/_module/ncs/dved1_12b.ncs new file mode 100644 index 0000000..a044333 Binary files /dev/null and b/_module/ncs/dved1_12b.ncs differ diff --git a/_module/ncs/dved1_12c.ncs b/_module/ncs/dved1_12c.ncs new file mode 100644 index 0000000..47a63c9 Binary files /dev/null and b/_module/ncs/dved1_12c.ncs differ diff --git a/_module/ncs/dved_1.ncs b/_module/ncs/dved_1.ncs new file mode 100644 index 0000000..23bbb25 Binary files /dev/null and b/_module/ncs/dved_1.ncs differ diff --git a/_module/ncs/dved_12.ncs b/_module/ncs/dved_12.ncs new file mode 100644 index 0000000..9eb6aa7 Binary files /dev/null and b/_module/ncs/dved_12.ncs differ diff --git a/_module/ncs/dved_12a.ncs b/_module/ncs/dved_12a.ncs new file mode 100644 index 0000000..8fc7029 Binary files /dev/null and b/_module/ncs/dved_12a.ncs differ diff --git a/_module/ncs/dvmax_damred12.ncs b/_module/ncs/dvmax_damred12.ncs new file mode 100644 index 0000000..d56e5b7 Binary files /dev/null and b/_module/ncs/dvmax_damred12.ncs differ diff --git a/_module/ncs/dvmax_damred12a.ncs b/_module/ncs/dvmax_damred12a.ncs new file mode 100644 index 0000000..dbc3fe4 Binary files /dev/null and b/_module/ncs/dvmax_damred12a.ncs differ diff --git a/_module/ncs/dvmax_damred12ab.ncs b/_module/ncs/dvmax_damred12ab.ncs new file mode 100644 index 0000000..1875e9a Binary files /dev/null and b/_module/ncs/dvmax_damred12ab.ncs differ diff --git a/_module/ncs/dvmax_damred12b.ncs b/_module/ncs/dvmax_damred12b.ncs new file mode 100644 index 0000000..0340f78 Binary files /dev/null and b/_module/ncs/dvmax_damred12b.ncs differ diff --git a/_module/ncs/dvmax_reached.ncs b/_module/ncs/dvmax_reached.ncs new file mode 100644 index 0000000..c0244ad Binary files /dev/null and b/_module/ncs/dvmax_reached.ncs differ diff --git a/_module/ncs/dvmax_reached1.ncs b/_module/ncs/dvmax_reached1.ncs new file mode 100644 index 0000000..366be0e Binary files /dev/null and b/_module/ncs/dvmax_reached1.ncs differ diff --git a/_module/ncs/dvmax_reached12.ncs b/_module/ncs/dvmax_reached12.ncs new file mode 100644 index 0000000..d56e5b7 Binary files /dev/null and b/_module/ncs/dvmax_reached12.ncs differ diff --git a/_module/ncs/dvmax_reached2.ncs b/_module/ncs/dvmax_reached2.ncs new file mode 100644 index 0000000..b4a4642 Binary files /dev/null and b/_module/ncs/dvmax_reached2.ncs differ diff --git a/_module/ncs/dvred_0.ncs b/_module/ncs/dvred_0.ncs new file mode 100644 index 0000000..9cd5969 Binary files /dev/null and b/_module/ncs/dvred_0.ncs differ diff --git a/_module/ncs/dvred_02.ncs b/_module/ncs/dvred_02.ncs new file mode 100644 index 0000000..5274a85 Binary files /dev/null and b/_module/ncs/dvred_02.ncs differ diff --git a/_module/ncs/dvred_02a.ncs b/_module/ncs/dvred_02a.ncs new file mode 100644 index 0000000..f8d2246 Binary files /dev/null and b/_module/ncs/dvred_02a.ncs differ diff --git a/_module/ncs/dvred_10.ncs b/_module/ncs/dvred_10.ncs new file mode 100644 index 0000000..8be1a6d Binary files /dev/null and b/_module/ncs/dvred_10.ncs differ diff --git a/_module/ncs/dvred_11.ncs b/_module/ncs/dvred_11.ncs new file mode 100644 index 0000000..087f3cf Binary files /dev/null and b/_module/ncs/dvred_11.ncs differ diff --git a/_module/ncs/dvred_12.ncs b/_module/ncs/dvred_12.ncs new file mode 100644 index 0000000..2b28b9e Binary files /dev/null and b/_module/ncs/dvred_12.ncs differ diff --git a/_module/ncs/dvred_2.ncs b/_module/ncs/dvred_2.ncs new file mode 100644 index 0000000..67475a0 Binary files /dev/null and b/_module/ncs/dvred_2.ncs differ diff --git a/_module/ncs/dvred_22.ncs b/_module/ncs/dvred_22.ncs new file mode 100644 index 0000000..ae7e2cf Binary files /dev/null and b/_module/ncs/dvred_22.ncs differ diff --git a/_module/ncs/dvred_22a.ncs b/_module/ncs/dvred_22a.ncs new file mode 100644 index 0000000..f109941 Binary files /dev/null and b/_module/ncs/dvred_22a.ncs differ diff --git a/_module/ncs/dvred_22aa.ncs b/_module/ncs/dvred_22aa.ncs new file mode 100644 index 0000000..f109941 Binary files /dev/null and b/_module/ncs/dvred_22aa.ncs differ diff --git a/_module/ncs/dvred_3.ncs b/_module/ncs/dvred_3.ncs new file mode 100644 index 0000000..cf7ae75 Binary files /dev/null and b/_module/ncs/dvred_3.ncs differ diff --git a/_module/ncs/dvred_32.ncs b/_module/ncs/dvred_32.ncs new file mode 100644 index 0000000..4d19c3a Binary files /dev/null and b/_module/ncs/dvred_32.ncs differ diff --git a/_module/ncs/dvred_32a.ncs b/_module/ncs/dvred_32a.ncs new file mode 100644 index 0000000..6c12566 Binary files /dev/null and b/_module/ncs/dvred_32a.ncs differ diff --git a/_module/ncs/dvred_4.ncs b/_module/ncs/dvred_4.ncs new file mode 100644 index 0000000..cf99841 Binary files /dev/null and b/_module/ncs/dvred_4.ncs differ diff --git a/_module/ncs/dvred_42.ncs b/_module/ncs/dvred_42.ncs new file mode 100644 index 0000000..5702170 Binary files /dev/null and b/_module/ncs/dvred_42.ncs differ diff --git a/_module/ncs/dvred_6.ncs b/_module/ncs/dvred_6.ncs new file mode 100644 index 0000000..3597b16 Binary files /dev/null and b/_module/ncs/dvred_6.ncs differ diff --git a/_module/ncs/dvred_62.ncs b/_module/ncs/dvred_62.ncs new file mode 100644 index 0000000..400cabf Binary files /dev/null and b/_module/ncs/dvred_62.ncs differ diff --git a/_module/ncs/dvred_62a.ncs b/_module/ncs/dvred_62a.ncs new file mode 100644 index 0000000..c5a2471 Binary files /dev/null and b/_module/ncs/dvred_62a.ncs differ diff --git a/_module/ncs/dvred_7.ncs b/_module/ncs/dvred_7.ncs new file mode 100644 index 0000000..0ce3d3e Binary files /dev/null and b/_module/ncs/dvred_7.ncs differ diff --git a/_module/ncs/dvred_8.ncs b/_module/ncs/dvred_8.ncs new file mode 100644 index 0000000..1cf8db2 Binary files /dev/null and b/_module/ncs/dvred_8.ncs differ diff --git a/_module/ncs/dvred_9.ncs b/_module/ncs/dvred_9.ncs new file mode 100644 index 0000000..f9809e9 Binary files /dev/null and b/_module/ncs/dvred_9.ncs differ diff --git a/_module/ncs/dynamic_bell.ncs b/_module/ncs/dynamic_bell.ncs new file mode 100644 index 0000000..02082bd Binary files /dev/null and b/_module/ncs/dynamic_bell.ncs differ diff --git a/_module/ncs/dynamic_braz.ncs b/_module/ncs/dynamic_braz.ncs new file mode 100644 index 0000000..27aba4b Binary files /dev/null and b/_module/ncs/dynamic_braz.ncs differ diff --git a/_module/ncs/dynamic_braz3.ncs b/_module/ncs/dynamic_braz3.ncs new file mode 100644 index 0000000..cfa90b3 Binary files /dev/null and b/_module/ncs/dynamic_braz3.ncs differ diff --git a/_module/ncs/dynamic_lamp.ncs b/_module/ncs/dynamic_lamp.ncs new file mode 100644 index 0000000..8778263 Binary files /dev/null and b/_module/ncs/dynamic_lamp.ncs differ diff --git a/_module/ncs/dynamic_lamp_wt.ncs b/_module/ncs/dynamic_lamp_wt.ncs new file mode 100644 index 0000000..32825e9 Binary files /dev/null and b/_module/ncs/dynamic_lamp_wt.ncs differ diff --git a/_module/ncs/el_imbue25.ncs b/_module/ncs/el_imbue25.ncs new file mode 100644 index 0000000..c8e9c34 Binary files /dev/null and b/_module/ncs/el_imbue25.ncs differ diff --git a/_module/ncs/el_imbue252.ncs b/_module/ncs/el_imbue252.ncs new file mode 100644 index 0000000..292c458 Binary files /dev/null and b/_module/ncs/el_imbue252.ncs differ diff --git a/_module/ncs/eldone_1.ncs b/_module/ncs/eldone_1.ncs new file mode 100644 index 0000000..1887626 Binary files /dev/null and b/_module/ncs/eldone_1.ncs differ diff --git a/_module/ncs/eldone_12.ncs b/_module/ncs/eldone_12.ncs new file mode 100644 index 0000000..f3698f5 Binary files /dev/null and b/_module/ncs/eldone_12.ncs differ diff --git a/_module/ncs/eldred_imbue_2.ncs b/_module/ncs/eldred_imbue_2.ncs new file mode 100644 index 0000000..701a448 Binary files /dev/null and b/_module/ncs/eldred_imbue_2.ncs differ diff --git a/_module/ncs/eldred_imbue_22.ncs b/_module/ncs/eldred_imbue_22.ncs new file mode 100644 index 0000000..027638e Binary files /dev/null and b/_module/ncs/eldred_imbue_22.ncs differ diff --git a/_module/ncs/eldred_imbue_3.ncs b/_module/ncs/eldred_imbue_3.ncs new file mode 100644 index 0000000..4d1ba07 Binary files /dev/null and b/_module/ncs/eldred_imbue_3.ncs differ diff --git a/_module/ncs/eldred_imbue_32.ncs b/_module/ncs/eldred_imbue_32.ncs new file mode 100644 index 0000000..dddc674 Binary files /dev/null and b/_module/ncs/eldred_imbue_32.ncs differ diff --git a/_module/ncs/eldred_imbue_4.ncs b/_module/ncs/eldred_imbue_4.ncs new file mode 100644 index 0000000..106bb27 Binary files /dev/null and b/_module/ncs/eldred_imbue_4.ncs differ diff --git a/_module/ncs/eldred_imbue_5.ncs b/_module/ncs/eldred_imbue_5.ncs new file mode 100644 index 0000000..28e3439 Binary files /dev/null and b/_module/ncs/eldred_imbue_5.ncs differ diff --git a/_module/ncs/elec_imbue.ncs b/_module/ncs/elec_imbue.ncs new file mode 100644 index 0000000..f7cd176 Binary files /dev/null and b/_module/ncs/elec_imbue.ncs differ diff --git a/_module/ncs/elec_imbue_arm.ncs b/_module/ncs/elec_imbue_arm.ncs new file mode 100644 index 0000000..ff6e671 Binary files /dev/null and b/_module/ncs/elec_imbue_arm.ncs differ diff --git a/_module/ncs/elkdeath.ncs b/_module/ncs/elkdeath.ncs new file mode 100644 index 0000000..f3f280c Binary files /dev/null and b/_module/ncs/elkdeath.ncs differ diff --git a/_module/ncs/elmax_reached.ncs b/_module/ncs/elmax_reached.ncs new file mode 100644 index 0000000..6840c65 Binary files /dev/null and b/_module/ncs/elmax_reached.ncs differ diff --git a/_module/ncs/elmax_reached2.ncs b/_module/ncs/elmax_reached2.ncs new file mode 100644 index 0000000..5234428 Binary files /dev/null and b/_module/ncs/elmax_reached2.ncs differ diff --git a/_module/ncs/elmax_reached22.ncs b/_module/ncs/elmax_reached22.ncs new file mode 100644 index 0000000..21bd52b Binary files /dev/null and b/_module/ncs/elmax_reached22.ncs differ diff --git a/_module/ncs/elmax_reached32.ncs b/_module/ncs/elmax_reached32.ncs new file mode 100644 index 0000000..73d6783 Binary files /dev/null and b/_module/ncs/elmax_reached32.ncs differ diff --git a/_module/ncs/elred1_1.ncs b/_module/ncs/elred1_1.ncs new file mode 100644 index 0000000..f3ef46a Binary files /dev/null and b/_module/ncs/elred1_1.ncs differ diff --git a/_module/ncs/elred1_12.ncs b/_module/ncs/elred1_12.ncs new file mode 100644 index 0000000..5716989 Binary files /dev/null and b/_module/ncs/elred1_12.ncs differ diff --git a/_module/ncs/elred_0.ncs b/_module/ncs/elred_0.ncs new file mode 100644 index 0000000..5b06f57 Binary files /dev/null and b/_module/ncs/elred_0.ncs differ diff --git a/_module/ncs/elred_02.ncs b/_module/ncs/elred_02.ncs new file mode 100644 index 0000000..1308959 Binary files /dev/null and b/_module/ncs/elred_02.ncs differ diff --git a/_module/ncs/elred_10.ncs b/_module/ncs/elred_10.ncs new file mode 100644 index 0000000..e1d8767 Binary files /dev/null and b/_module/ncs/elred_10.ncs differ diff --git a/_module/ncs/elred_11.ncs b/_module/ncs/elred_11.ncs new file mode 100644 index 0000000..f15ae39 Binary files /dev/null and b/_module/ncs/elred_11.ncs differ diff --git a/_module/ncs/elred_12.ncs b/_module/ncs/elred_12.ncs new file mode 100644 index 0000000..30b3684 Binary files /dev/null and b/_module/ncs/elred_12.ncs differ diff --git a/_module/ncs/elred_2.ncs b/_module/ncs/elred_2.ncs new file mode 100644 index 0000000..6b97d36 Binary files /dev/null and b/_module/ncs/elred_2.ncs differ diff --git a/_module/ncs/elred_22.ncs b/_module/ncs/elred_22.ncs new file mode 100644 index 0000000..ecc63a1 Binary files /dev/null and b/_module/ncs/elred_22.ncs differ diff --git a/_module/ncs/elred_3.ncs b/_module/ncs/elred_3.ncs new file mode 100644 index 0000000..0b8a055 Binary files /dev/null and b/_module/ncs/elred_3.ncs differ diff --git a/_module/ncs/elred_32.ncs b/_module/ncs/elred_32.ncs new file mode 100644 index 0000000..334ede3 Binary files /dev/null and b/_module/ncs/elred_32.ncs differ diff --git a/_module/ncs/elred_4.ncs b/_module/ncs/elred_4.ncs new file mode 100644 index 0000000..d046afb Binary files /dev/null and b/_module/ncs/elred_4.ncs differ diff --git a/_module/ncs/elred_42.ncs b/_module/ncs/elred_42.ncs new file mode 100644 index 0000000..5b703e3 Binary files /dev/null and b/_module/ncs/elred_42.ncs differ diff --git a/_module/ncs/elred_6.ncs b/_module/ncs/elred_6.ncs new file mode 100644 index 0000000..b4e440e Binary files /dev/null and b/_module/ncs/elred_6.ncs differ diff --git a/_module/ncs/elred_62.ncs b/_module/ncs/elred_62.ncs new file mode 100644 index 0000000..83d7e3c Binary files /dev/null and b/_module/ncs/elred_62.ncs differ diff --git a/_module/ncs/elred_7.ncs b/_module/ncs/elred_7.ncs new file mode 100644 index 0000000..84fa382 Binary files /dev/null and b/_module/ncs/elred_7.ncs differ diff --git a/_module/ncs/elred_8.ncs b/_module/ncs/elred_8.ncs new file mode 100644 index 0000000..d8c8645 Binary files /dev/null and b/_module/ncs/elred_8.ncs differ diff --git a/_module/ncs/elred_9.ncs b/_module/ncs/elred_9.ncs new file mode 100644 index 0000000..83f3647 Binary files /dev/null and b/_module/ncs/elred_9.ncs differ diff --git a/_module/ncs/enh_imbue.ncs b/_module/ncs/enh_imbue.ncs new file mode 100644 index 0000000..dcb4b00 Binary files /dev/null and b/_module/ncs/enh_imbue.ncs differ diff --git a/_module/ncs/enh_imbue2.ncs b/_module/ncs/enh_imbue2.ncs new file mode 100644 index 0000000..b05f85d Binary files /dev/null and b/_module/ncs/enh_imbue2.ncs differ diff --git a/_module/ncs/enhance_chek.ncs b/_module/ncs/enhance_chek.ncs new file mode 100644 index 0000000..173d962 Binary files /dev/null and b/_module/ncs/enhance_chek.ncs differ diff --git a/_module/ncs/enhance_chek2.ncs b/_module/ncs/enhance_chek2.ncs new file mode 100644 index 0000000..86717e8 Binary files /dev/null and b/_module/ncs/enhance_chek2.ncs differ diff --git a/_module/ncs/enter_arena.ncs b/_module/ncs/enter_arena.ncs new file mode 100644 index 0000000..2ca894a Binary files /dev/null and b/_module/ncs/enter_arena.ncs differ diff --git a/_module/ncs/ered_1.ncs b/_module/ncs/ered_1.ncs new file mode 100644 index 0000000..6e814f0 Binary files /dev/null and b/_module/ncs/ered_1.ncs differ diff --git a/_module/ncs/ered_12.ncs b/_module/ncs/ered_12.ncs new file mode 100644 index 0000000..94d1c4e Binary files /dev/null and b/_module/ncs/ered_12.ncs differ diff --git a/_module/ncs/evade_imbue.ncs b/_module/ncs/evade_imbue.ncs new file mode 100644 index 0000000..f0c4e79 Binary files /dev/null and b/_module/ncs/evade_imbue.ncs differ diff --git a/_module/ncs/evil_rollplay.ncs b/_module/ncs/evil_rollplay.ncs new file mode 100644 index 0000000..49a573a Binary files /dev/null and b/_module/ncs/evil_rollplay.ncs differ diff --git a/_module/ncs/examine_me.ncs b/_module/ncs/examine_me.ncs new file mode 100644 index 0000000..54276d5 Binary files /dev/null and b/_module/ncs/examine_me.ncs differ diff --git a/_module/ncs/examine_self.ncs b/_module/ncs/examine_self.ncs new file mode 100644 index 0000000..74aec79 Binary files /dev/null and b/_module/ncs/examine_self.ncs differ diff --git a/_module/ncs/exit_arena.ncs b/_module/ncs/exit_arena.ncs new file mode 100644 index 0000000..a14bb36 Binary files /dev/null and b/_module/ncs/exit_arena.ncs differ diff --git a/_module/ncs/fear_imbue.ncs b/_module/ncs/fear_imbue.ncs new file mode 100644 index 0000000..ed121d6 Binary files /dev/null and b/_module/ncs/fear_imbue.ncs differ diff --git a/_module/ncs/fi_imbue25.ncs b/_module/ncs/fi_imbue25.ncs new file mode 100644 index 0000000..c9b7481 Binary files /dev/null and b/_module/ncs/fi_imbue25.ncs differ diff --git a/_module/ncs/fi_imbue252.ncs b/_module/ncs/fi_imbue252.ncs new file mode 100644 index 0000000..1db8eb1 Binary files /dev/null and b/_module/ncs/fi_imbue252.ncs differ diff --git a/_module/ncs/fidone_1.ncs b/_module/ncs/fidone_1.ncs new file mode 100644 index 0000000..fdd29f0 Binary files /dev/null and b/_module/ncs/fidone_1.ncs differ diff --git a/_module/ncs/fidone_12.ncs b/_module/ncs/fidone_12.ncs new file mode 100644 index 0000000..6ce39d2 Binary files /dev/null and b/_module/ncs/fidone_12.ncs differ diff --git a/_module/ncs/fidred_imbue_2.ncs b/_module/ncs/fidred_imbue_2.ncs new file mode 100644 index 0000000..3895a49 Binary files /dev/null and b/_module/ncs/fidred_imbue_2.ncs differ diff --git a/_module/ncs/fidred_imbue_22.ncs b/_module/ncs/fidred_imbue_22.ncs new file mode 100644 index 0000000..5d5a8fd Binary files /dev/null and b/_module/ncs/fidred_imbue_22.ncs differ diff --git a/_module/ncs/fidred_imbue_3.ncs b/_module/ncs/fidred_imbue_3.ncs new file mode 100644 index 0000000..cc4be2d Binary files /dev/null and b/_module/ncs/fidred_imbue_3.ncs differ diff --git a/_module/ncs/fidred_imbue_32.ncs b/_module/ncs/fidred_imbue_32.ncs new file mode 100644 index 0000000..46870f3 Binary files /dev/null and b/_module/ncs/fidred_imbue_32.ncs differ diff --git a/_module/ncs/fidred_imbue_4.ncs b/_module/ncs/fidred_imbue_4.ncs new file mode 100644 index 0000000..758e754 Binary files /dev/null and b/_module/ncs/fidred_imbue_4.ncs differ diff --git a/_module/ncs/fidred_imbue_5.ncs b/_module/ncs/fidred_imbue_5.ncs new file mode 100644 index 0000000..f2ad22c Binary files /dev/null and b/_module/ncs/fidred_imbue_5.ncs differ diff --git a/_module/ncs/fied1_1.ncs b/_module/ncs/fied1_1.ncs new file mode 100644 index 0000000..5169df4 Binary files /dev/null and b/_module/ncs/fied1_1.ncs differ diff --git a/_module/ncs/fied1_12.ncs b/_module/ncs/fied1_12.ncs new file mode 100644 index 0000000..8c2cc2d Binary files /dev/null and b/_module/ncs/fied1_12.ncs differ diff --git a/_module/ncs/fied_1.ncs b/_module/ncs/fied_1.ncs new file mode 100644 index 0000000..4829519 Binary files /dev/null and b/_module/ncs/fied_1.ncs differ diff --git a/_module/ncs/fied_12.ncs b/_module/ncs/fied_12.ncs new file mode 100644 index 0000000..0b8288b Binary files /dev/null and b/_module/ncs/fied_12.ncs differ diff --git a/_module/ncs/fimax_reached.ncs b/_module/ncs/fimax_reached.ncs new file mode 100644 index 0000000..6724bf1 Binary files /dev/null and b/_module/ncs/fimax_reached.ncs differ diff --git a/_module/ncs/fimax_reached1.ncs b/_module/ncs/fimax_reached1.ncs new file mode 100644 index 0000000..d10e02e Binary files /dev/null and b/_module/ncs/fimax_reached1.ncs differ diff --git a/_module/ncs/fimax_reached12.ncs b/_module/ncs/fimax_reached12.ncs new file mode 100644 index 0000000..a4580ba Binary files /dev/null and b/_module/ncs/fimax_reached12.ncs differ diff --git a/_module/ncs/fimax_reached2.ncs b/_module/ncs/fimax_reached2.ncs new file mode 100644 index 0000000..b457727 Binary files /dev/null and b/_module/ncs/fimax_reached2.ncs differ diff --git a/_module/ncs/final_boss.ncs b/_module/ncs/final_boss.ncs new file mode 100644 index 0000000..f3837b9 Binary files /dev/null and b/_module/ncs/final_boss.ncs differ diff --git a/_module/ncs/final_boss2.ncs b/_module/ncs/final_boss2.ncs new file mode 100644 index 0000000..551db10 Binary files /dev/null and b/_module/ncs/final_boss2.ncs differ diff --git a/_module/ncs/final_boss_n.ncs b/_module/ncs/final_boss_n.ncs new file mode 100644 index 0000000..5a51394 Binary files /dev/null and b/_module/ncs/final_boss_n.ncs differ diff --git a/_module/ncs/final_conv.ncs b/_module/ncs/final_conv.ncs new file mode 100644 index 0000000..a2ae6f5 Binary files /dev/null and b/_module/ncs/final_conv.ncs differ diff --git a/_module/ncs/final_conv2.ncs b/_module/ncs/final_conv2.ncs new file mode 100644 index 0000000..20fa295 Binary files /dev/null and b/_module/ncs/final_conv2.ncs differ diff --git a/_module/ncs/final_conv3.ncs b/_module/ncs/final_conv3.ncs new file mode 100644 index 0000000..db8953b Binary files /dev/null and b/_module/ncs/final_conv3.ncs differ diff --git a/_module/ncs/final_conv4.ncs b/_module/ncs/final_conv4.ncs new file mode 100644 index 0000000..4572bb8 Binary files /dev/null and b/_module/ncs/final_conv4.ncs differ diff --git a/_module/ncs/final_conv5.ncs b/_module/ncs/final_conv5.ncs new file mode 100644 index 0000000..7b75c47 Binary files /dev/null and b/_module/ncs/final_conv5.ncs differ diff --git a/_module/ncs/final_conv6.ncs b/_module/ncs/final_conv6.ncs new file mode 100644 index 0000000..da5fbf5 Binary files /dev/null and b/_module/ncs/final_conv6.ncs differ diff --git a/_module/ncs/final_conv7.ncs b/_module/ncs/final_conv7.ncs new file mode 100644 index 0000000..ff0a86d Binary files /dev/null and b/_module/ncs/final_conv7.ncs differ diff --git a/_module/ncs/final_cutscene.ncs b/_module/ncs/final_cutscene.ncs new file mode 100644 index 0000000..a62e362 Binary files /dev/null and b/_module/ncs/final_cutscene.ncs differ diff --git a/_module/ncs/fire_check.ncs b/_module/ncs/fire_check.ncs new file mode 100644 index 0000000..36f32cc Binary files /dev/null and b/_module/ncs/fire_check.ncs differ diff --git a/_module/ncs/fire_imbue.ncs b/_module/ncs/fire_imbue.ncs new file mode 100644 index 0000000..6994e1c Binary files /dev/null and b/_module/ncs/fire_imbue.ncs differ diff --git a/_module/ncs/fire_imbue_arm.ncs b/_module/ncs/fire_imbue_arm.ncs new file mode 100644 index 0000000..b5e15ed Binary files /dev/null and b/_module/ncs/fire_imbue_arm.ncs differ diff --git a/_module/ncs/fire_lbd1.ncs b/_module/ncs/fire_lbd1.ncs new file mode 100644 index 0000000..e8df4f0 Binary files /dev/null and b/_module/ncs/fire_lbd1.ncs differ diff --git a/_module/ncs/fire_lbd1a.ncs b/_module/ncs/fire_lbd1a.ncs new file mode 100644 index 0000000..f3a070c Binary files /dev/null and b/_module/ncs/fire_lbd1a.ncs differ diff --git a/_module/ncs/fire_lbd1aa.ncs b/_module/ncs/fire_lbd1aa.ncs new file mode 100644 index 0000000..c6164a1 Binary files /dev/null and b/_module/ncs/fire_lbd1aa.ncs differ diff --git a/_module/ncs/fire_lbd1b.ncs b/_module/ncs/fire_lbd1b.ncs new file mode 100644 index 0000000..bc0d5b9 Binary files /dev/null and b/_module/ncs/fire_lbd1b.ncs differ diff --git a/_module/ncs/fire_lbd1bb.ncs b/_module/ncs/fire_lbd1bb.ncs new file mode 100644 index 0000000..d5ed75b Binary files /dev/null and b/_module/ncs/fire_lbd1bb.ncs differ diff --git a/_module/ncs/fire_lbd1c.ncs b/_module/ncs/fire_lbd1c.ncs new file mode 100644 index 0000000..aaa5b02 Binary files /dev/null and b/_module/ncs/fire_lbd1c.ncs differ diff --git a/_module/ncs/fire_lbd1cc.ncs b/_module/ncs/fire_lbd1cc.ncs new file mode 100644 index 0000000..1382bca Binary files /dev/null and b/_module/ncs/fire_lbd1cc.ncs differ diff --git a/_module/ncs/fire_lbd1d.ncs b/_module/ncs/fire_lbd1d.ncs new file mode 100644 index 0000000..dd74ac8 Binary files /dev/null and b/_module/ncs/fire_lbd1d.ncs differ diff --git a/_module/ncs/fire_lbd1da.ncs b/_module/ncs/fire_lbd1da.ncs new file mode 100644 index 0000000..544f8b5 Binary files /dev/null and b/_module/ncs/fire_lbd1da.ncs differ diff --git a/_module/ncs/fire_lbd1dd.ncs b/_module/ncs/fire_lbd1dd.ncs new file mode 100644 index 0000000..8c305f4 Binary files /dev/null and b/_module/ncs/fire_lbd1dd.ncs differ diff --git a/_module/ncs/fire_lbd1e.ncs b/_module/ncs/fire_lbd1e.ncs new file mode 100644 index 0000000..96dd053 Binary files /dev/null and b/_module/ncs/fire_lbd1e.ncs differ diff --git a/_module/ncs/fire_lbd1ee.ncs b/_module/ncs/fire_lbd1ee.ncs new file mode 100644 index 0000000..db00ba5 Binary files /dev/null and b/_module/ncs/fire_lbd1ee.ncs differ diff --git a/_module/ncs/fire_lbd1f.ncs b/_module/ncs/fire_lbd1f.ncs new file mode 100644 index 0000000..413ee1b Binary files /dev/null and b/_module/ncs/fire_lbd1f.ncs differ diff --git a/_module/ncs/fire_lbd1mc.ncs b/_module/ncs/fire_lbd1mc.ncs new file mode 100644 index 0000000..90ae816 Binary files /dev/null and b/_module/ncs/fire_lbd1mc.ncs differ diff --git a/_module/ncs/fire_lbd1mcmc.ncs b/_module/ncs/fire_lbd1mcmc.ncs new file mode 100644 index 0000000..9c53646 Binary files /dev/null and b/_module/ncs/fire_lbd1mcmc.ncs differ diff --git a/_module/ncs/fire_lbd1n.ncs b/_module/ncs/fire_lbd1n.ncs new file mode 100644 index 0000000..639e026 Binary files /dev/null and b/_module/ncs/fire_lbd1n.ncs differ diff --git a/_module/ncs/fire_lbd1nn.ncs b/_module/ncs/fire_lbd1nn.ncs new file mode 100644 index 0000000..224f7fd Binary files /dev/null and b/_module/ncs/fire_lbd1nn.ncs differ diff --git a/_module/ncs/fire_lbd1p.ncs b/_module/ncs/fire_lbd1p.ncs new file mode 100644 index 0000000..5c7e8b7 Binary files /dev/null and b/_module/ncs/fire_lbd1p.ncs differ diff --git a/_module/ncs/fire_lbd1po.ncs b/_module/ncs/fire_lbd1po.ncs new file mode 100644 index 0000000..c058024 Binary files /dev/null and b/_module/ncs/fire_lbd1po.ncs differ diff --git a/_module/ncs/fire_lbd1popo.ncs b/_module/ncs/fire_lbd1popo.ncs new file mode 100644 index 0000000..03bbbb9 Binary files /dev/null and b/_module/ncs/fire_lbd1popo.ncs differ diff --git a/_module/ncs/fire_lbd1pp.ncs b/_module/ncs/fire_lbd1pp.ncs new file mode 100644 index 0000000..4746ebc Binary files /dev/null and b/_module/ncs/fire_lbd1pp.ncs differ diff --git a/_module/ncs/fire_lbd1s.ncs b/_module/ncs/fire_lbd1s.ncs new file mode 100644 index 0000000..2d883b5 Binary files /dev/null and b/_module/ncs/fire_lbd1s.ncs differ diff --git a/_module/ncs/fire_lbd1so.ncs b/_module/ncs/fire_lbd1so.ncs new file mode 100644 index 0000000..98e8fc1 Binary files /dev/null and b/_module/ncs/fire_lbd1so.ncs differ diff --git a/_module/ncs/fire_lbd1soso.ncs b/_module/ncs/fire_lbd1soso.ncs new file mode 100644 index 0000000..18fe8fa Binary files /dev/null and b/_module/ncs/fire_lbd1soso.ncs differ diff --git a/_module/ncs/fire_lbd1ss.ncs b/_module/ncs/fire_lbd1ss.ncs new file mode 100644 index 0000000..d13ea90 Binary files /dev/null and b/_module/ncs/fire_lbd1ss.ncs differ diff --git a/_module/ncs/fired_0.ncs b/_module/ncs/fired_0.ncs new file mode 100644 index 0000000..3552908 Binary files /dev/null and b/_module/ncs/fired_0.ncs differ diff --git a/_module/ncs/fired_02.ncs b/_module/ncs/fired_02.ncs new file mode 100644 index 0000000..af40462 Binary files /dev/null and b/_module/ncs/fired_02.ncs differ diff --git a/_module/ncs/fired_10.ncs b/_module/ncs/fired_10.ncs new file mode 100644 index 0000000..d78672a Binary files /dev/null and b/_module/ncs/fired_10.ncs differ diff --git a/_module/ncs/fired_11.ncs b/_module/ncs/fired_11.ncs new file mode 100644 index 0000000..9f571d0 Binary files /dev/null and b/_module/ncs/fired_11.ncs differ diff --git a/_module/ncs/fired_12.ncs b/_module/ncs/fired_12.ncs new file mode 100644 index 0000000..da140c3 Binary files /dev/null and b/_module/ncs/fired_12.ncs differ diff --git a/_module/ncs/fired_2.ncs b/_module/ncs/fired_2.ncs new file mode 100644 index 0000000..181fef5 Binary files /dev/null and b/_module/ncs/fired_2.ncs differ diff --git a/_module/ncs/fired_22.ncs b/_module/ncs/fired_22.ncs new file mode 100644 index 0000000..ebb55a0 Binary files /dev/null and b/_module/ncs/fired_22.ncs differ diff --git a/_module/ncs/fired_3.ncs b/_module/ncs/fired_3.ncs new file mode 100644 index 0000000..f192160 Binary files /dev/null and b/_module/ncs/fired_3.ncs differ diff --git a/_module/ncs/fired_32.ncs b/_module/ncs/fired_32.ncs new file mode 100644 index 0000000..c09a3f9 Binary files /dev/null and b/_module/ncs/fired_32.ncs differ diff --git a/_module/ncs/fired_4.ncs b/_module/ncs/fired_4.ncs new file mode 100644 index 0000000..01b907c Binary files /dev/null and b/_module/ncs/fired_4.ncs differ diff --git a/_module/ncs/fired_42.ncs b/_module/ncs/fired_42.ncs new file mode 100644 index 0000000..5e771ef Binary files /dev/null and b/_module/ncs/fired_42.ncs differ diff --git a/_module/ncs/fired_6.ncs b/_module/ncs/fired_6.ncs new file mode 100644 index 0000000..f48661a Binary files /dev/null and b/_module/ncs/fired_6.ncs differ diff --git a/_module/ncs/fired_62.ncs b/_module/ncs/fired_62.ncs new file mode 100644 index 0000000..5a6874e Binary files /dev/null and b/_module/ncs/fired_62.ncs differ diff --git a/_module/ncs/fired_7.ncs b/_module/ncs/fired_7.ncs new file mode 100644 index 0000000..b95ef32 Binary files /dev/null and b/_module/ncs/fired_7.ncs differ diff --git a/_module/ncs/fired_8.ncs b/_module/ncs/fired_8.ncs new file mode 100644 index 0000000..953af91 Binary files /dev/null and b/_module/ncs/fired_8.ncs differ diff --git a/_module/ncs/fired_9.ncs b/_module/ncs/fired_9.ncs new file mode 100644 index 0000000..fe8899e Binary files /dev/null and b/_module/ncs/fired_9.ncs differ diff --git a/_module/ncs/firedeath.ncs b/_module/ncs/firedeath.ncs new file mode 100644 index 0000000..e630d4a Binary files /dev/null and b/_module/ncs/firedeath.ncs differ diff --git a/_module/ncs/firedeath1.ncs b/_module/ncs/firedeath1.ncs new file mode 100644 index 0000000..64d533d Binary files /dev/null and b/_module/ncs/firedeath1.ncs differ diff --git a/_module/ncs/firedeath3.ncs b/_module/ncs/firedeath3.ncs new file mode 100644 index 0000000..a8bf78f Binary files /dev/null and b/_module/ncs/firedeath3.ncs differ diff --git a/_module/ncs/firstsmith.ncs b/_module/ncs/firstsmith.ncs new file mode 100644 index 0000000..7a3eb60 Binary files /dev/null and b/_module/ncs/firstsmith.ncs differ diff --git a/_module/ncs/follow.ncs b/_module/ncs/follow.ncs new file mode 100644 index 0000000..03564b8 Binary files /dev/null and b/_module/ncs/follow.ncs differ diff --git a/_module/ncs/fount_off.ncs b/_module/ncs/fount_off.ncs new file mode 100644 index 0000000..85c999d Binary files /dev/null and b/_module/ncs/fount_off.ncs differ diff --git a/_module/ncs/fount_on.ncs b/_module/ncs/fount_on.ncs new file mode 100644 index 0000000..edded8f Binary files /dev/null and b/_module/ncs/fount_on.ncs differ diff --git a/_module/ncs/fountain_switch.ncs b/_module/ncs/fountain_switch.ncs new file mode 100644 index 0000000..6e8cff8 Binary files /dev/null and b/_module/ncs/fountain_switch.ncs differ diff --git a/_module/ncs/free_imbue.ncs b/_module/ncs/free_imbue.ncs new file mode 100644 index 0000000..353d8f4 Binary files /dev/null and b/_module/ncs/free_imbue.ncs differ diff --git a/_module/ncs/full_buff.ncs b/_module/ncs/full_buff.ncs new file mode 100644 index 0000000..88ceeca Binary files /dev/null and b/_module/ncs/full_buff.ncs differ diff --git a/_module/ncs/fullheal.ncs b/_module/ncs/fullheal.ncs new file mode 100644 index 0000000..3ed251a Binary files /dev/null and b/_module/ncs/fullheal.ncs differ diff --git a/_module/ncs/g_firework_wand.ncs b/_module/ncs/g_firework_wand.ncs new file mode 100644 index 0000000..3fbbf3d Binary files /dev/null and b/_module/ncs/g_firework_wand.ncs differ diff --git a/_module/ncs/g_fireworks.ncs b/_module/ncs/g_fireworks.ncs new file mode 100644 index 0000000..3256790 Binary files /dev/null and b/_module/ncs/g_fireworks.ncs differ diff --git a/_module/ncs/g_fireworksfinal.ncs b/_module/ncs/g_fireworksfinal.ncs new file mode 100644 index 0000000..f095157 Binary files /dev/null and b/_module/ncs/g_fireworksfinal.ncs differ diff --git a/_module/ncs/g_larfireworks.ncs b/_module/ncs/g_larfireworks.ncs new file mode 100644 index 0000000..7a5baeb Binary files /dev/null and b/_module/ncs/g_larfireworks.ncs differ diff --git a/_module/ncs/g_lightson.ncs b/_module/ncs/g_lightson.ncs new file mode 100644 index 0000000..3122706 Binary files /dev/null and b/_module/ncs/g_lightson.ncs differ diff --git a/_module/ncs/g_lightsout.ncs b/_module/ncs/g_lightsout.ncs new file mode 100644 index 0000000..2d7a1d4 Binary files /dev/null and b/_module/ncs/g_lightsout.ncs differ diff --git a/_module/ncs/g_medfireworks.ncs b/_module/ncs/g_medfireworks.ncs new file mode 100644 index 0000000..8e52d67 Binary files /dev/null and b/_module/ncs/g_medfireworks.ncs differ diff --git a/_module/ncs/g_missile.ncs b/_module/ncs/g_missile.ncs new file mode 100644 index 0000000..06b0011 Binary files /dev/null and b/_module/ncs/g_missile.ncs differ diff --git a/_module/ncs/g_smallfirework2.ncs b/_module/ncs/g_smallfirework2.ncs new file mode 100644 index 0000000..c66adf1 Binary files /dev/null and b/_module/ncs/g_smallfirework2.ncs differ diff --git a/_module/ncs/g_smallfireworks.ncs b/_module/ncs/g_smallfireworks.ncs new file mode 100644 index 0000000..e23713d Binary files /dev/null and b/_module/ncs/g_smallfireworks.ncs differ diff --git a/_module/ncs/gamble_board.ncs b/_module/ncs/gamble_board.ncs new file mode 100644 index 0000000..51f905f Binary files /dev/null and b/_module/ncs/gamble_board.ncs differ diff --git a/_module/ncs/gamble_reset.ncs b/_module/ncs/gamble_reset.ncs new file mode 100644 index 0000000..920b7f3 Binary files /dev/null and b/_module/ncs/gamble_reset.ncs differ diff --git a/_module/ncs/gamble_stats.ncs b/_module/ncs/gamble_stats.ncs new file mode 100644 index 0000000..b11cff6 Binary files /dev/null and b/_module/ncs/gamble_stats.ncs differ diff --git a/_module/ncs/gate_lever.ncs b/_module/ncs/gate_lever.ncs new file mode 100644 index 0000000..d3afdf3 Binary files /dev/null and b/_module/ncs/gate_lever.ncs differ diff --git a/_module/ncs/gate_msg.ncs b/_module/ncs/gate_msg.ncs new file mode 100644 index 0000000..f62f4c7 Binary files /dev/null and b/_module/ncs/gate_msg.ncs differ diff --git a/_module/ncs/gb_death.ncs b/_module/ncs/gb_death.ncs new file mode 100644 index 0000000..77f59ab Binary files /dev/null and b/_module/ncs/gb_death.ncs differ diff --git a/_module/ncs/givelevel.ncs b/_module/ncs/givelevel.ncs new file mode 100644 index 0000000..f62a441 Binary files /dev/null and b/_module/ncs/givelevel.ncs differ diff --git a/_module/ncs/god_1.ncs b/_module/ncs/god_1.ncs new file mode 100644 index 0000000..177a8fb Binary files /dev/null and b/_module/ncs/god_1.ncs differ diff --git a/_module/ncs/god_2.ncs b/_module/ncs/god_2.ncs new file mode 100644 index 0000000..04e68ec Binary files /dev/null and b/_module/ncs/god_2.ncs differ diff --git a/_module/ncs/god_3.ncs b/_module/ncs/god_3.ncs new file mode 100644 index 0000000..655329c Binary files /dev/null and b/_module/ncs/god_3.ncs differ diff --git a/_module/ncs/god_3a.ncs b/_module/ncs/god_3a.ncs new file mode 100644 index 0000000..17f5e0d Binary files /dev/null and b/_module/ncs/god_3a.ncs differ diff --git a/_module/ncs/gold_purge.ncs b/_module/ncs/gold_purge.ncs new file mode 100644 index 0000000..141bbc6 Binary files /dev/null and b/_module/ncs/gold_purge.ncs differ diff --git a/_module/ncs/gold_token.ncs b/_module/ncs/gold_token.ncs new file mode 100644 index 0000000..dd3f0ee Binary files /dev/null and b/_module/ncs/gold_token.ncs differ diff --git a/_module/ncs/gold_winnings.ncs b/_module/ncs/gold_winnings.ncs new file mode 100644 index 0000000..840dbd6 Binary files /dev/null and b/_module/ncs/gold_winnings.ncs differ diff --git a/_module/ncs/golddeath.ncs b/_module/ncs/golddeath.ncs new file mode 100644 index 0000000..89ec183 Binary files /dev/null and b/_module/ncs/golddeath.ncs differ diff --git a/_module/ncs/good_rollplay.ncs b/_module/ncs/good_rollplay.ncs new file mode 100644 index 0000000..43d9466 Binary files /dev/null and b/_module/ncs/good_rollplay.ncs differ diff --git a/_module/ncs/grate_port.ncs b/_module/ncs/grate_port.ncs new file mode 100644 index 0000000..cb76687 Binary files /dev/null and b/_module/ncs/grate_port.ncs differ diff --git a/_module/ncs/haggle1.ncs b/_module/ncs/haggle1.ncs new file mode 100644 index 0000000..274353d Binary files /dev/null and b/_module/ncs/haggle1.ncs differ diff --git a/_module/ncs/haggle2.ncs b/_module/ncs/haggle2.ncs new file mode 100644 index 0000000..9597f54 Binary files /dev/null and b/_module/ncs/haggle2.ncs differ diff --git a/_module/ncs/hal_play.ncs b/_module/ncs/hal_play.ncs new file mode 100644 index 0000000..475d1a9 Binary files /dev/null and b/_module/ncs/hal_play.ncs differ diff --git a/_module/ncs/hal_stop.ncs b/_module/ncs/hal_stop.ncs new file mode 100644 index 0000000..c5f3a69 Binary files /dev/null and b/_module/ncs/hal_stop.ncs differ diff --git a/_module/ncs/has_20k.ncs b/_module/ncs/has_20k.ncs new file mode 100644 index 0000000..3829e1f Binary files /dev/null and b/_module/ncs/has_20k.ncs differ diff --git a/_module/ncs/has_30k.ncs b/_module/ncs/has_30k.ncs new file mode 100644 index 0000000..530d9ed Binary files /dev/null and b/_module/ncs/has_30k.ncs differ diff --git a/_module/ncs/has_40k.ncs b/_module/ncs/has_40k.ncs new file mode 100644 index 0000000..997b376 Binary files /dev/null and b/_module/ncs/has_40k.ncs differ diff --git a/_module/ncs/heal_allpc.ncs b/_module/ncs/heal_allpc.ncs new file mode 100644 index 0000000..5687015 Binary files /dev/null and b/_module/ncs/heal_allpc.ncs differ diff --git a/_module/ncs/heal_allpc2.ncs b/_module/ncs/heal_allpc2.ncs new file mode 100644 index 0000000..6a0f6a1 Binary files /dev/null and b/_module/ncs/heal_allpc2.ncs differ diff --git a/_module/ncs/heal_imbue.ncs b/_module/ncs/heal_imbue.ncs new file mode 100644 index 0000000..9da5f89 Binary files /dev/null and b/_module/ncs/heal_imbue.ncs differ diff --git a/_module/ncs/heavy_shop.ncs b/_module/ncs/heavy_shop.ncs new file mode 100644 index 0000000..1b57c44 Binary files /dev/null and b/_module/ncs/heavy_shop.ncs differ diff --git a/_module/ncs/helm_shop.ncs b/_module/ncs/helm_shop.ncs new file mode 100644 index 0000000..351a62b Binary files /dev/null and b/_module/ncs/helm_shop.ncs differ diff --git a/_module/ncs/henchtest.ncs b/_module/ncs/henchtest.ncs new file mode 100644 index 0000000..4508b7f Binary files /dev/null and b/_module/ncs/henchtest.ncs differ diff --git a/_module/ncs/hero_damage.ncs b/_module/ncs/hero_damage.ncs new file mode 100644 index 0000000..32b7084 Binary files /dev/null and b/_module/ncs/hero_damage.ncs differ diff --git a/_module/ncs/hide_imbue.ncs b/_module/ncs/hide_imbue.ncs new file mode 100644 index 0000000..bfa8575 Binary files /dev/null and b/_module/ncs/hide_imbue.ncs differ diff --git a/_module/ncs/hif_onactivateit.ncs b/_module/ncs/hif_onactivateit.ncs new file mode 100644 index 0000000..9ad8600 Binary files /dev/null and b/_module/ncs/hif_onactivateit.ncs differ diff --git a/_module/ncs/hif_onclientente.ncs b/_module/ncs/hif_onclientente.ncs new file mode 100644 index 0000000..4262825 Binary files /dev/null and b/_module/ncs/hif_onclientente.ncs differ diff --git a/_module/ncs/hif_onclientleav.ncs b/_module/ncs/hif_onclientleav.ncs new file mode 100644 index 0000000..a0fe7a1 Binary files /dev/null and b/_module/ncs/hif_onclientleav.ncs differ diff --git a/_module/ncs/hif_onheartbeat.ncs b/_module/ncs/hif_onheartbeat.ncs new file mode 100644 index 0000000..61e6825 Binary files /dev/null and b/_module/ncs/hif_onheartbeat.ncs differ diff --git a/_module/ncs/hif_onmoduleload.ncs b/_module/ncs/hif_onmoduleload.ncs new file mode 100644 index 0000000..6ae0ca8 Binary files /dev/null and b/_module/ncs/hif_onmoduleload.ncs differ diff --git a/_module/ncs/hif_onplayerdeat.ncs b/_module/ncs/hif_onplayerdeat.ncs new file mode 100644 index 0000000..d0e999c Binary files /dev/null and b/_module/ncs/hif_onplayerdeat.ncs differ diff --git a/_module/ncs/hif_onplayerdyin.ncs b/_module/ncs/hif_onplayerdyin.ncs new file mode 100644 index 0000000..505f2d7 Binary files /dev/null and b/_module/ncs/hif_onplayerdyin.ncs differ diff --git a/_module/ncs/hif_onplayerleve.ncs b/_module/ncs/hif_onplayerleve.ncs new file mode 100644 index 0000000..78b1c4e Binary files /dev/null and b/_module/ncs/hif_onplayerleve.ncs differ diff --git a/_module/ncs/hif_onplayerresp.ncs b/_module/ncs/hif_onplayerresp.ncs new file mode 100644 index 0000000..7314a05 Binary files /dev/null and b/_module/ncs/hif_onplayerresp.ncs differ diff --git a/_module/ncs/hif_onplayerrest.ncs b/_module/ncs/hif_onplayerrest.ncs new file mode 100644 index 0000000..facaa0c Binary files /dev/null and b/_module/ncs/hif_onplayerrest.ncs differ diff --git a/_module/ncs/hk_test1.ncs b/_module/ncs/hk_test1.ncs new file mode 100644 index 0000000..69e3267 Binary files /dev/null and b/_module/ncs/hk_test1.ncs differ diff --git a/_module/ncs/holy_check.ncs b/_module/ncs/holy_check.ncs new file mode 100644 index 0000000..bbf52c8 Binary files /dev/null and b/_module/ncs/holy_check.ncs differ diff --git a/_module/ncs/holy_check2.ncs b/_module/ncs/holy_check2.ncs new file mode 100644 index 0000000..2dbb2f8 Binary files /dev/null and b/_module/ncs/holy_check2.ncs differ diff --git a/_module/ncs/holy_war.ncs b/_module/ncs/holy_war.ncs new file mode 100644 index 0000000..45b1cd2 Binary files /dev/null and b/_module/ncs/holy_war.ncs differ diff --git a/_module/ncs/holy_war2.ncs b/_module/ncs/holy_war2.ncs new file mode 100644 index 0000000..5a1c9c7 Binary files /dev/null and b/_module/ncs/holy_war2.ncs differ diff --git a/_module/ncs/holy_war3.ncs b/_module/ncs/holy_war3.ncs new file mode 100644 index 0000000..27721cf Binary files /dev/null and b/_module/ncs/holy_war3.ncs differ diff --git a/_module/ncs/holy_war_batt.ncs b/_module/ncs/holy_war_batt.ncs new file mode 100644 index 0000000..083275e Binary files /dev/null and b/_module/ncs/holy_war_batt.ncs differ diff --git a/_module/ncs/holy_war_battle.ncs b/_module/ncs/holy_war_battle.ncs new file mode 100644 index 0000000..d21d58b Binary files /dev/null and b/_module/ncs/holy_war_battle.ncs differ diff --git a/_module/ncs/holy_war_bet.ncs b/_module/ncs/holy_war_bet.ncs new file mode 100644 index 0000000..947f7b5 Binary files /dev/null and b/_module/ncs/holy_war_bet.ncs differ diff --git a/_module/ncs/holy_war_champ.ncs b/_module/ncs/holy_war_champ.ncs new file mode 100644 index 0000000..9b688b5 Binary files /dev/null and b/_module/ncs/holy_war_champ.ncs differ diff --git a/_module/ncs/holy_war_duel.ncs b/_module/ncs/holy_war_duel.ncs new file mode 100644 index 0000000..5be2ee5 Binary files /dev/null and b/_module/ncs/holy_war_duel.ncs differ diff --git a/_module/ncs/holy_war_fight.ncs b/_module/ncs/holy_war_fight.ncs new file mode 100644 index 0000000..e98a552 Binary files /dev/null and b/_module/ncs/holy_war_fight.ncs differ diff --git a/_module/ncs/holy_war_team.ncs b/_module/ncs/holy_war_team.ncs new file mode 100644 index 0000000..a111b91 Binary files /dev/null and b/_module/ncs/holy_war_team.ncs differ diff --git a/_module/ncs/holy_war_war.ncs b/_module/ncs/holy_war_war.ncs new file mode 100644 index 0000000..401ca10 Binary files /dev/null and b/_module/ncs/holy_war_war.ncs differ diff --git a/_module/ncs/id_store.ncs b/_module/ncs/id_store.ncs new file mode 100644 index 0000000..9fae145 Binary files /dev/null and b/_module/ncs/id_store.ncs differ diff --git a/_module/ncs/identify.ncs b/_module/ncs/identify.ncs new file mode 100644 index 0000000..72c65d3 Binary files /dev/null and b/_module/ncs/identify.ncs differ diff --git a/_module/ncs/ifless1000gp.ncs b/_module/ncs/ifless1000gp.ncs new file mode 100644 index 0000000..a869ed2 Binary files /dev/null and b/_module/ncs/ifless1000gp.ncs differ diff --git a/_module/ncs/ifless500gp.ncs b/_module/ncs/ifless500gp.ncs new file mode 100644 index 0000000..0317d8d Binary files /dev/null and b/_module/ncs/ifless500gp.ncs differ diff --git a/_module/ncs/instant_rest.ncs b/_module/ncs/instant_rest.ncs new file mode 100644 index 0000000..256ab5f Binary files /dev/null and b/_module/ncs/instant_rest.ncs differ diff --git a/_module/ncs/insurance_refund.ncs b/_module/ncs/insurance_refund.ncs new file mode 100644 index 0000000..db58311 Binary files /dev/null and b/_module/ncs/insurance_refund.ncs differ diff --git a/_module/ncs/int_imbue.ncs b/_module/ncs/int_imbue.ncs new file mode 100644 index 0000000..a103b5c Binary files /dev/null and b/_module/ncs/int_imbue.ncs differ diff --git a/_module/ncs/inv_open.ncs b/_module/ncs/inv_open.ncs new file mode 100644 index 0000000..bb99a75 Binary files /dev/null and b/_module/ncs/inv_open.ncs differ diff --git a/_module/ncs/invalid.ncs b/_module/ncs/invalid.ncs new file mode 100644 index 0000000..c5abc0e Binary files /dev/null and b/_module/ncs/invalid.ncs differ diff --git a/_module/ncs/invalid_app.ncs b/_module/ncs/invalid_app.ncs new file mode 100644 index 0000000..c4b5215 Binary files /dev/null and b/_module/ncs/invalid_app.ncs differ diff --git a/_module/ncs/invis_imbue.ncs b/_module/ncs/invis_imbue.ncs new file mode 100644 index 0000000..7318198 Binary files /dev/null and b/_module/ncs/invis_imbue.ncs differ diff --git a/_module/ncs/is_dwarf.ncs b/_module/ncs/is_dwarf.ncs new file mode 100644 index 0000000..8b5af93 Binary files /dev/null and b/_module/ncs/is_dwarf.ncs differ diff --git a/_module/ncs/is_elf.ncs b/_module/ncs/is_elf.ncs new file mode 100644 index 0000000..8d45911 Binary files /dev/null and b/_module/ncs/is_elf.ncs differ diff --git a/_module/ncs/is_gnome.ncs b/_module/ncs/is_gnome.ncs new file mode 100644 index 0000000..2cb3071 Binary files /dev/null and b/_module/ncs/is_gnome.ncs differ diff --git a/_module/ncs/is_halfelf.ncs b/_module/ncs/is_halfelf.ncs new file mode 100644 index 0000000..fba573d Binary files /dev/null and b/_module/ncs/is_halfelf.ncs differ diff --git a/_module/ncs/is_halforc.ncs b/_module/ncs/is_halforc.ncs new file mode 100644 index 0000000..c938abe Binary files /dev/null and b/_module/ncs/is_halforc.ncs differ diff --git a/_module/ncs/is_human.ncs b/_module/ncs/is_human.ncs new file mode 100644 index 0000000..5c73fdb Binary files /dev/null and b/_module/ncs/is_human.ncs differ diff --git a/_module/ncs/item_exprmnt.ncs b/_module/ncs/item_exprmnt.ncs new file mode 100644 index 0000000..3ed87b1 Binary files /dev/null and b/_module/ncs/item_exprmnt.ncs differ diff --git a/_module/ncs/item_modder.ncs b/_module/ncs/item_modder.ncs new file mode 100644 index 0000000..47e78eb Binary files /dev/null and b/_module/ncs/item_modder.ncs differ diff --git a/_module/ncs/item_modder2.ncs b/_module/ncs/item_modder2.ncs new file mode 100644 index 0000000..5b6b4ec Binary files /dev/null and b/_module/ncs/item_modder2.ncs differ diff --git a/_module/ncs/item_modder3.ncs b/_module/ncs/item_modder3.ncs new file mode 100644 index 0000000..2d18557 Binary files /dev/null and b/_module/ncs/item_modder3.ncs differ diff --git a/_module/ncs/item_modder4.ncs b/_module/ncs/item_modder4.ncs new file mode 100644 index 0000000..f74c5b5 Binary files /dev/null and b/_module/ncs/item_modder4.ncs differ diff --git a/_module/ncs/item_modder5.ncs b/_module/ncs/item_modder5.ncs new file mode 100644 index 0000000..f7f93b6 Binary files /dev/null and b/_module/ncs/item_modder5.ncs differ diff --git a/_module/ncs/item_modder6.ncs b/_module/ncs/item_modder6.ncs new file mode 100644 index 0000000..a895666 Binary files /dev/null and b/_module/ncs/item_modder6.ncs differ diff --git a/_module/ncs/item_modder7.ncs b/_module/ncs/item_modder7.ncs new file mode 100644 index 0000000..e80a509 Binary files /dev/null and b/_module/ncs/item_modder7.ncs differ diff --git a/_module/ncs/item_modder8.ncs b/_module/ncs/item_modder8.ncs new file mode 100644 index 0000000..b95cf5d Binary files /dev/null and b/_module/ncs/item_modder8.ncs differ diff --git a/_module/ncs/kd_imbue.ncs b/_module/ncs/kd_imbue.ncs new file mode 100644 index 0000000..0999c28 Binary files /dev/null and b/_module/ncs/kd_imbue.ncs differ diff --git a/_module/ncs/keen_check.ncs b/_module/ncs/keen_check.ncs new file mode 100644 index 0000000..de64b5e Binary files /dev/null and b/_module/ncs/keen_check.ncs differ diff --git a/_module/ncs/keenweap_imbue.ncs b/_module/ncs/keenweap_imbue.ncs new file mode 100644 index 0000000..23cf771 Binary files /dev/null and b/_module/ncs/keenweap_imbue.ncs differ diff --git a/_module/ncs/knockdown_imbue.ncs b/_module/ncs/knockdown_imbue.ncs new file mode 100644 index 0000000..020d624 Binary files /dev/null and b/_module/ncs/knockdown_imbue.ncs differ diff --git a/_module/ncs/ladder_out.ncs b/_module/ncs/ladder_out.ncs new file mode 100644 index 0000000..92ca4bd Binary files /dev/null and b/_module/ncs/ladder_out.ncs differ diff --git a/_module/ncs/law_evi_align.ncs b/_module/ncs/law_evi_align.ncs new file mode 100644 index 0000000..425a51c Binary files /dev/null and b/_module/ncs/law_evi_align.ncs differ diff --git a/_module/ncs/law_goo_align.ncs b/_module/ncs/law_goo_align.ncs new file mode 100644 index 0000000..18cf37d Binary files /dev/null and b/_module/ncs/law_goo_align.ncs differ diff --git a/_module/ncs/ld_imbue.ncs b/_module/ncs/ld_imbue.ncs new file mode 100644 index 0000000..536b5be Binary files /dev/null and b/_module/ncs/ld_imbue.ncs differ diff --git a/_module/ncs/lded.ncs b/_module/ncs/lded.ncs new file mode 100644 index 0000000..7f6b8fc Binary files /dev/null and b/_module/ncs/lded.ncs differ diff --git a/_module/ncs/le.ncs b/_module/ncs/le.ncs new file mode 100644 index 0000000..a4f0f6a Binary files /dev/null and b/_module/ncs/le.ncs differ diff --git a/_module/ncs/lever.ncs b/_module/ncs/lever.ncs new file mode 100644 index 0000000..c6b017d Binary files /dev/null and b/_module/ncs/lever.ncs differ diff --git a/_module/ncs/lg.ncs b/_module/ncs/lg.ncs new file mode 100644 index 0000000..7f6fb8a Binary files /dev/null and b/_module/ncs/lg.ncs differ diff --git a/_module/ncs/light_bet.ncs b/_module/ncs/light_bet.ncs new file mode 100644 index 0000000..d25c109 Binary files /dev/null and b/_module/ncs/light_bet.ncs differ diff --git a/_module/ncs/light_shop.ncs b/_module/ncs/light_shop.ncs new file mode 100644 index 0000000..3cd35ea Binary files /dev/null and b/_module/ncs/light_shop.ncs differ diff --git a/_module/ncs/ln.ncs b/_module/ncs/ln.ncs new file mode 100644 index 0000000..f35ceab Binary files /dev/null and b/_module/ncs/ln.ncs differ diff --git a/_module/ncs/loot2.ncs b/_module/ncs/loot2.ncs new file mode 100644 index 0000000..ecb1c72 Binary files /dev/null and b/_module/ncs/loot2.ncs differ diff --git a/_module/ncs/luc_dead.ncs b/_module/ncs/luc_dead.ncs new file mode 100644 index 0000000..87703c3 Binary files /dev/null and b/_module/ncs/luc_dead.ncs differ diff --git a/_module/ncs/luc_dead1.ncs b/_module/ncs/luc_dead1.ncs new file mode 100644 index 0000000..72e709f Binary files /dev/null and b/_module/ncs/luc_dead1.ncs differ diff --git a/_module/ncs/luciferdeath.ncs b/_module/ncs/luciferdeath.ncs new file mode 100644 index 0000000..4719894 Binary files /dev/null and b/_module/ncs/luciferdeath.ncs differ diff --git a/_module/ncs/lv01.ncs b/_module/ncs/lv01.ncs new file mode 100644 index 0000000..31b28bf Binary files /dev/null and b/_module/ncs/lv01.ncs differ diff --git a/_module/ncs/lv02.ncs b/_module/ncs/lv02.ncs new file mode 100644 index 0000000..8ee714c Binary files /dev/null and b/_module/ncs/lv02.ncs differ diff --git a/_module/ncs/lv03.ncs b/_module/ncs/lv03.ncs new file mode 100644 index 0000000..5d36e1f Binary files /dev/null and b/_module/ncs/lv03.ncs differ diff --git a/_module/ncs/lv04.ncs b/_module/ncs/lv04.ncs new file mode 100644 index 0000000..dbd016d Binary files /dev/null and b/_module/ncs/lv04.ncs differ diff --git a/_module/ncs/lv05.ncs b/_module/ncs/lv05.ncs new file mode 100644 index 0000000..9b20412 Binary files /dev/null and b/_module/ncs/lv05.ncs differ diff --git a/_module/ncs/lv06.ncs b/_module/ncs/lv06.ncs new file mode 100644 index 0000000..2aeab4f Binary files /dev/null and b/_module/ncs/lv06.ncs differ diff --git a/_module/ncs/lv07.ncs b/_module/ncs/lv07.ncs new file mode 100644 index 0000000..0989d05 Binary files /dev/null and b/_module/ncs/lv07.ncs differ diff --git a/_module/ncs/lv08.ncs b/_module/ncs/lv08.ncs new file mode 100644 index 0000000..48a93dc Binary files /dev/null and b/_module/ncs/lv08.ncs differ diff --git a/_module/ncs/lv09.ncs b/_module/ncs/lv09.ncs new file mode 100644 index 0000000..711ed8a Binary files /dev/null and b/_module/ncs/lv09.ncs differ diff --git a/_module/ncs/lv10.ncs b/_module/ncs/lv10.ncs new file mode 100644 index 0000000..4a8221c Binary files /dev/null and b/_module/ncs/lv10.ncs differ diff --git a/_module/ncs/lv11.ncs b/_module/ncs/lv11.ncs new file mode 100644 index 0000000..5d9de2e Binary files /dev/null and b/_module/ncs/lv11.ncs differ diff --git a/_module/ncs/lv12.ncs b/_module/ncs/lv12.ncs new file mode 100644 index 0000000..61787cf Binary files /dev/null and b/_module/ncs/lv12.ncs differ diff --git a/_module/ncs/lv13.ncs b/_module/ncs/lv13.ncs new file mode 100644 index 0000000..77c9cd5 Binary files /dev/null and b/_module/ncs/lv13.ncs differ diff --git a/_module/ncs/lv14.ncs b/_module/ncs/lv14.ncs new file mode 100644 index 0000000..416514d Binary files /dev/null and b/_module/ncs/lv14.ncs differ diff --git a/_module/ncs/lv15.ncs b/_module/ncs/lv15.ncs new file mode 100644 index 0000000..b9f0f41 Binary files /dev/null and b/_module/ncs/lv15.ncs differ diff --git a/_module/ncs/lv16.ncs b/_module/ncs/lv16.ncs new file mode 100644 index 0000000..cd3278b Binary files /dev/null and b/_module/ncs/lv16.ncs differ diff --git a/_module/ncs/lv17.ncs b/_module/ncs/lv17.ncs new file mode 100644 index 0000000..f9bda65 Binary files /dev/null and b/_module/ncs/lv17.ncs differ diff --git a/_module/ncs/lv18.ncs b/_module/ncs/lv18.ncs new file mode 100644 index 0000000..dbc98df Binary files /dev/null and b/_module/ncs/lv18.ncs differ diff --git a/_module/ncs/lv19.ncs b/_module/ncs/lv19.ncs new file mode 100644 index 0000000..2326ae9 Binary files /dev/null and b/_module/ncs/lv19.ncs differ diff --git a/_module/ncs/lv20.ncs b/_module/ncs/lv20.ncs new file mode 100644 index 0000000..714df97 Binary files /dev/null and b/_module/ncs/lv20.ncs differ diff --git a/_module/ncs/lv21.ncs b/_module/ncs/lv21.ncs new file mode 100644 index 0000000..4b758b9 Binary files /dev/null and b/_module/ncs/lv21.ncs differ diff --git a/_module/ncs/lv22.ncs b/_module/ncs/lv22.ncs new file mode 100644 index 0000000..20d0ae0 Binary files /dev/null and b/_module/ncs/lv22.ncs differ diff --git a/_module/ncs/lv23.ncs b/_module/ncs/lv23.ncs new file mode 100644 index 0000000..93270b2 Binary files /dev/null and b/_module/ncs/lv23.ncs differ diff --git a/_module/ncs/lv24.ncs b/_module/ncs/lv24.ncs new file mode 100644 index 0000000..027407c Binary files /dev/null and b/_module/ncs/lv24.ncs differ diff --git a/_module/ncs/lv25.ncs b/_module/ncs/lv25.ncs new file mode 100644 index 0000000..1d7d345 Binary files /dev/null and b/_module/ncs/lv25.ncs differ diff --git a/_module/ncs/lv26.ncs b/_module/ncs/lv26.ncs new file mode 100644 index 0000000..de6b3d2 Binary files /dev/null and b/_module/ncs/lv26.ncs differ diff --git a/_module/ncs/lv27.ncs b/_module/ncs/lv27.ncs new file mode 100644 index 0000000..89a9e13 Binary files /dev/null and b/_module/ncs/lv27.ncs differ diff --git a/_module/ncs/lv28.ncs b/_module/ncs/lv28.ncs new file mode 100644 index 0000000..2617c84 Binary files /dev/null and b/_module/ncs/lv28.ncs differ diff --git a/_module/ncs/lv29.ncs b/_module/ncs/lv29.ncs new file mode 100644 index 0000000..9a20f44 Binary files /dev/null and b/_module/ncs/lv29.ncs differ diff --git a/_module/ncs/lv30.ncs b/_module/ncs/lv30.ncs new file mode 100644 index 0000000..90259ff Binary files /dev/null and b/_module/ncs/lv30.ncs differ diff --git a/_module/ncs/lv31.ncs b/_module/ncs/lv31.ncs new file mode 100644 index 0000000..9bad654 Binary files /dev/null and b/_module/ncs/lv31.ncs differ diff --git a/_module/ncs/lv32.ncs b/_module/ncs/lv32.ncs new file mode 100644 index 0000000..121ec4e Binary files /dev/null and b/_module/ncs/lv32.ncs differ diff --git a/_module/ncs/lv33.ncs b/_module/ncs/lv33.ncs new file mode 100644 index 0000000..02a0cfd Binary files /dev/null and b/_module/ncs/lv33.ncs differ diff --git a/_module/ncs/lv34.ncs b/_module/ncs/lv34.ncs new file mode 100644 index 0000000..85cec21 Binary files /dev/null and b/_module/ncs/lv34.ncs differ diff --git a/_module/ncs/lv35.ncs b/_module/ncs/lv35.ncs new file mode 100644 index 0000000..d9d43b7 Binary files /dev/null and b/_module/ncs/lv35.ncs differ diff --git a/_module/ncs/lv36.ncs b/_module/ncs/lv36.ncs new file mode 100644 index 0000000..b45b5d7 Binary files /dev/null and b/_module/ncs/lv36.ncs differ diff --git a/_module/ncs/lv37.ncs b/_module/ncs/lv37.ncs new file mode 100644 index 0000000..fa3ae88 Binary files /dev/null and b/_module/ncs/lv37.ncs differ diff --git a/_module/ncs/lv38.ncs b/_module/ncs/lv38.ncs new file mode 100644 index 0000000..d8f505b Binary files /dev/null and b/_module/ncs/lv38.ncs differ diff --git a/_module/ncs/lv39.ncs b/_module/ncs/lv39.ncs new file mode 100644 index 0000000..ecf7b6a Binary files /dev/null and b/_module/ncs/lv39.ncs differ diff --git a/_module/ncs/lv40.ncs b/_module/ncs/lv40.ncs new file mode 100644 index 0000000..fad8b14 Binary files /dev/null and b/_module/ncs/lv40.ncs differ diff --git a/_module/ncs/m_bane_n.ncs b/_module/ncs/m_bane_n.ncs new file mode 100644 index 0000000..4817077 Binary files /dev/null and b/_module/ncs/m_bane_n.ncs differ diff --git a/_module/ncs/m_blarog.ncs b/_module/ncs/m_blarog.ncs new file mode 100644 index 0000000..29ccacf Binary files /dev/null and b/_module/ncs/m_blarog.ncs differ diff --git a/_module/ncs/m_blarog2.ncs b/_module/ncs/m_blarog2.ncs new file mode 100644 index 0000000..a66fc8b Binary files /dev/null and b/_module/ncs/m_blarog2.ncs differ diff --git a/_module/ncs/m_blarog_n.ncs b/_module/ncs/m_blarog_n.ncs new file mode 100644 index 0000000..f942686 Binary files /dev/null and b/_module/ncs/m_blarog_n.ncs differ diff --git a/_module/ncs/m_dopple.ncs b/_module/ncs/m_dopple.ncs new file mode 100644 index 0000000..1274ff9 Binary files /dev/null and b/_module/ncs/m_dopple.ncs differ diff --git a/_module/ncs/m_dopple2.ncs b/_module/ncs/m_dopple2.ncs new file mode 100644 index 0000000..8e3e1e8 Binary files /dev/null and b/_module/ncs/m_dopple2.ncs differ diff --git a/_module/ncs/m_dopple_n.ncs b/_module/ncs/m_dopple_n.ncs new file mode 100644 index 0000000..1a8d919 Binary files /dev/null and b/_module/ncs/m_dopple_n.ncs differ diff --git a/_module/ncs/m_dragon.ncs b/_module/ncs/m_dragon.ncs new file mode 100644 index 0000000..be28b00 Binary files /dev/null and b/_module/ncs/m_dragon.ncs differ diff --git a/_module/ncs/m_dragon2.ncs b/_module/ncs/m_dragon2.ncs new file mode 100644 index 0000000..f4a5996 Binary files /dev/null and b/_module/ncs/m_dragon2.ncs differ diff --git a/_module/ncs/m_fiend.ncs b/_module/ncs/m_fiend.ncs new file mode 100644 index 0000000..1f8a55c Binary files /dev/null and b/_module/ncs/m_fiend.ncs differ diff --git a/_module/ncs/m_fiend2.ncs b/_module/ncs/m_fiend2.ncs new file mode 100644 index 0000000..6d8b013 Binary files /dev/null and b/_module/ncs/m_fiend2.ncs differ diff --git a/_module/ncs/m_fiend_d.ncs b/_module/ncs/m_fiend_d.ncs new file mode 100644 index 0000000..3b8f32c Binary files /dev/null and b/_module/ncs/m_fiend_d.ncs differ diff --git a/_module/ncs/m_lord.ncs b/_module/ncs/m_lord.ncs new file mode 100644 index 0000000..b30ac60 Binary files /dev/null and b/_module/ncs/m_lord.ncs differ diff --git a/_module/ncs/m_lord2.ncs b/_module/ncs/m_lord2.ncs new file mode 100644 index 0000000..fc63fd6 Binary files /dev/null and b/_module/ncs/m_lord2.ncs differ diff --git a/_module/ncs/m_lord_n.ncs b/_module/ncs/m_lord_n.ncs new file mode 100644 index 0000000..4c35ca2 Binary files /dev/null and b/_module/ncs/m_lord_n.ncs differ diff --git a/_module/ncs/m_marilith.ncs b/_module/ncs/m_marilith.ncs new file mode 100644 index 0000000..90de3d0 Binary files /dev/null and b/_module/ncs/m_marilith.ncs differ diff --git a/_module/ncs/m_marilith2.ncs b/_module/ncs/m_marilith2.ncs new file mode 100644 index 0000000..e9ca863 Binary files /dev/null and b/_module/ncs/m_marilith2.ncs differ diff --git a/_module/ncs/m_marilith_d.ncs b/_module/ncs/m_marilith_d.ncs new file mode 100644 index 0000000..d5256dc Binary files /dev/null and b/_module/ncs/m_marilith_d.ncs differ diff --git a/_module/ncs/m_marilith_n.ncs b/_module/ncs/m_marilith_n.ncs new file mode 100644 index 0000000..d5256dc Binary files /dev/null and b/_module/ncs/m_marilith_n.ncs differ diff --git a/_module/ncs/m_mistress.ncs b/_module/ncs/m_mistress.ncs new file mode 100644 index 0000000..9a76535 Binary files /dev/null and b/_module/ncs/m_mistress.ncs differ diff --git a/_module/ncs/m_mistress2.ncs b/_module/ncs/m_mistress2.ncs new file mode 100644 index 0000000..c2664b2 Binary files /dev/null and b/_module/ncs/m_mistress2.ncs differ diff --git a/_module/ncs/m_mistress_n.ncs b/_module/ncs/m_mistress_n.ncs new file mode 100644 index 0000000..9908126 Binary files /dev/null and b/_module/ncs/m_mistress_n.ncs differ diff --git a/_module/ncs/m_pale.ncs b/_module/ncs/m_pale.ncs new file mode 100644 index 0000000..934d709 Binary files /dev/null and b/_module/ncs/m_pale.ncs differ diff --git a/_module/ncs/m_pale2.ncs b/_module/ncs/m_pale2.ncs new file mode 100644 index 0000000..09069d9 Binary files /dev/null and b/_module/ncs/m_pale2.ncs differ diff --git a/_module/ncs/m_pale_n.ncs b/_module/ncs/m_pale_n.ncs new file mode 100644 index 0000000..c9c0098 Binary files /dev/null and b/_module/ncs/m_pale_n.ncs differ diff --git a/_module/ncs/m_pitfiend.ncs b/_module/ncs/m_pitfiend.ncs new file mode 100644 index 0000000..cef63e9 Binary files /dev/null and b/_module/ncs/m_pitfiend.ncs differ diff --git a/_module/ncs/m_pitfiend2.ncs b/_module/ncs/m_pitfiend2.ncs new file mode 100644 index 0000000..45a18a8 Binary files /dev/null and b/_module/ncs/m_pitfiend2.ncs differ diff --git a/_module/ncs/m_pitfiend_d.ncs b/_module/ncs/m_pitfiend_d.ncs new file mode 100644 index 0000000..9620a22 Binary files /dev/null and b/_module/ncs/m_pitfiend_d.ncs differ diff --git a/_module/ncs/ma_imbue25.ncs b/_module/ncs/ma_imbue25.ncs new file mode 100644 index 0000000..02c11bd Binary files /dev/null and b/_module/ncs/ma_imbue25.ncs differ diff --git a/_module/ncs/ma_imbue252.ncs b/_module/ncs/ma_imbue252.ncs new file mode 100644 index 0000000..b05410a Binary files /dev/null and b/_module/ncs/ma_imbue252.ncs differ diff --git a/_module/ncs/ma_imbue252a.ncs b/_module/ncs/ma_imbue252a.ncs new file mode 100644 index 0000000..b05410a Binary files /dev/null and b/_module/ncs/ma_imbue252a.ncs differ diff --git a/_module/ncs/madone_1.ncs b/_module/ncs/madone_1.ncs new file mode 100644 index 0000000..d9ce1ac Binary files /dev/null and b/_module/ncs/madone_1.ncs differ diff --git a/_module/ncs/madone_12.ncs b/_module/ncs/madone_12.ncs new file mode 100644 index 0000000..ec1e79f Binary files /dev/null and b/_module/ncs/madone_12.ncs differ diff --git a/_module/ncs/madred_imbue_2.ncs b/_module/ncs/madred_imbue_2.ncs new file mode 100644 index 0000000..465f68a Binary files /dev/null and b/_module/ncs/madred_imbue_2.ncs differ diff --git a/_module/ncs/madred_imbue_22.ncs b/_module/ncs/madred_imbue_22.ncs new file mode 100644 index 0000000..d0a714b Binary files /dev/null and b/_module/ncs/madred_imbue_22.ncs differ diff --git a/_module/ncs/madred_imbue_3.ncs b/_module/ncs/madred_imbue_3.ncs new file mode 100644 index 0000000..64d5481 Binary files /dev/null and b/_module/ncs/madred_imbue_3.ncs differ diff --git a/_module/ncs/madred_imbue_32.ncs b/_module/ncs/madred_imbue_32.ncs new file mode 100644 index 0000000..eb973af Binary files /dev/null and b/_module/ncs/madred_imbue_32.ncs differ diff --git a/_module/ncs/madred_imbue_4.ncs b/_module/ncs/madred_imbue_4.ncs new file mode 100644 index 0000000..74a4d59 Binary files /dev/null and b/_module/ncs/madred_imbue_4.ncs differ diff --git a/_module/ncs/madred_imbue_5.ncs b/_module/ncs/madred_imbue_5.ncs new file mode 100644 index 0000000..60d5441 Binary files /dev/null and b/_module/ncs/madred_imbue_5.ncs differ diff --git a/_module/ncs/mag_chain.ncs b/_module/ncs/mag_chain.ncs new file mode 100644 index 0000000..0887386 Binary files /dev/null and b/_module/ncs/mag_chain.ncs differ diff --git a/_module/ncs/magic_imbue.ncs b/_module/ncs/magic_imbue.ncs new file mode 100644 index 0000000..01ec314 Binary files /dev/null and b/_module/ncs/magic_imbue.ncs differ diff --git a/_module/ncs/magic_imbue_arm.ncs b/_module/ncs/magic_imbue_arm.ncs new file mode 100644 index 0000000..8057d42 Binary files /dev/null and b/_module/ncs/magic_imbue_arm.ncs differ diff --git a/_module/ncs/mamax_reached.ncs b/_module/ncs/mamax_reached.ncs new file mode 100644 index 0000000..b08df3a Binary files /dev/null and b/_module/ncs/mamax_reached.ncs differ diff --git a/_module/ncs/mamax_reached1.ncs b/_module/ncs/mamax_reached1.ncs new file mode 100644 index 0000000..55065b3 Binary files /dev/null and b/_module/ncs/mamax_reached1.ncs differ diff --git a/_module/ncs/mamax_reached12.ncs b/_module/ncs/mamax_reached12.ncs new file mode 100644 index 0000000..2b7b11d Binary files /dev/null and b/_module/ncs/mamax_reached12.ncs differ diff --git a/_module/ncs/mamax_reached2.ncs b/_module/ncs/mamax_reached2.ncs new file mode 100644 index 0000000..18b56b8 Binary files /dev/null and b/_module/ncs/mamax_reached2.ncs differ diff --git a/_module/ncs/mared1_1.ncs b/_module/ncs/mared1_1.ncs new file mode 100644 index 0000000..097daf7 Binary files /dev/null and b/_module/ncs/mared1_1.ncs differ diff --git a/_module/ncs/mared1_12.ncs b/_module/ncs/mared1_12.ncs new file mode 100644 index 0000000..4938ef9 Binary files /dev/null and b/_module/ncs/mared1_12.ncs differ diff --git a/_module/ncs/mared_0.ncs b/_module/ncs/mared_0.ncs new file mode 100644 index 0000000..7b17421 Binary files /dev/null and b/_module/ncs/mared_0.ncs differ diff --git a/_module/ncs/mared_02.ncs b/_module/ncs/mared_02.ncs new file mode 100644 index 0000000..620e8cf Binary files /dev/null and b/_module/ncs/mared_02.ncs differ diff --git a/_module/ncs/mared_1.ncs b/_module/ncs/mared_1.ncs new file mode 100644 index 0000000..9be5704 Binary files /dev/null and b/_module/ncs/mared_1.ncs differ diff --git a/_module/ncs/mared_10.ncs b/_module/ncs/mared_10.ncs new file mode 100644 index 0000000..db93470 Binary files /dev/null and b/_module/ncs/mared_10.ncs differ diff --git a/_module/ncs/mared_11.ncs b/_module/ncs/mared_11.ncs new file mode 100644 index 0000000..7464fc9 Binary files /dev/null and b/_module/ncs/mared_11.ncs differ diff --git a/_module/ncs/mared_12.ncs b/_module/ncs/mared_12.ncs new file mode 100644 index 0000000..a3b6b55 Binary files /dev/null and b/_module/ncs/mared_12.ncs differ diff --git a/_module/ncs/mared_1222.ncs b/_module/ncs/mared_1222.ncs new file mode 100644 index 0000000..fccbd4e Binary files /dev/null and b/_module/ncs/mared_1222.ncs differ diff --git a/_module/ncs/mared_2.ncs b/_module/ncs/mared_2.ncs new file mode 100644 index 0000000..e8f35d0 Binary files /dev/null and b/_module/ncs/mared_2.ncs differ diff --git a/_module/ncs/mared_22.ncs b/_module/ncs/mared_22.ncs new file mode 100644 index 0000000..4bb6e96 Binary files /dev/null and b/_module/ncs/mared_22.ncs differ diff --git a/_module/ncs/mared_3.ncs b/_module/ncs/mared_3.ncs new file mode 100644 index 0000000..9c26e41 Binary files /dev/null and b/_module/ncs/mared_3.ncs differ diff --git a/_module/ncs/mared_32.ncs b/_module/ncs/mared_32.ncs new file mode 100644 index 0000000..9b9718e Binary files /dev/null and b/_module/ncs/mared_32.ncs differ diff --git a/_module/ncs/mared_4.ncs b/_module/ncs/mared_4.ncs new file mode 100644 index 0000000..e6dca03 Binary files /dev/null and b/_module/ncs/mared_4.ncs differ diff --git a/_module/ncs/mared_42.ncs b/_module/ncs/mared_42.ncs new file mode 100644 index 0000000..1973c7c Binary files /dev/null and b/_module/ncs/mared_42.ncs differ diff --git a/_module/ncs/mared_6.ncs b/_module/ncs/mared_6.ncs new file mode 100644 index 0000000..4f966c4 Binary files /dev/null and b/_module/ncs/mared_6.ncs differ diff --git a/_module/ncs/mared_62.ncs b/_module/ncs/mared_62.ncs new file mode 100644 index 0000000..3447c29 Binary files /dev/null and b/_module/ncs/mared_62.ncs differ diff --git a/_module/ncs/mared_7.ncs b/_module/ncs/mared_7.ncs new file mode 100644 index 0000000..7d29afc Binary files /dev/null and b/_module/ncs/mared_7.ncs differ diff --git a/_module/ncs/mared_8.ncs b/_module/ncs/mared_8.ncs new file mode 100644 index 0000000..575d0ba Binary files /dev/null and b/_module/ncs/mared_8.ncs differ diff --git a/_module/ncs/mared_9.ncs b/_module/ncs/mared_9.ncs new file mode 100644 index 0000000..2b97175 Binary files /dev/null and b/_module/ncs/mared_9.ncs differ diff --git a/_module/ncs/mass_imbue.ncs b/_module/ncs/mass_imbue.ncs new file mode 100644 index 0000000..1133383 Binary files /dev/null and b/_module/ncs/mass_imbue.ncs differ diff --git a/_module/ncs/mass_imbue_bow.ncs b/_module/ncs/mass_imbue_bow.ncs new file mode 100644 index 0000000..d072584 Binary files /dev/null and b/_module/ncs/mass_imbue_bow.ncs differ diff --git a/_module/ncs/master_switch.ncs b/_module/ncs/master_switch.ncs new file mode 100644 index 0000000..46b5514 Binary files /dev/null and b/_module/ncs/master_switch.ncs differ diff --git a/_module/ncs/max_reduction.ncs b/_module/ncs/max_reduction.ncs new file mode 100644 index 0000000..6448417 Binary files /dev/null and b/_module/ncs/max_reduction.ncs differ diff --git a/_module/ncs/max_spell.ncs b/_module/ncs/max_spell.ncs new file mode 100644 index 0000000..a4d3ae7 Binary files /dev/null and b/_module/ncs/max_spell.ncs differ diff --git a/_module/ncs/mc_facing.ncs b/_module/ncs/mc_facing.ncs new file mode 100644 index 0000000..41ad4f0 Binary files /dev/null and b/_module/ncs/mc_facing.ncs differ diff --git a/_module/ncs/mc_not.ncs b/_module/ncs/mc_not.ncs new file mode 100644 index 0000000..b1331ac Binary files /dev/null and b/_module/ncs/mc_not.ncs differ diff --git a/_module/ncs/mc_not2.ncs b/_module/ncs/mc_not2.ncs new file mode 100644 index 0000000..903c5af Binary files /dev/null and b/_module/ncs/mc_not2.ncs differ diff --git a/_module/ncs/mcgdred_imbue_32.ncs b/_module/ncs/mcgdred_imbue_32.ncs new file mode 100644 index 0000000..ffbfa4a Binary files /dev/null and b/_module/ncs/mcgdred_imbue_32.ncs differ diff --git a/_module/ncs/mcng_imbue252.ncs b/_module/ncs/mcng_imbue252.ncs new file mode 100644 index 0000000..1a5206d Binary files /dev/null and b/_module/ncs/mcng_imbue252.ncs differ diff --git a/_module/ncs/mcngdone_12.ncs b/_module/ncs/mcngdone_12.ncs new file mode 100644 index 0000000..60bf365 Binary files /dev/null and b/_module/ncs/mcngdone_12.ncs differ diff --git a/_module/ncs/mcnged_12.ncs b/_module/ncs/mcnged_12.ncs new file mode 100644 index 0000000..faa8329 Binary files /dev/null and b/_module/ncs/mcnged_12.ncs differ diff --git a/_module/ncs/mcngred1_12.ncs b/_module/ncs/mcngred1_12.ncs new file mode 100644 index 0000000..e64b9a1 Binary files /dev/null and b/_module/ncs/mcngred1_12.ncs differ diff --git a/_module/ncs/mcngred_02.ncs b/_module/ncs/mcngred_02.ncs new file mode 100644 index 0000000..15d5a8d Binary files /dev/null and b/_module/ncs/mcngred_02.ncs differ diff --git a/_module/ncs/mcngred_32.ncs b/_module/ncs/mcngred_32.ncs new file mode 100644 index 0000000..4a1be41 Binary files /dev/null and b/_module/ncs/mcngred_32.ncs differ diff --git a/_module/ncs/mcngred_42.ncs b/_module/ncs/mcngred_42.ncs new file mode 100644 index 0000000..02abf62 Binary files /dev/null and b/_module/ncs/mcngred_42.ncs differ diff --git a/_module/ncs/med_shop.ncs b/_module/ncs/med_shop.ncs new file mode 100644 index 0000000..6ee6eab Binary files /dev/null and b/_module/ncs/med_shop.ncs differ diff --git a/_module/ncs/mighty_imbue.ncs b/_module/ncs/mighty_imbue.ncs new file mode 100644 index 0000000..41c5125 Binary files /dev/null and b/_module/ncs/mighty_imbue.ncs differ diff --git a/_module/ncs/mind_imbue.ncs b/_module/ncs/mind_imbue.ncs new file mode 100644 index 0000000..2358dbf Binary files /dev/null and b/_module/ncs/mind_imbue.ncs differ diff --git a/_module/ncs/mngdred_imbue_22.ncs b/_module/ncs/mngdred_imbue_22.ncs new file mode 100644 index 0000000..aab25dd Binary files /dev/null and b/_module/ncs/mngdred_imbue_22.ncs differ diff --git a/_module/ncs/mod_mode.ncs b/_module/ncs/mod_mode.ncs new file mode 100644 index 0000000..906ffb5 Binary files /dev/null and b/_module/ncs/mod_mode.ncs differ diff --git a/_module/ncs/mod_set.ncs b/_module/ncs/mod_set.ncs new file mode 100644 index 0000000..dc512a7 Binary files /dev/null and b/_module/ncs/mod_set.ncs differ diff --git a/_module/ncs/mode_change.ncs b/_module/ncs/mode_change.ncs new file mode 100644 index 0000000..6baa077 Binary files /dev/null and b/_module/ncs/mode_change.ncs differ diff --git a/_module/ncs/modload.ncs b/_module/ncs/modload.ncs new file mode 100644 index 0000000..d3042da Binary files /dev/null and b/_module/ncs/modload.ncs differ diff --git a/_module/ncs/monkchek.ncs b/_module/ncs/monkchek.ncs new file mode 100644 index 0000000..3701c44 Binary files /dev/null and b/_module/ncs/monkchek.ncs differ diff --git a/_module/ncs/monst_check.ncs b/_module/ncs/monst_check.ncs new file mode 100644 index 0000000..f6daced Binary files /dev/null and b/_module/ncs/monst_check.ncs differ diff --git a/_module/ncs/monster_bye.ncs b/_module/ncs/monster_bye.ncs new file mode 100644 index 0000000..e798ade Binary files /dev/null and b/_module/ncs/monster_bye.ncs differ diff --git a/_module/ncs/monster_damage.ncs b/_module/ncs/monster_damage.ncs new file mode 100644 index 0000000..b8c10bf Binary files /dev/null and b/_module/ncs/monster_damage.ncs differ diff --git a/_module/ncs/music_start.ncs b/_module/ncs/music_start.ncs new file mode 100644 index 0000000..728ab5e Binary files /dev/null and b/_module/ncs/music_start.ncs differ diff --git a/_module/ncs/musthave_10k.ncs b/_module/ncs/musthave_10k.ncs new file mode 100644 index 0000000..0ffc5f8 Binary files /dev/null and b/_module/ncs/musthave_10k.ncs differ diff --git a/_module/ncs/musthave_200k.ncs b/_module/ncs/musthave_200k.ncs new file mode 100644 index 0000000..8d0cf7c Binary files /dev/null and b/_module/ncs/musthave_200k.ncs differ diff --git a/_module/ncs/n_blade.ncs b/_module/ncs/n_blade.ncs new file mode 100644 index 0000000..6e9bf4f Binary files /dev/null and b/_module/ncs/n_blade.ncs differ diff --git a/_module/ncs/n_johnny.ncs b/_module/ncs/n_johnny.ncs new file mode 100644 index 0000000..31712bc Binary files /dev/null and b/_module/ncs/n_johnny.ncs differ diff --git a/_module/ncs/n_paremus.ncs b/_module/ncs/n_paremus.ncs new file mode 100644 index 0000000..948ab40 Binary files /dev/null and b/_module/ncs/n_paremus.ncs differ diff --git a/_module/ncs/n_starseeker.ncs b/_module/ncs/n_starseeker.ncs new file mode 100644 index 0000000..ff6003a Binary files /dev/null and b/_module/ncs/n_starseeker.ncs differ diff --git a/_module/ncs/n_start.ncs b/_module/ncs/n_start.ncs new file mode 100644 index 0000000..cf5c68f Binary files /dev/null and b/_module/ncs/n_start.ncs differ diff --git a/_module/ncs/ne.ncs b/_module/ncs/ne.ncs new file mode 100644 index 0000000..ccb47b5 Binary files /dev/null and b/_module/ncs/ne.ncs differ diff --git a/_module/ncs/neg_imbue.ncs b/_module/ncs/neg_imbue.ncs new file mode 100644 index 0000000..efb4c84 Binary files /dev/null and b/_module/ncs/neg_imbue.ncs differ diff --git a/_module/ncs/neg_imbue_arm.ncs b/_module/ncs/neg_imbue_arm.ncs new file mode 100644 index 0000000..351caa3 Binary files /dev/null and b/_module/ncs/neg_imbue_arm.ncs differ diff --git a/_module/ncs/neu_evi_align.ncs b/_module/ncs/neu_evi_align.ncs new file mode 100644 index 0000000..9cf4151 Binary files /dev/null and b/_module/ncs/neu_evi_align.ncs differ diff --git a/_module/ncs/neu_goo_align.ncs b/_module/ncs/neu_goo_align.ncs new file mode 100644 index 0000000..c7197c0 Binary files /dev/null and b/_module/ncs/neu_goo_align.ncs differ diff --git a/_module/ncs/neutral_rollplay.ncs b/_module/ncs/neutral_rollplay.ncs new file mode 100644 index 0000000..333ea8a Binary files /dev/null and b/_module/ncs/neutral_rollplay.ncs differ diff --git a/_module/ncs/ng.ncs b/_module/ncs/ng.ncs new file mode 100644 index 0000000..f41cd5f Binary files /dev/null and b/_module/ncs/ng.ncs differ diff --git a/_module/ncs/ng_imbue25.ncs b/_module/ncs/ng_imbue25.ncs new file mode 100644 index 0000000..f453b20 Binary files /dev/null and b/_module/ncs/ng_imbue25.ncs differ diff --git a/_module/ncs/ng_imbue252.ncs b/_module/ncs/ng_imbue252.ncs new file mode 100644 index 0000000..c77b692 Binary files /dev/null and b/_module/ncs/ng_imbue252.ncs differ diff --git a/_module/ncs/ngdone_1.ncs b/_module/ncs/ngdone_1.ncs new file mode 100644 index 0000000..f894fc7 Binary files /dev/null and b/_module/ncs/ngdone_1.ncs differ diff --git a/_module/ncs/ngdone_12.ncs b/_module/ncs/ngdone_12.ncs new file mode 100644 index 0000000..33f8266 Binary files /dev/null and b/_module/ncs/ngdone_12.ncs differ diff --git a/_module/ncs/ngdred_imbue_2.ncs b/_module/ncs/ngdred_imbue_2.ncs new file mode 100644 index 0000000..959c140 Binary files /dev/null and b/_module/ncs/ngdred_imbue_2.ncs differ diff --git a/_module/ncs/ngdred_imbue_22.ncs b/_module/ncs/ngdred_imbue_22.ncs new file mode 100644 index 0000000..b7d1371 Binary files /dev/null and b/_module/ncs/ngdred_imbue_22.ncs differ diff --git a/_module/ncs/ngdred_imbue_3.ncs b/_module/ncs/ngdred_imbue_3.ncs new file mode 100644 index 0000000..2196a3b Binary files /dev/null and b/_module/ncs/ngdred_imbue_3.ncs differ diff --git a/_module/ncs/ngdred_imbue_32.ncs b/_module/ncs/ngdred_imbue_32.ncs new file mode 100644 index 0000000..1c88074 Binary files /dev/null and b/_module/ncs/ngdred_imbue_32.ncs differ diff --git a/_module/ncs/ngdred_imbue_4.ncs b/_module/ncs/ngdred_imbue_4.ncs new file mode 100644 index 0000000..5e394b1 Binary files /dev/null and b/_module/ncs/ngdred_imbue_4.ncs differ diff --git a/_module/ncs/ngdred_imbue_5.ncs b/_module/ncs/ngdred_imbue_5.ncs new file mode 100644 index 0000000..d3b992f Binary files /dev/null and b/_module/ncs/ngdred_imbue_5.ncs differ diff --git a/_module/ncs/nged_1.ncs b/_module/ncs/nged_1.ncs new file mode 100644 index 0000000..6271daf Binary files /dev/null and b/_module/ncs/nged_1.ncs differ diff --git a/_module/ncs/nged_12.ncs b/_module/ncs/nged_12.ncs new file mode 100644 index 0000000..88a8a90 Binary files /dev/null and b/_module/ncs/nged_12.ncs differ diff --git a/_module/ncs/ngmax_damred.ncs b/_module/ncs/ngmax_damred.ncs new file mode 100644 index 0000000..ff0d1a8 Binary files /dev/null and b/_module/ncs/ngmax_damred.ncs differ diff --git a/_module/ncs/ngmax_damred1.ncs b/_module/ncs/ngmax_damred1.ncs new file mode 100644 index 0000000..657194a Binary files /dev/null and b/_module/ncs/ngmax_damred1.ncs differ diff --git a/_module/ncs/ngmax_damred12.ncs b/_module/ncs/ngmax_damred12.ncs new file mode 100644 index 0000000..2de5e4e Binary files /dev/null and b/_module/ncs/ngmax_damred12.ncs differ diff --git a/_module/ncs/ngmax_damred2.ncs b/_module/ncs/ngmax_damred2.ncs new file mode 100644 index 0000000..4cc7490 Binary files /dev/null and b/_module/ncs/ngmax_damred2.ncs differ diff --git a/_module/ncs/ngred1_1.ncs b/_module/ncs/ngred1_1.ncs new file mode 100644 index 0000000..407256e Binary files /dev/null and b/_module/ncs/ngred1_1.ncs differ diff --git a/_module/ncs/ngred1_12.ncs b/_module/ncs/ngred1_12.ncs new file mode 100644 index 0000000..44a8ba6 Binary files /dev/null and b/_module/ncs/ngred1_12.ncs differ diff --git a/_module/ncs/ngred_0.ncs b/_module/ncs/ngred_0.ncs new file mode 100644 index 0000000..2a2ff6f Binary files /dev/null and b/_module/ncs/ngred_0.ncs differ diff --git a/_module/ncs/ngred_02.ncs b/_module/ncs/ngred_02.ncs new file mode 100644 index 0000000..584c0b7 Binary files /dev/null and b/_module/ncs/ngred_02.ncs differ diff --git a/_module/ncs/ngred_10.ncs b/_module/ncs/ngred_10.ncs new file mode 100644 index 0000000..1b5052a Binary files /dev/null and b/_module/ncs/ngred_10.ncs differ diff --git a/_module/ncs/ngred_11.ncs b/_module/ncs/ngred_11.ncs new file mode 100644 index 0000000..c72e7c1 Binary files /dev/null and b/_module/ncs/ngred_11.ncs differ diff --git a/_module/ncs/ngred_12.ncs b/_module/ncs/ngred_12.ncs new file mode 100644 index 0000000..923753b Binary files /dev/null and b/_module/ncs/ngred_12.ncs differ diff --git a/_module/ncs/ngred_2.ncs b/_module/ncs/ngred_2.ncs new file mode 100644 index 0000000..03973e9 Binary files /dev/null and b/_module/ncs/ngred_2.ncs differ diff --git a/_module/ncs/ngred_22.ncs b/_module/ncs/ngred_22.ncs new file mode 100644 index 0000000..4f1ea07 Binary files /dev/null and b/_module/ncs/ngred_22.ncs differ diff --git a/_module/ncs/ngred_22mc.ncs b/_module/ncs/ngred_22mc.ncs new file mode 100644 index 0000000..45074c8 Binary files /dev/null and b/_module/ncs/ngred_22mc.ncs differ diff --git a/_module/ncs/ngred_3.ncs b/_module/ncs/ngred_3.ncs new file mode 100644 index 0000000..db0316b Binary files /dev/null and b/_module/ncs/ngred_3.ncs differ diff --git a/_module/ncs/ngred_32.ncs b/_module/ncs/ngred_32.ncs new file mode 100644 index 0000000..a3db8c7 Binary files /dev/null and b/_module/ncs/ngred_32.ncs differ diff --git a/_module/ncs/ngred_4.ncs b/_module/ncs/ngred_4.ncs new file mode 100644 index 0000000..6baa145 Binary files /dev/null and b/_module/ncs/ngred_4.ncs differ diff --git a/_module/ncs/ngred_42.ncs b/_module/ncs/ngred_42.ncs new file mode 100644 index 0000000..05da01f Binary files /dev/null and b/_module/ncs/ngred_42.ncs differ diff --git a/_module/ncs/ngred_6.ncs b/_module/ncs/ngred_6.ncs new file mode 100644 index 0000000..67469bf Binary files /dev/null and b/_module/ncs/ngred_6.ncs differ diff --git a/_module/ncs/ngred_62.ncs b/_module/ncs/ngred_62.ncs new file mode 100644 index 0000000..0869796 Binary files /dev/null and b/_module/ncs/ngred_62.ncs differ diff --git a/_module/ncs/ngred_62mc.ncs b/_module/ncs/ngred_62mc.ncs new file mode 100644 index 0000000..ab61120 Binary files /dev/null and b/_module/ncs/ngred_62mc.ncs differ diff --git a/_module/ncs/ngred_7.ncs b/_module/ncs/ngred_7.ncs new file mode 100644 index 0000000..f8ff2a7 Binary files /dev/null and b/_module/ncs/ngred_7.ncs differ diff --git a/_module/ncs/ngred_8.ncs b/_module/ncs/ngred_8.ncs new file mode 100644 index 0000000..df209cb Binary files /dev/null and b/_module/ncs/ngred_8.ncs differ diff --git a/_module/ncs/ngred_9.ncs b/_module/ncs/ngred_9.ncs new file mode 100644 index 0000000..ed7fff9 Binary files /dev/null and b/_module/ncs/ngred_9.ncs differ diff --git a/_module/ncs/nord_block.ncs b/_module/ncs/nord_block.ncs new file mode 100644 index 0000000..57f5dcb Binary files /dev/null and b/_module/ncs/nord_block.ncs differ diff --git a/_module/ncs/nord_block2.ncs b/_module/ncs/nord_block2.ncs new file mode 100644 index 0000000..5b85ba4 Binary files /dev/null and b/_module/ncs/nord_block2.ncs differ diff --git a/_module/ncs/not_has_20k.ncs b/_module/ncs/not_has_20k.ncs new file mode 100644 index 0000000..96a723d Binary files /dev/null and b/_module/ncs/not_has_20k.ncs differ diff --git a/_module/ncs/not_has_30k.ncs b/_module/ncs/not_has_30k.ncs new file mode 100644 index 0000000..369fb9f Binary files /dev/null and b/_module/ncs/not_has_30k.ncs differ diff --git a/_module/ncs/not_has_40k.ncs b/_module/ncs/not_has_40k.ncs new file mode 100644 index 0000000..736637f Binary files /dev/null and b/_module/ncs/not_has_40k.ncs differ diff --git a/_module/ncs/note_make.ncs b/_module/ncs/note_make.ncs new file mode 100644 index 0000000..79d170b Binary files /dev/null and b/_module/ncs/note_make.ncs differ diff --git a/_module/ncs/npc_conv.ncs b/_module/ncs/npc_conv.ncs new file mode 100644 index 0000000..1896b94 Binary files /dev/null and b/_module/ncs/npc_conv.ncs differ diff --git a/_module/ncs/npc_conv_dark.ncs b/_module/ncs/npc_conv_dark.ncs new file mode 100644 index 0000000..64e5537 Binary files /dev/null and b/_module/ncs/npc_conv_dark.ncs differ diff --git a/_module/ncs/nt_remove.ncs b/_module/ncs/nt_remove.ncs new file mode 100644 index 0000000..0b2dcba Binary files /dev/null and b/_module/ncs/nt_remove.ncs differ diff --git a/_module/ncs/nue_neu_align.ncs b/_module/ncs/nue_neu_align.ncs new file mode 100644 index 0000000..6377942 Binary files /dev/null and b/_module/ncs/nue_neu_align.ncs differ diff --git a/_module/ncs/nw_c2_default1.ncs b/_module/ncs/nw_c2_default1.ncs new file mode 100644 index 0000000..5aebc39 Binary files /dev/null and b/_module/ncs/nw_c2_default1.ncs differ diff --git a/_module/ncs/nw_c2_default2.ncs b/_module/ncs/nw_c2_default2.ncs new file mode 100644 index 0000000..68f702a Binary files /dev/null and b/_module/ncs/nw_c2_default2.ncs differ diff --git a/_module/ncs/nw_c2_default3.ncs b/_module/ncs/nw_c2_default3.ncs new file mode 100644 index 0000000..c54384c Binary files /dev/null and b/_module/ncs/nw_c2_default3.ncs differ diff --git a/_module/ncs/nw_c2_default4.ncs b/_module/ncs/nw_c2_default4.ncs new file mode 100644 index 0000000..b8de03c Binary files /dev/null and b/_module/ncs/nw_c2_default4.ncs differ diff --git a/_module/ncs/nw_c2_default5.ncs b/_module/ncs/nw_c2_default5.ncs new file mode 100644 index 0000000..1502fbc Binary files /dev/null and b/_module/ncs/nw_c2_default5.ncs differ diff --git a/_module/ncs/nw_c2_default6.ncs b/_module/ncs/nw_c2_default6.ncs new file mode 100644 index 0000000..1727698 Binary files /dev/null and b/_module/ncs/nw_c2_default6.ncs differ diff --git a/_module/ncs/nw_c2_default8.ncs b/_module/ncs/nw_c2_default8.ncs new file mode 100644 index 0000000..2df2091 Binary files /dev/null and b/_module/ncs/nw_c2_default8.ncs differ diff --git a/_module/ncs/nw_c2_defaulta.ncs b/_module/ncs/nw_c2_defaulta.ncs new file mode 100644 index 0000000..bb9b17a Binary files /dev/null and b/_module/ncs/nw_c2_defaulta.ncs differ diff --git a/_module/ncs/nw_c2_defaultb.ncs b/_module/ncs/nw_c2_defaultb.ncs new file mode 100644 index 0000000..146034f Binary files /dev/null and b/_module/ncs/nw_c2_defaultb.ncs differ diff --git a/_module/ncs/nw_c2_defaulte.ncs b/_module/ncs/nw_c2_defaulte.ncs new file mode 100644 index 0000000..1eb9873 Binary files /dev/null and b/_module/ncs/nw_c2_defaulte.ncs differ diff --git a/_module/ncs/nw_c2_dropin9.ncs b/_module/ncs/nw_c2_dropin9.ncs new file mode 100644 index 0000000..d3ea649 Binary files /dev/null and b/_module/ncs/nw_c2_dropin9.ncs differ diff --git a/_module/ncs/nw_c2_herbivore.ncs b/_module/ncs/nw_c2_herbivore.ncs new file mode 100644 index 0000000..5fa1fd6 Binary files /dev/null and b/_module/ncs/nw_c2_herbivore.ncs differ diff --git a/_module/ncs/nw_c2_omnivore.ncs b/_module/ncs/nw_c2_omnivore.ncs new file mode 100644 index 0000000..1f54105 Binary files /dev/null and b/_module/ncs/nw_c2_omnivore.ncs differ diff --git a/_module/ncs/nw_o2_boss.ncs b/_module/ncs/nw_o2_boss.ncs new file mode 100644 index 0000000..57cdce6 Binary files /dev/null and b/_module/ncs/nw_o2_boss.ncs differ diff --git a/_module/ncs/nw_o2_classhig.ncs b/_module/ncs/nw_o2_classhig.ncs new file mode 100644 index 0000000..cc11e5f Binary files /dev/null and b/_module/ncs/nw_o2_classhig.ncs differ diff --git a/_module/ncs/nw_o2_classlow.ncs b/_module/ncs/nw_o2_classlow.ncs new file mode 100644 index 0000000..c792dea Binary files /dev/null and b/_module/ncs/nw_o2_classlow.ncs differ diff --git a/_module/ncs/nw_o2_classmed.ncs b/_module/ncs/nw_o2_classmed.ncs new file mode 100644 index 0000000..5bf03dc Binary files /dev/null and b/_module/ncs/nw_o2_classmed.ncs differ diff --git a/_module/ncs/nw_o2_classweap.ncs b/_module/ncs/nw_o2_classweap.ncs new file mode 100644 index 0000000..354ca56 Binary files /dev/null and b/_module/ncs/nw_o2_classweap.ncs differ diff --git a/_module/ncs/nw_o2_feat.ncs b/_module/ncs/nw_o2_feat.ncs new file mode 100644 index 0000000..d953872 Binary files /dev/null and b/_module/ncs/nw_o2_feat.ncs differ diff --git a/_module/ncs/nw_o2_generalhig.ncs b/_module/ncs/nw_o2_generalhig.ncs new file mode 100644 index 0000000..3529707 Binary files /dev/null and b/_module/ncs/nw_o2_generalhig.ncs differ diff --git a/_module/ncs/nw_o2_generallow.ncs b/_module/ncs/nw_o2_generallow.ncs new file mode 100644 index 0000000..55674bc Binary files /dev/null and b/_module/ncs/nw_o2_generallow.ncs differ diff --git a/_module/ncs/nw_o2_generalmed.ncs b/_module/ncs/nw_o2_generalmed.ncs new file mode 100644 index 0000000..169bf90 Binary files /dev/null and b/_module/ncs/nw_o2_generalmed.ncs differ diff --git a/_module/ncs/nw_o2_generalmid.ncs b/_module/ncs/nw_o2_generalmid.ncs new file mode 100644 index 0000000..5bf03dc Binary files /dev/null and b/_module/ncs/nw_o2_generalmid.ncs differ diff --git a/_module/ncs/on_heart_sf.ncs b/_module/ncs/on_heart_sf.ncs new file mode 100644 index 0000000..1817c06 Binary files /dev/null and b/_module/ncs/on_heart_sf.ncs differ diff --git a/_module/ncs/onattacked.ncs b/_module/ncs/onattacked.ncs new file mode 100644 index 0000000..aeccb39 Binary files /dev/null and b/_module/ncs/onattacked.ncs differ diff --git a/_module/ncs/onattacked_aoc.ncs b/_module/ncs/onattacked_aoc.ncs new file mode 100644 index 0000000..4ffb949 Binary files /dev/null and b/_module/ncs/onattacked_aoc.ncs differ diff --git a/_module/ncs/ondamage_aoc.ncs b/_module/ncs/ondamage_aoc.ncs new file mode 100644 index 0000000..cd1b398 Binary files /dev/null and b/_module/ncs/ondamage_aoc.ncs differ diff --git a/_module/ncs/ondeath_angel.ncs b/_module/ncs/ondeath_angel.ncs new file mode 100644 index 0000000..f0f37f6 Binary files /dev/null and b/_module/ncs/ondeath_angel.ncs differ diff --git a/_module/ncs/ondeath_angel1.ncs b/_module/ncs/ondeath_angel1.ncs new file mode 100644 index 0000000..b9e85d0 Binary files /dev/null and b/_module/ncs/ondeath_angel1.ncs differ diff --git a/_module/ncs/ondeath_baal.ncs b/_module/ncs/ondeath_baal.ncs new file mode 100644 index 0000000..ac82960 Binary files /dev/null and b/_module/ncs/ondeath_baal.ncs differ diff --git a/_module/ncs/ondeath_balrog.ncs b/_module/ncs/ondeath_balrog.ncs new file mode 100644 index 0000000..b305c36 Binary files /dev/null and b/_module/ncs/ondeath_balrog.ncs differ diff --git a/_module/ncs/ondeath_bard.ncs b/_module/ncs/ondeath_bard.ncs new file mode 100644 index 0000000..3961e7b Binary files /dev/null and b/_module/ncs/ondeath_bard.ncs differ diff --git a/_module/ncs/ondeath_demon.ncs b/_module/ncs/ondeath_demon.ncs new file mode 100644 index 0000000..57fc7a2 Binary files /dev/null and b/_module/ncs/ondeath_demon.ncs differ diff --git a/_module/ncs/ondeath_dragoon.ncs b/_module/ncs/ondeath_dragoon.ncs new file mode 100644 index 0000000..1942411 Binary files /dev/null and b/_module/ncs/ondeath_dragoon.ncs differ diff --git a/_module/ncs/ondeath_gold.ncs b/_module/ncs/ondeath_gold.ncs new file mode 100644 index 0000000..0d78802 Binary files /dev/null and b/_module/ncs/ondeath_gold.ncs differ diff --git a/_module/ncs/ondeath_kamaji.ncs b/_module/ncs/ondeath_kamaji.ncs new file mode 100644 index 0000000..6bdb779 Binary files /dev/null and b/_module/ncs/ondeath_kamaji.ncs differ diff --git a/_module/ncs/ondeath_lucifer.ncs b/_module/ncs/ondeath_lucifer.ncs new file mode 100644 index 0000000..6dd2e4f Binary files /dev/null and b/_module/ncs/ondeath_lucifer.ncs differ diff --git a/_module/ncs/ondeath_reaver.ncs b/_module/ncs/ondeath_reaver.ncs new file mode 100644 index 0000000..e416e33 Binary files /dev/null and b/_module/ncs/ondeath_reaver.ncs differ diff --git a/_module/ncs/ondeath_shiva.ncs b/_module/ncs/ondeath_shiva.ncs new file mode 100644 index 0000000..e9ebc2d Binary files /dev/null and b/_module/ncs/ondeath_shiva.ncs differ diff --git a/_module/ncs/ondeath_soul.ncs b/_module/ncs/ondeath_soul.ncs new file mode 100644 index 0000000..37ad23a Binary files /dev/null and b/_module/ncs/ondeath_soul.ncs differ diff --git a/_module/ncs/ondeath_tyriel.ncs b/_module/ncs/ondeath_tyriel.ncs new file mode 100644 index 0000000..4155743 Binary files /dev/null and b/_module/ncs/ondeath_tyriel.ncs differ diff --git a/_module/ncs/ondeath_wurm.ncs b/_module/ncs/ondeath_wurm.ncs new file mode 100644 index 0000000..0405fc2 Binary files /dev/null and b/_module/ncs/ondeath_wurm.ncs differ diff --git a/_module/ncs/onpercieve_dark.ncs b/_module/ncs/onpercieve_dark.ncs new file mode 100644 index 0000000..5de8a8e Binary files /dev/null and b/_module/ncs/onpercieve_dark.ncs differ diff --git a/_module/ncs/onpercieve_light.ncs b/_module/ncs/onpercieve_light.ncs new file mode 100644 index 0000000..5de8a8e Binary files /dev/null and b/_module/ncs/onpercieve_light.ncs differ diff --git a/_module/ncs/open_inv.ncs b/_module/ncs/open_inv.ncs new file mode 100644 index 0000000..cafe877 Binary files /dev/null and b/_module/ncs/open_inv.ncs differ diff --git a/_module/ncs/openstore.ncs b/_module/ncs/openstore.ncs new file mode 100644 index 0000000..b4d3167 Binary files /dev/null and b/_module/ncs/openstore.ncs differ diff --git a/_module/ncs/pally_slot_imbue.ncs b/_module/ncs/pally_slot_imbue.ncs new file mode 100644 index 0000000..0cf6e53 Binary files /dev/null and b/_module/ncs/pally_slot_imbue.ncs differ diff --git a/_module/ncs/palorcler.ncs b/_module/ncs/palorcler.ncs new file mode 100644 index 0000000..4ce680e Binary files /dev/null and b/_module/ncs/palorcler.ncs differ diff --git a/_module/ncs/par_imbue.ncs b/_module/ncs/par_imbue.ncs new file mode 100644 index 0000000..6acc415 Binary files /dev/null and b/_module/ncs/par_imbue.ncs differ diff --git a/_module/ncs/parry_imbue.ncs b/_module/ncs/parry_imbue.ncs new file mode 100644 index 0000000..9a1001a Binary files /dev/null and b/_module/ncs/parry_imbue.ncs differ diff --git a/_module/ncs/partyleader.ncs b/_module/ncs/partyleader.ncs new file mode 100644 index 0000000..9456c7b Binary files /dev/null and b/_module/ncs/partyleader.ncs differ diff --git a/_module/ncs/patt_imbue.ncs b/_module/ncs/patt_imbue.ncs new file mode 100644 index 0000000..f5dffd4 Binary files /dev/null and b/_module/ncs/patt_imbue.ncs differ diff --git a/_module/ncs/pc_sit.ncs b/_module/ncs/pc_sit.ncs new file mode 100644 index 0000000..d005150 Binary files /dev/null and b/_module/ncs/pc_sit.ncs differ diff --git a/_module/ncs/perf_imbue.ncs b/_module/ncs/perf_imbue.ncs new file mode 100644 index 0000000..98e0883 Binary files /dev/null and b/_module/ncs/perf_imbue.ncs differ diff --git a/_module/ncs/phoenix_rod.ncs b/_module/ncs/phoenix_rod.ncs new file mode 100644 index 0000000..5fbd0d0 Binary files /dev/null and b/_module/ncs/phoenix_rod.ncs differ diff --git a/_module/ncs/pier_imbue.ncs b/_module/ncs/pier_imbue.ncs new file mode 100644 index 0000000..16757c0 Binary files /dev/null and b/_module/ncs/pier_imbue.ncs differ diff --git a/_module/ncs/pier_imbue_arm.ncs b/_module/ncs/pier_imbue_arm.ncs new file mode 100644 index 0000000..cf039e3 Binary files /dev/null and b/_module/ncs/pier_imbue_arm.ncs differ diff --git a/_module/ncs/place_bet.ncs b/_module/ncs/place_bet.ncs new file mode 100644 index 0000000..f210120 Binary files /dev/null and b/_module/ncs/place_bet.ncs differ diff --git a/_module/ncs/player_leave.ncs b/_module/ncs/player_leave.ncs new file mode 100644 index 0000000..625cfbd Binary files /dev/null and b/_module/ncs/player_leave.ncs differ diff --git a/_module/ncs/player_sign.ncs b/_module/ncs/player_sign.ncs new file mode 100644 index 0000000..15d8775 Binary files /dev/null and b/_module/ncs/player_sign.ncs differ diff --git a/_module/ncs/po_imbue25.ncs b/_module/ncs/po_imbue25.ncs new file mode 100644 index 0000000..4752f9c Binary files /dev/null and b/_module/ncs/po_imbue25.ncs differ diff --git a/_module/ncs/po_imbue252.ncs b/_module/ncs/po_imbue252.ncs new file mode 100644 index 0000000..386318b Binary files /dev/null and b/_module/ncs/po_imbue252.ncs differ diff --git a/_module/ncs/podone_1.ncs b/_module/ncs/podone_1.ncs new file mode 100644 index 0000000..cf7733f Binary files /dev/null and b/_module/ncs/podone_1.ncs differ diff --git a/_module/ncs/podone_12.ncs b/_module/ncs/podone_12.ncs new file mode 100644 index 0000000..5aeefea Binary files /dev/null and b/_module/ncs/podone_12.ncs differ diff --git a/_module/ncs/podred_imbue_2.ncs b/_module/ncs/podred_imbue_2.ncs new file mode 100644 index 0000000..bed6074 Binary files /dev/null and b/_module/ncs/podred_imbue_2.ncs differ diff --git a/_module/ncs/podred_imbue_22.ncs b/_module/ncs/podred_imbue_22.ncs new file mode 100644 index 0000000..d89ee3b Binary files /dev/null and b/_module/ncs/podred_imbue_22.ncs differ diff --git a/_module/ncs/podred_imbue_3.ncs b/_module/ncs/podred_imbue_3.ncs new file mode 100644 index 0000000..a6f6daa Binary files /dev/null and b/_module/ncs/podred_imbue_3.ncs differ diff --git a/_module/ncs/podred_imbue_32.ncs b/_module/ncs/podred_imbue_32.ncs new file mode 100644 index 0000000..76e4bf6 Binary files /dev/null and b/_module/ncs/podred_imbue_32.ncs differ diff --git a/_module/ncs/podred_imbue_4.ncs b/_module/ncs/podred_imbue_4.ncs new file mode 100644 index 0000000..8bc7e03 Binary files /dev/null and b/_module/ncs/podred_imbue_4.ncs differ diff --git a/_module/ncs/podred_imbue_5.ncs b/_module/ncs/podred_imbue_5.ncs new file mode 100644 index 0000000..582eb71 Binary files /dev/null and b/_module/ncs/podred_imbue_5.ncs differ diff --git a/_module/ncs/poed_1.ncs b/_module/ncs/poed_1.ncs new file mode 100644 index 0000000..56e281f Binary files /dev/null and b/_module/ncs/poed_1.ncs differ diff --git a/_module/ncs/poed_12.ncs b/_module/ncs/poed_12.ncs new file mode 100644 index 0000000..dbd9e7f Binary files /dev/null and b/_module/ncs/poed_12.ncs differ diff --git a/_module/ncs/pois_imbue.ncs b/_module/ncs/pois_imbue.ncs new file mode 100644 index 0000000..e0be418 Binary files /dev/null and b/_module/ncs/pois_imbue.ncs differ diff --git a/_module/ncs/pomax_reached.ncs b/_module/ncs/pomax_reached.ncs new file mode 100644 index 0000000..24586ac Binary files /dev/null and b/_module/ncs/pomax_reached.ncs differ diff --git a/_module/ncs/pomax_reached1.ncs b/_module/ncs/pomax_reached1.ncs new file mode 100644 index 0000000..196d5a5 Binary files /dev/null and b/_module/ncs/pomax_reached1.ncs differ diff --git a/_module/ncs/pomax_reached12.ncs b/_module/ncs/pomax_reached12.ncs new file mode 100644 index 0000000..a2ca497 Binary files /dev/null and b/_module/ncs/pomax_reached12.ncs differ diff --git a/_module/ncs/pomax_reached2.ncs b/_module/ncs/pomax_reached2.ncs new file mode 100644 index 0000000..90f418d Binary files /dev/null and b/_module/ncs/pomax_reached2.ncs differ diff --git a/_module/ncs/pool_off.ncs b/_module/ncs/pool_off.ncs new file mode 100644 index 0000000..168d81f Binary files /dev/null and b/_module/ncs/pool_off.ncs differ diff --git a/_module/ncs/pool_on.ncs b/_module/ncs/pool_on.ncs new file mode 100644 index 0000000..9b785fc Binary files /dev/null and b/_module/ncs/pool_on.ncs differ diff --git a/_module/ncs/pool_switch.ncs b/_module/ncs/pool_switch.ncs new file mode 100644 index 0000000..dd9b9a0 Binary files /dev/null and b/_module/ncs/pool_switch.ncs differ diff --git a/_module/ncs/pools.ncs b/_module/ncs/pools.ncs new file mode 100644 index 0000000..ecb1c72 Binary files /dev/null and b/_module/ncs/pools.ncs differ diff --git a/_module/ncs/pored1_1.ncs b/_module/ncs/pored1_1.ncs new file mode 100644 index 0000000..82e7c6e Binary files /dev/null and b/_module/ncs/pored1_1.ncs differ diff --git a/_module/ncs/pored1_12.ncs b/_module/ncs/pored1_12.ncs new file mode 100644 index 0000000..b12b380 Binary files /dev/null and b/_module/ncs/pored1_12.ncs differ diff --git a/_module/ncs/pored_0.ncs b/_module/ncs/pored_0.ncs new file mode 100644 index 0000000..b182fbb Binary files /dev/null and b/_module/ncs/pored_0.ncs differ diff --git a/_module/ncs/pored_02.ncs b/_module/ncs/pored_02.ncs new file mode 100644 index 0000000..c2a9571 Binary files /dev/null and b/_module/ncs/pored_02.ncs differ diff --git a/_module/ncs/pored_10.ncs b/_module/ncs/pored_10.ncs new file mode 100644 index 0000000..6ea11f7 Binary files /dev/null and b/_module/ncs/pored_10.ncs differ diff --git a/_module/ncs/pored_11.ncs b/_module/ncs/pored_11.ncs new file mode 100644 index 0000000..7637c00 Binary files /dev/null and b/_module/ncs/pored_11.ncs differ diff --git a/_module/ncs/pored_12.ncs b/_module/ncs/pored_12.ncs new file mode 100644 index 0000000..ca514f3 Binary files /dev/null and b/_module/ncs/pored_12.ncs differ diff --git a/_module/ncs/pored_2.ncs b/_module/ncs/pored_2.ncs new file mode 100644 index 0000000..dc7b6fc Binary files /dev/null and b/_module/ncs/pored_2.ncs differ diff --git a/_module/ncs/pored_22.ncs b/_module/ncs/pored_22.ncs new file mode 100644 index 0000000..a192496 Binary files /dev/null and b/_module/ncs/pored_22.ncs differ diff --git a/_module/ncs/pored_3.ncs b/_module/ncs/pored_3.ncs new file mode 100644 index 0000000..e7082ed Binary files /dev/null and b/_module/ncs/pored_3.ncs differ diff --git a/_module/ncs/pored_32.ncs b/_module/ncs/pored_32.ncs new file mode 100644 index 0000000..b8acf7c Binary files /dev/null and b/_module/ncs/pored_32.ncs differ diff --git a/_module/ncs/pored_4.ncs b/_module/ncs/pored_4.ncs new file mode 100644 index 0000000..2cdee17 Binary files /dev/null and b/_module/ncs/pored_4.ncs differ diff --git a/_module/ncs/pored_42.ncs b/_module/ncs/pored_42.ncs new file mode 100644 index 0000000..9a3ce0b Binary files /dev/null and b/_module/ncs/pored_42.ncs differ diff --git a/_module/ncs/pored_6.ncs b/_module/ncs/pored_6.ncs new file mode 100644 index 0000000..94ccf23 Binary files /dev/null and b/_module/ncs/pored_6.ncs differ diff --git a/_module/ncs/pored_62.ncs b/_module/ncs/pored_62.ncs new file mode 100644 index 0000000..efac619 Binary files /dev/null and b/_module/ncs/pored_62.ncs differ diff --git a/_module/ncs/pored_7.ncs b/_module/ncs/pored_7.ncs new file mode 100644 index 0000000..e2a3a03 Binary files /dev/null and b/_module/ncs/pored_7.ncs differ diff --git a/_module/ncs/pored_8.ncs b/_module/ncs/pored_8.ncs new file mode 100644 index 0000000..ef62f12 Binary files /dev/null and b/_module/ncs/pored_8.ncs differ diff --git a/_module/ncs/pored_9.ncs b/_module/ncs/pored_9.ncs new file mode 100644 index 0000000..176c9de Binary files /dev/null and b/_module/ncs/pored_9.ncs differ diff --git a/_module/ncs/portal.ncs b/_module/ncs/portal.ncs new file mode 100644 index 0000000..836eba2 Binary files /dev/null and b/_module/ncs/portal.ncs differ diff --git a/_module/ncs/portal2.ncs b/_module/ncs/portal2.ncs new file mode 100644 index 0000000..2ac0748 Binary files /dev/null and b/_module/ncs/portal2.ncs differ diff --git a/_module/ncs/portal3.ncs b/_module/ncs/portal3.ncs new file mode 100644 index 0000000..2e5197f Binary files /dev/null and b/_module/ncs/portal3.ncs differ diff --git a/_module/ncs/portal4.ncs b/_module/ncs/portal4.ncs new file mode 100644 index 0000000..2c52a78 Binary files /dev/null and b/_module/ncs/portal4.ncs differ diff --git a/_module/ncs/portal5.ncs b/_module/ncs/portal5.ncs new file mode 100644 index 0000000..21a61ae Binary files /dev/null and b/_module/ncs/portal5.ncs differ diff --git a/_module/ncs/portal_final.ncs b/_module/ncs/portal_final.ncs new file mode 100644 index 0000000..b180fbf Binary files /dev/null and b/_module/ncs/portal_final.ncs differ diff --git a/_module/ncs/pos_imbue.ncs b/_module/ncs/pos_imbue.ncs new file mode 100644 index 0000000..d650466 Binary files /dev/null and b/_module/ncs/pos_imbue.ncs differ diff --git a/_module/ncs/pos_imbue_arm.ncs b/_module/ncs/pos_imbue_arm.ncs new file mode 100644 index 0000000..df9afd8 Binary files /dev/null and b/_module/ncs/pos_imbue_arm.ncs differ diff --git a/_module/ncs/potion_shop.ncs b/_module/ncs/potion_shop.ncs new file mode 100644 index 0000000..17f23b9 Binary files /dev/null and b/_module/ncs/potion_shop.ncs differ diff --git a/_module/ncs/pr_max_reache212.ncs b/_module/ncs/pr_max_reache212.ncs new file mode 100644 index 0000000..f6ff7c8 Binary files /dev/null and b/_module/ncs/pr_max_reache212.ncs differ diff --git a/_module/ncs/pr_max_reache22.ncs b/_module/ncs/pr_max_reache22.ncs new file mode 100644 index 0000000..cacbb87 Binary files /dev/null and b/_module/ncs/pr_max_reache22.ncs differ diff --git a/_module/ncs/pr_max_reached.ncs b/_module/ncs/pr_max_reached.ncs new file mode 100644 index 0000000..77f0856 Binary files /dev/null and b/_module/ncs/pr_max_reached.ncs differ diff --git a/_module/ncs/pr_max_reached1.ncs b/_module/ncs/pr_max_reached1.ncs new file mode 100644 index 0000000..c47a8de Binary files /dev/null and b/_module/ncs/pr_max_reached1.ncs differ diff --git a/_module/ncs/pr_max_reached12.ncs b/_module/ncs/pr_max_reached12.ncs new file mode 100644 index 0000000..ed3f960 Binary files /dev/null and b/_module/ncs/pr_max_reached12.ncs differ diff --git a/_module/ncs/pr_max_reached2.ncs b/_module/ncs/pr_max_reached2.ncs new file mode 100644 index 0000000..104b59a Binary files /dev/null and b/_module/ncs/pr_max_reached2.ncs differ diff --git a/_module/ncs/prc_pwondeath.ncs b/_module/ncs/prc_pwondeath.ncs new file mode 100644 index 0000000..15dc247 Binary files /dev/null and b/_module/ncs/prc_pwondeath.ncs differ diff --git a/_module/ncs/prdone_1.ncs b/_module/ncs/prdone_1.ncs new file mode 100644 index 0000000..a969a2a Binary files /dev/null and b/_module/ncs/prdone_1.ncs differ diff --git a/_module/ncs/prdone_12.ncs b/_module/ncs/prdone_12.ncs new file mode 100644 index 0000000..225b66e Binary files /dev/null and b/_module/ncs/prdone_12.ncs differ diff --git a/_module/ncs/prdred_imbue_1.ncs b/_module/ncs/prdred_imbue_1.ncs new file mode 100644 index 0000000..dab99a9 Binary files /dev/null and b/_module/ncs/prdred_imbue_1.ncs differ diff --git a/_module/ncs/prdred_imbue_12.ncs b/_module/ncs/prdred_imbue_12.ncs new file mode 100644 index 0000000..a598976 Binary files /dev/null and b/_module/ncs/prdred_imbue_12.ncs differ diff --git a/_module/ncs/prdred_imbue_132.ncs b/_module/ncs/prdred_imbue_132.ncs new file mode 100644 index 0000000..14730e5 Binary files /dev/null and b/_module/ncs/prdred_imbue_132.ncs differ diff --git a/_module/ncs/prdred_imbue_2.ncs b/_module/ncs/prdred_imbue_2.ncs new file mode 100644 index 0000000..f62b51e Binary files /dev/null and b/_module/ncs/prdred_imbue_2.ncs differ diff --git a/_module/ncs/prdred_imbue_22.ncs b/_module/ncs/prdred_imbue_22.ncs new file mode 100644 index 0000000..f65a9c4 Binary files /dev/null and b/_module/ncs/prdred_imbue_22.ncs differ diff --git a/_module/ncs/prdred_imbue_3.ncs b/_module/ncs/prdred_imbue_3.ncs new file mode 100644 index 0000000..6d0a43f Binary files /dev/null and b/_module/ncs/prdred_imbue_3.ncs differ diff --git a/_module/ncs/prdred_imbue_32.ncs b/_module/ncs/prdred_imbue_32.ncs new file mode 100644 index 0000000..cd35b2d Binary files /dev/null and b/_module/ncs/prdred_imbue_32.ncs differ diff --git a/_module/ncs/prdred_imbue_4.ncs b/_module/ncs/prdred_imbue_4.ncs new file mode 100644 index 0000000..f2be246 Binary files /dev/null and b/_module/ncs/prdred_imbue_4.ncs differ diff --git a/_module/ncs/prdred_imbue_5.ncs b/_module/ncs/prdred_imbue_5.ncs new file mode 100644 index 0000000..9a01925 Binary files /dev/null and b/_module/ncs/prdred_imbue_5.ncs differ diff --git a/_module/ncs/prred1_1.ncs b/_module/ncs/prred1_1.ncs new file mode 100644 index 0000000..107ca5e Binary files /dev/null and b/_module/ncs/prred1_1.ncs differ diff --git a/_module/ncs/prred1_12.ncs b/_module/ncs/prred1_12.ncs new file mode 100644 index 0000000..f703d58 Binary files /dev/null and b/_module/ncs/prred1_12.ncs differ diff --git a/_module/ncs/prred_0.ncs b/_module/ncs/prred_0.ncs new file mode 100644 index 0000000..49f9904 Binary files /dev/null and b/_module/ncs/prred_0.ncs differ diff --git a/_module/ncs/prred_02.ncs b/_module/ncs/prred_02.ncs new file mode 100644 index 0000000..9a682cc Binary files /dev/null and b/_module/ncs/prred_02.ncs differ diff --git a/_module/ncs/prred_1.ncs b/_module/ncs/prred_1.ncs new file mode 100644 index 0000000..1b37a04 Binary files /dev/null and b/_module/ncs/prred_1.ncs differ diff --git a/_module/ncs/prred_10.ncs b/_module/ncs/prred_10.ncs new file mode 100644 index 0000000..d507a06 Binary files /dev/null and b/_module/ncs/prred_10.ncs differ diff --git a/_module/ncs/prred_11.ncs b/_module/ncs/prred_11.ncs new file mode 100644 index 0000000..c353886 Binary files /dev/null and b/_module/ncs/prred_11.ncs differ diff --git a/_module/ncs/prred_12.ncs b/_module/ncs/prred_12.ncs new file mode 100644 index 0000000..db6c481 Binary files /dev/null and b/_module/ncs/prred_12.ncs differ diff --git a/_module/ncs/prred_2.ncs b/_module/ncs/prred_2.ncs new file mode 100644 index 0000000..c853ed9 Binary files /dev/null and b/_module/ncs/prred_2.ncs differ diff --git a/_module/ncs/prred_212.ncs b/_module/ncs/prred_212.ncs new file mode 100644 index 0000000..10d401a Binary files /dev/null and b/_module/ncs/prred_212.ncs differ diff --git a/_module/ncs/prred_22.ncs b/_module/ncs/prred_22.ncs new file mode 100644 index 0000000..d377451 Binary files /dev/null and b/_module/ncs/prred_22.ncs differ diff --git a/_module/ncs/prred_3.ncs b/_module/ncs/prred_3.ncs new file mode 100644 index 0000000..bdf089e Binary files /dev/null and b/_module/ncs/prred_3.ncs differ diff --git a/_module/ncs/prred_32.ncs b/_module/ncs/prred_32.ncs new file mode 100644 index 0000000..05002b3 Binary files /dev/null and b/_module/ncs/prred_32.ncs differ diff --git a/_module/ncs/prred_4.ncs b/_module/ncs/prred_4.ncs new file mode 100644 index 0000000..ffea211 Binary files /dev/null and b/_module/ncs/prred_4.ncs differ diff --git a/_module/ncs/prred_42.ncs b/_module/ncs/prred_42.ncs new file mode 100644 index 0000000..f8600d0 Binary files /dev/null and b/_module/ncs/prred_42.ncs differ diff --git a/_module/ncs/prred_6.ncs b/_module/ncs/prred_6.ncs new file mode 100644 index 0000000..38c2d21 Binary files /dev/null and b/_module/ncs/prred_6.ncs differ diff --git a/_module/ncs/prred_62.ncs b/_module/ncs/prred_62.ncs new file mode 100644 index 0000000..3688c22 Binary files /dev/null and b/_module/ncs/prred_62.ncs differ diff --git a/_module/ncs/prred_7.ncs b/_module/ncs/prred_7.ncs new file mode 100644 index 0000000..974eaa9 Binary files /dev/null and b/_module/ncs/prred_7.ncs differ diff --git a/_module/ncs/prred_8.ncs b/_module/ncs/prred_8.ncs new file mode 100644 index 0000000..f3091b5 Binary files /dev/null and b/_module/ncs/prred_8.ncs differ diff --git a/_module/ncs/prred_9.ncs b/_module/ncs/prred_9.ncs new file mode 100644 index 0000000..3d35da4 Binary files /dev/null and b/_module/ncs/prred_9.ncs differ diff --git a/_module/ncs/purge_data.ncs b/_module/ncs/purge_data.ncs new file mode 100644 index 0000000..de79c33 Binary files /dev/null and b/_module/ncs/purge_data.ncs differ diff --git a/_module/ncs/purge_items.ncs b/_module/ncs/purge_items.ncs new file mode 100644 index 0000000..8216561 Binary files /dev/null and b/_module/ncs/purge_items.ncs differ diff --git a/_module/ncs/purge_items2.ncs b/_module/ncs/purge_items2.ncs new file mode 100644 index 0000000..c653c4a Binary files /dev/null and b/_module/ncs/purge_items2.ncs differ diff --git a/_module/ncs/purge_items3.ncs b/_module/ncs/purge_items3.ncs new file mode 100644 index 0000000..3b1607f Binary files /dev/null and b/_module/ncs/purge_items3.ncs differ diff --git a/_module/ncs/purge_items_all.ncs b/_module/ncs/purge_items_all.ncs new file mode 100644 index 0000000..f1b43b8 Binary files /dev/null and b/_module/ncs/purge_items_all.ncs differ diff --git a/_module/ncs/purge_items_slot.ncs b/_module/ncs/purge_items_slot.ncs new file mode 100644 index 0000000..69aa11b Binary files /dev/null and b/_module/ncs/purge_items_slot.ncs differ diff --git a/_module/ncs/pvote.ncs b/_module/ncs/pvote.ncs new file mode 100644 index 0000000..80b0f7d Binary files /dev/null and b/_module/ncs/pvote.ncs differ diff --git a/_module/ncs/pvp_exit.ncs b/_module/ncs/pvp_exit.ncs new file mode 100644 index 0000000..fb0a919 Binary files /dev/null and b/_module/ncs/pvp_exit.ncs differ diff --git a/_module/ncs/pvp_set.ncs b/_module/ncs/pvp_set.ncs new file mode 100644 index 0000000..4870aa6 Binary files /dev/null and b/_module/ncs/pvp_set.ncs differ diff --git a/_module/ncs/pvp_set2.ncs b/_module/ncs/pvp_set2.ncs new file mode 100644 index 0000000..b7fb007 Binary files /dev/null and b/_module/ncs/pvp_set2.ncs differ diff --git a/_module/ncs/pvp_set_duelmode.ncs b/_module/ncs/pvp_set_duelmode.ncs new file mode 100644 index 0000000..88fb63c Binary files /dev/null and b/_module/ncs/pvp_set_duelmode.ncs differ diff --git a/_module/ncs/r_ab1.ncs b/_module/ncs/r_ab1.ncs new file mode 100644 index 0000000..17d2288 Binary files /dev/null and b/_module/ncs/r_ab1.ncs differ diff --git a/_module/ncs/r_ab122.ncs b/_module/ncs/r_ab122.ncs new file mode 100644 index 0000000..f5f21ed Binary files /dev/null and b/_module/ncs/r_ab122.ncs differ diff --git a/_module/ncs/r_ab1222.ncs b/_module/ncs/r_ab1222.ncs new file mode 100644 index 0000000..b28305c Binary files /dev/null and b/_module/ncs/r_ab1222.ncs differ diff --git a/_module/ncs/r_ab13.ncs b/_module/ncs/r_ab13.ncs new file mode 100644 index 0000000..ac8f163 Binary files /dev/null and b/_module/ncs/r_ab13.ncs differ diff --git a/_module/ncs/r_ab133.ncs b/_module/ncs/r_ab133.ncs new file mode 100644 index 0000000..2add9c9 Binary files /dev/null and b/_module/ncs/r_ab133.ncs differ diff --git a/_module/ncs/r_ab1333.ncs b/_module/ncs/r_ab1333.ncs new file mode 100644 index 0000000..33cb742 Binary files /dev/null and b/_module/ncs/r_ab1333.ncs differ diff --git a/_module/ncs/r_ab1t1.ncs b/_module/ncs/r_ab1t1.ncs new file mode 100644 index 0000000..2add9c9 Binary files /dev/null and b/_module/ncs/r_ab1t1.ncs differ diff --git a/_module/ncs/r_pool_switch.ncs b/_module/ncs/r_pool_switch.ncs new file mode 100644 index 0000000..dd519e0 Binary files /dev/null and b/_module/ncs/r_pool_switch.ncs differ diff --git a/_module/ncs/rab1.ncs b/_module/ncs/rab1.ncs new file mode 100644 index 0000000..6166a46 Binary files /dev/null and b/_module/ncs/rab1.ncs differ diff --git a/_module/ncs/rab12.ncs b/_module/ncs/rab12.ncs new file mode 100644 index 0000000..7640cfa Binary files /dev/null and b/_module/ncs/rab12.ncs differ diff --git a/_module/ncs/rab2.ncs b/_module/ncs/rab2.ncs new file mode 100644 index 0000000..26143a5 Binary files /dev/null and b/_module/ncs/rab2.ncs differ diff --git a/_module/ncs/randomlightenin2.ncs b/_module/ncs/randomlightenin2.ncs new file mode 100644 index 0000000..b75f0a6 Binary files /dev/null and b/_module/ncs/randomlightenin2.ncs differ diff --git a/_module/ncs/randomlightening.ncs b/_module/ncs/randomlightening.ncs new file mode 100644 index 0000000..1532e0b Binary files /dev/null and b/_module/ncs/randomlightening.ncs differ diff --git a/_module/ncs/rangeff1.ncs b/_module/ncs/rangeff1.ncs new file mode 100644 index 0000000..40c6a97 Binary files /dev/null and b/_module/ncs/rangeff1.ncs differ diff --git a/_module/ncs/rangeff12.ncs b/_module/ncs/rangeff12.ncs new file mode 100644 index 0000000..877b3a0 Binary files /dev/null and b/_module/ncs/rangeff12.ncs differ diff --git a/_module/ncs/rank_test1.ncs b/_module/ncs/rank_test1.ncs new file mode 100644 index 0000000..c06de69 Binary files /dev/null and b/_module/ncs/rank_test1.ncs differ diff --git a/_module/ncs/rank_test2.ncs b/_module/ncs/rank_test2.ncs new file mode 100644 index 0000000..f2f65f3 Binary files /dev/null and b/_module/ncs/rank_test2.ncs differ diff --git a/_module/ncs/rate1.ncs b/_module/ncs/rate1.ncs new file mode 100644 index 0000000..05ca2e0 Binary files /dev/null and b/_module/ncs/rate1.ncs differ diff --git a/_module/ncs/rate_dam.ncs b/_module/ncs/rate_dam.ncs new file mode 100644 index 0000000..0377b4d Binary files /dev/null and b/_module/ncs/rate_dam.ncs differ diff --git a/_module/ncs/rate_def.ncs b/_module/ncs/rate_def.ncs new file mode 100644 index 0000000..ffc0ba8 Binary files /dev/null and b/_module/ncs/rate_def.ncs differ diff --git a/_module/ncs/rate_off.ncs b/_module/ncs/rate_off.ncs new file mode 100644 index 0000000..71f3c2c Binary files /dev/null and b/_module/ncs/rate_off.ncs differ diff --git a/_module/ncs/red1_1.ncs b/_module/ncs/red1_1.ncs new file mode 100644 index 0000000..0fc8ea5 Binary files /dev/null and b/_module/ncs/red1_1.ncs differ diff --git a/_module/ncs/red1_1a.ncs b/_module/ncs/red1_1a.ncs new file mode 100644 index 0000000..0610bf1 Binary files /dev/null and b/_module/ncs/red1_1a.ncs differ diff --git a/_module/ncs/red_0.ncs b/_module/ncs/red_0.ncs new file mode 100644 index 0000000..f11b93e Binary files /dev/null and b/_module/ncs/red_0.ncs differ diff --git a/_module/ncs/red_0a.ncs b/_module/ncs/red_0a.ncs new file mode 100644 index 0000000..5b41082 Binary files /dev/null and b/_module/ncs/red_0a.ncs differ diff --git a/_module/ncs/red_1.ncs b/_module/ncs/red_1.ncs new file mode 100644 index 0000000..2ab3427 Binary files /dev/null and b/_module/ncs/red_1.ncs differ diff --git a/_module/ncs/red_10.ncs b/_module/ncs/red_10.ncs new file mode 100644 index 0000000..10b6ecf Binary files /dev/null and b/_module/ncs/red_10.ncs differ diff --git a/_module/ncs/red_11.ncs b/_module/ncs/red_11.ncs new file mode 100644 index 0000000..b409828 Binary files /dev/null and b/_module/ncs/red_11.ncs differ diff --git a/_module/ncs/red_12.ncs b/_module/ncs/red_12.ncs new file mode 100644 index 0000000..1e3e8c7 Binary files /dev/null and b/_module/ncs/red_12.ncs differ diff --git a/_module/ncs/red_1a.ncs b/_module/ncs/red_1a.ncs new file mode 100644 index 0000000..c2c90c8 Binary files /dev/null and b/_module/ncs/red_1a.ncs differ diff --git a/_module/ncs/red_2.ncs b/_module/ncs/red_2.ncs new file mode 100644 index 0000000..db75ac1 Binary files /dev/null and b/_module/ncs/red_2.ncs differ diff --git a/_module/ncs/red_2a.ncs b/_module/ncs/red_2a.ncs new file mode 100644 index 0000000..ea3a736 Binary files /dev/null and b/_module/ncs/red_2a.ncs differ diff --git a/_module/ncs/red_3.ncs b/_module/ncs/red_3.ncs new file mode 100644 index 0000000..aba6879 Binary files /dev/null and b/_module/ncs/red_3.ncs differ diff --git a/_module/ncs/red_3a.ncs b/_module/ncs/red_3a.ncs new file mode 100644 index 0000000..26fc168 Binary files /dev/null and b/_module/ncs/red_3a.ncs differ diff --git a/_module/ncs/red_4.ncs b/_module/ncs/red_4.ncs new file mode 100644 index 0000000..8b362df Binary files /dev/null and b/_module/ncs/red_4.ncs differ diff --git a/_module/ncs/red_4a.ncs b/_module/ncs/red_4a.ncs new file mode 100644 index 0000000..aa92c89 Binary files /dev/null and b/_module/ncs/red_4a.ncs differ diff --git a/_module/ncs/red_6.ncs b/_module/ncs/red_6.ncs new file mode 100644 index 0000000..0c062c8 Binary files /dev/null and b/_module/ncs/red_6.ncs differ diff --git a/_module/ncs/red_6a.ncs b/_module/ncs/red_6a.ncs new file mode 100644 index 0000000..0f81bf5 Binary files /dev/null and b/_module/ncs/red_6a.ncs differ diff --git a/_module/ncs/red_7.ncs b/_module/ncs/red_7.ncs new file mode 100644 index 0000000..2464d99 Binary files /dev/null and b/_module/ncs/red_7.ncs differ diff --git a/_module/ncs/red_8.ncs b/_module/ncs/red_8.ncs new file mode 100644 index 0000000..3715bf8 Binary files /dev/null and b/_module/ncs/red_8.ncs differ diff --git a/_module/ncs/red_9.ncs b/_module/ncs/red_9.ncs new file mode 100644 index 0000000..4f9bab7 Binary files /dev/null and b/_module/ncs/red_9.ncs differ diff --git a/_module/ncs/regen_imbue.ncs b/_module/ncs/regen_imbue.ncs new file mode 100644 index 0000000..98ee2ef Binary files /dev/null and b/_module/ncs/regen_imbue.ncs differ diff --git a/_module/ncs/reset_all_scores.ncs b/_module/ncs/reset_all_scores.ncs new file mode 100644 index 0000000..781c78a Binary files /dev/null and b/_module/ncs/reset_all_scores.ncs differ diff --git a/_module/ncs/reset_arena.ncs b/_module/ncs/reset_arena.ncs new file mode 100644 index 0000000..457bab6 Binary files /dev/null and b/_module/ncs/reset_arena.ncs differ diff --git a/_module/ncs/reset_eye.ncs b/_module/ncs/reset_eye.ncs new file mode 100644 index 0000000..e4f0588 Binary files /dev/null and b/_module/ncs/reset_eye.ncs differ diff --git a/_module/ncs/reset_hitdam.ncs b/_module/ncs/reset_hitdam.ncs new file mode 100644 index 0000000..bb01b83 Binary files /dev/null and b/_module/ncs/reset_hitdam.ncs differ diff --git a/_module/ncs/reset_hwarsc2.ncs b/_module/ncs/reset_hwarsc2.ncs new file mode 100644 index 0000000..238b23c Binary files /dev/null and b/_module/ncs/reset_hwarsc2.ncs differ diff --git a/_module/ncs/reset_hwarscores.ncs b/_module/ncs/reset_hwarscores.ncs new file mode 100644 index 0000000..45bac39 Binary files /dev/null and b/_module/ncs/reset_hwarscores.ncs differ diff --git a/_module/ncs/reset_monster_sc.ncs b/_module/ncs/reset_monster_sc.ncs new file mode 100644 index 0000000..07d477b Binary files /dev/null and b/_module/ncs/reset_monster_sc.ncs differ diff --git a/_module/ncs/reset_mscores.ncs b/_module/ncs/reset_mscores.ncs new file mode 100644 index 0000000..4bd612f Binary files /dev/null and b/_module/ncs/reset_mscores.ncs differ diff --git a/_module/ncs/reset_mscores2.ncs b/_module/ncs/reset_mscores2.ncs new file mode 100644 index 0000000..55011e9 Binary files /dev/null and b/_module/ncs/reset_mscores2.ncs differ diff --git a/_module/ncs/reset_pchwscores.ncs b/_module/ncs/reset_pchwscores.ncs new file mode 100644 index 0000000..d4c9537 Binary files /dev/null and b/_module/ncs/reset_pchwscores.ncs differ diff --git a/_module/ncs/reset_scores.ncs b/_module/ncs/reset_scores.ncs new file mode 100644 index 0000000..404f187 Binary files /dev/null and b/_module/ncs/reset_scores.ncs differ diff --git a/_module/ncs/reset_totcas.ncs b/_module/ncs/reset_totcas.ncs new file mode 100644 index 0000000..42d49e4 Binary files /dev/null and b/_module/ncs/reset_totcas.ncs differ diff --git a/_module/ncs/respawn3.ncs b/_module/ncs/respawn3.ncs new file mode 100644 index 0000000..c609c7f Binary files /dev/null and b/_module/ncs/respawn3.ncs differ diff --git a/_module/ncs/rest_imbue.ncs b/_module/ncs/rest_imbue.ncs new file mode 100644 index 0000000..bcf5733 Binary files /dev/null and b/_module/ncs/rest_imbue.ncs differ diff --git a/_module/ncs/ring_shop.ncs b/_module/ncs/ring_shop.ncs new file mode 100644 index 0000000..70e4b03 Binary files /dev/null and b/_module/ncs/ring_shop.ncs differ diff --git a/_module/ncs/robe_shop.ncs b/_module/ncs/robe_shop.ncs new file mode 100644 index 0000000..63bce9d Binary files /dev/null and b/_module/ncs/robe_shop.ncs differ diff --git a/_module/ncs/s_challenge.ncs b/_module/ncs/s_challenge.ncs new file mode 100644 index 0000000..0c06839 Binary files /dev/null and b/_module/ncs/s_challenge.ncs differ diff --git a/_module/ncs/s_challenge2.ncs b/_module/ncs/s_challenge2.ncs new file mode 100644 index 0000000..31c6d7a Binary files /dev/null and b/_module/ncs/s_challenge2.ncs differ diff --git a/_module/ncs/s_challenge_easy.ncs b/_module/ncs/s_challenge_easy.ncs new file mode 100644 index 0000000..26f8c7d Binary files /dev/null and b/_module/ncs/s_challenge_easy.ncs differ diff --git a/_module/ncs/s_challenge_god.ncs b/_module/ncs/s_challenge_god.ncs new file mode 100644 index 0000000..4da9a49 Binary files /dev/null and b/_module/ncs/s_challenge_god.ncs differ diff --git a/_module/ncs/s_challenge_hard.ncs b/_module/ncs/s_challenge_hard.ncs new file mode 100644 index 0000000..59e3875 Binary files /dev/null and b/_module/ncs/s_challenge_hard.ncs differ diff --git a/_module/ncs/s_challenge_med.ncs b/_module/ncs/s_challenge_med.ncs new file mode 100644 index 0000000..61b7fa1 Binary files /dev/null and b/_module/ncs/s_challenge_med.ncs differ diff --git a/_module/ncs/sammdred_imbue_3.ncs b/_module/ncs/sammdred_imbue_3.ncs new file mode 100644 index 0000000..6071f5c Binary files /dev/null and b/_module/ncs/sammdred_imbue_3.ncs differ diff --git a/_module/ncs/sammdred_imbue_4.ncs b/_module/ncs/sammdred_imbue_4.ncs new file mode 100644 index 0000000..80cd297 Binary files /dev/null and b/_module/ncs/sammdred_imbue_4.ncs differ diff --git a/_module/ncs/sammdred_imbue_5.ncs b/_module/ncs/sammdred_imbue_5.ncs new file mode 100644 index 0000000..9be3875 Binary files /dev/null and b/_module/ncs/sammdred_imbue_5.ncs differ diff --git a/_module/ncs/sc2.ncs b/_module/ncs/sc2.ncs new file mode 100644 index 0000000..643ef58 Binary files /dev/null and b/_module/ncs/sc2.ncs differ diff --git a/_module/ncs/sc2b.ncs b/_module/ncs/sc2b.ncs new file mode 100644 index 0000000..42738cb Binary files /dev/null and b/_module/ncs/sc2b.ncs differ diff --git a/_module/ncs/sc_001.ncs b/_module/ncs/sc_001.ncs new file mode 100644 index 0000000..f70edb6 Binary files /dev/null and b/_module/ncs/sc_001.ncs differ diff --git a/_module/ncs/sc_002.ncs b/_module/ncs/sc_002.ncs new file mode 100644 index 0000000..1efbcb7 Binary files /dev/null and b/_module/ncs/sc_002.ncs differ diff --git a/_module/ncs/sc_0021.ncs b/_module/ncs/sc_0021.ncs new file mode 100644 index 0000000..2f68b00 Binary files /dev/null and b/_module/ncs/sc_0021.ncs differ diff --git a/_module/ncs/sc_002s.ncs b/_module/ncs/sc_002s.ncs new file mode 100644 index 0000000..4212bcd Binary files /dev/null and b/_module/ncs/sc_002s.ncs differ diff --git a/_module/ncs/sc_002s1.ncs b/_module/ncs/sc_002s1.ncs new file mode 100644 index 0000000..4027db2 Binary files /dev/null and b/_module/ncs/sc_002s1.ncs differ diff --git a/_module/ncs/sc_003.ncs b/_module/ncs/sc_003.ncs new file mode 100644 index 0000000..36c0d32 Binary files /dev/null and b/_module/ncs/sc_003.ncs differ diff --git a/_module/ncs/sc_0031.ncs b/_module/ncs/sc_0031.ncs new file mode 100644 index 0000000..6c5c018 Binary files /dev/null and b/_module/ncs/sc_0031.ncs differ diff --git a/_module/ncs/sc_003s.ncs b/_module/ncs/sc_003s.ncs new file mode 100644 index 0000000..95034c9 Binary files /dev/null and b/_module/ncs/sc_003s.ncs differ diff --git a/_module/ncs/sc_003s1.ncs b/_module/ncs/sc_003s1.ncs new file mode 100644 index 0000000..ee3f0b3 Binary files /dev/null and b/_module/ncs/sc_003s1.ncs differ diff --git a/_module/ncs/sc_004.ncs b/_module/ncs/sc_004.ncs new file mode 100644 index 0000000..f6c7038 Binary files /dev/null and b/_module/ncs/sc_004.ncs differ diff --git a/_module/ncs/sc_0041.ncs b/_module/ncs/sc_0041.ncs new file mode 100644 index 0000000..7e77b47 Binary files /dev/null and b/_module/ncs/sc_0041.ncs differ diff --git a/_module/ncs/sc_004x.ncs b/_module/ncs/sc_004x.ncs new file mode 100644 index 0000000..3efb8b4 Binary files /dev/null and b/_module/ncs/sc_004x.ncs differ diff --git a/_module/ncs/sc_004x1.ncs b/_module/ncs/sc_004x1.ncs new file mode 100644 index 0000000..9525440 Binary files /dev/null and b/_module/ncs/sc_004x1.ncs differ diff --git a/_module/ncs/sc_005.ncs b/_module/ncs/sc_005.ncs new file mode 100644 index 0000000..ba2c91e Binary files /dev/null and b/_module/ncs/sc_005.ncs differ diff --git a/_module/ncs/sc_0051.ncs b/_module/ncs/sc_0051.ncs new file mode 100644 index 0000000..8410c06 Binary files /dev/null and b/_module/ncs/sc_0051.ncs differ diff --git a/_module/ncs/sc_005s.ncs b/_module/ncs/sc_005s.ncs new file mode 100644 index 0000000..d39a00c Binary files /dev/null and b/_module/ncs/sc_005s.ncs differ diff --git a/_module/ncs/sc_005s1.ncs b/_module/ncs/sc_005s1.ncs new file mode 100644 index 0000000..17868d2 Binary files /dev/null and b/_module/ncs/sc_005s1.ncs differ diff --git a/_module/ncs/sc_006.ncs b/_module/ncs/sc_006.ncs new file mode 100644 index 0000000..805faaf Binary files /dev/null and b/_module/ncs/sc_006.ncs differ diff --git a/_module/ncs/sc_0061.ncs b/_module/ncs/sc_0061.ncs new file mode 100644 index 0000000..8033d6c Binary files /dev/null and b/_module/ncs/sc_0061.ncs differ diff --git a/_module/ncs/sc_006s.ncs b/_module/ncs/sc_006s.ncs new file mode 100644 index 0000000..6be64e8 Binary files /dev/null and b/_module/ncs/sc_006s.ncs differ diff --git a/_module/ncs/sc_006s1.ncs b/_module/ncs/sc_006s1.ncs new file mode 100644 index 0000000..e2c3bc7 Binary files /dev/null and b/_module/ncs/sc_006s1.ncs differ diff --git a/_module/ncs/sc_007.ncs b/_module/ncs/sc_007.ncs new file mode 100644 index 0000000..0938d95 Binary files /dev/null and b/_module/ncs/sc_007.ncs differ diff --git a/_module/ncs/sc_007as.ncs b/_module/ncs/sc_007as.ncs new file mode 100644 index 0000000..13a2a07 Binary files /dev/null and b/_module/ncs/sc_007as.ncs differ diff --git a/_module/ncs/sc_007b.ncs b/_module/ncs/sc_007b.ncs new file mode 100644 index 0000000..f5b95f2 Binary files /dev/null and b/_module/ncs/sc_007b.ncs differ diff --git a/_module/ncs/sc_008.ncs b/_module/ncs/sc_008.ncs new file mode 100644 index 0000000..d8558c9 Binary files /dev/null and b/_module/ncs/sc_008.ncs differ diff --git a/_module/ncs/sc_0082.ncs b/_module/ncs/sc_0082.ncs new file mode 100644 index 0000000..7756eb2 Binary files /dev/null and b/_module/ncs/sc_0082.ncs differ diff --git a/_module/ncs/sc_009.ncs b/_module/ncs/sc_009.ncs new file mode 100644 index 0000000..f52ca40 Binary files /dev/null and b/_module/ncs/sc_009.ncs differ diff --git a/_module/ncs/sc_010.ncs b/_module/ncs/sc_010.ncs new file mode 100644 index 0000000..0e1569c Binary files /dev/null and b/_module/ncs/sc_010.ncs differ diff --git a/_module/ncs/sc_010b.ncs b/_module/ncs/sc_010b.ncs new file mode 100644 index 0000000..d7ceaa0 Binary files /dev/null and b/_module/ncs/sc_010b.ncs differ diff --git a/_module/ncs/sc_010ba.ncs b/_module/ncs/sc_010ba.ncs new file mode 100644 index 0000000..0e1569c Binary files /dev/null and b/_module/ncs/sc_010ba.ncs differ diff --git a/_module/ncs/sc_011.ncs b/_module/ncs/sc_011.ncs new file mode 100644 index 0000000..b697ed5 Binary files /dev/null and b/_module/ncs/sc_011.ncs differ diff --git a/_module/ncs/sc_0111.ncs b/_module/ncs/sc_0111.ncs new file mode 100644 index 0000000..6ae3394 Binary files /dev/null and b/_module/ncs/sc_0111.ncs differ diff --git a/_module/ncs/sc_011b.ncs b/_module/ncs/sc_011b.ncs new file mode 100644 index 0000000..0380173 Binary files /dev/null and b/_module/ncs/sc_011b.ncs differ diff --git a/_module/ncs/sc_011c.ncs b/_module/ncs/sc_011c.ncs new file mode 100644 index 0000000..2e34623 Binary files /dev/null and b/_module/ncs/sc_011c.ncs differ diff --git a/_module/ncs/sc_011d.ncs b/_module/ncs/sc_011d.ncs new file mode 100644 index 0000000..784ebcf Binary files /dev/null and b/_module/ncs/sc_011d.ncs differ diff --git a/_module/ncs/sc_012.ncs b/_module/ncs/sc_012.ncs new file mode 100644 index 0000000..eb5f4f2 Binary files /dev/null and b/_module/ncs/sc_012.ncs differ diff --git a/_module/ncs/sc_0121.ncs b/_module/ncs/sc_0121.ncs new file mode 100644 index 0000000..086ce9d Binary files /dev/null and b/_module/ncs/sc_0121.ncs differ diff --git a/_module/ncs/sc_0121x.ncs b/_module/ncs/sc_0121x.ncs new file mode 100644 index 0000000..d7215b7 Binary files /dev/null and b/_module/ncs/sc_0121x.ncs differ diff --git a/_module/ncs/sc_012s.ncs b/_module/ncs/sc_012s.ncs new file mode 100644 index 0000000..0e1569c Binary files /dev/null and b/_module/ncs/sc_012s.ncs differ diff --git a/_module/ncs/sc_012s1.ncs b/_module/ncs/sc_012s1.ncs new file mode 100644 index 0000000..2f588a5 Binary files /dev/null and b/_module/ncs/sc_012s1.ncs differ diff --git a/_module/ncs/sc_012s1a.ncs b/_module/ncs/sc_012s1a.ncs new file mode 100644 index 0000000..4e046af Binary files /dev/null and b/_module/ncs/sc_012s1a.ncs differ diff --git a/_module/ncs/sc_013.ncs b/_module/ncs/sc_013.ncs new file mode 100644 index 0000000..066fcd3 Binary files /dev/null and b/_module/ncs/sc_013.ncs differ diff --git a/_module/ncs/sc_014.ncs b/_module/ncs/sc_014.ncs new file mode 100644 index 0000000..20342fd Binary files /dev/null and b/_module/ncs/sc_014.ncs differ diff --git a/_module/ncs/sc_0141.ncs b/_module/ncs/sc_0141.ncs new file mode 100644 index 0000000..cafb678 Binary files /dev/null and b/_module/ncs/sc_0141.ncs differ diff --git a/_module/ncs/sc_0142.ncs b/_module/ncs/sc_0142.ncs new file mode 100644 index 0000000..097a5d2 Binary files /dev/null and b/_module/ncs/sc_0142.ncs differ diff --git a/_module/ncs/sc_015.ncs b/_module/ncs/sc_015.ncs new file mode 100644 index 0000000..db30820 Binary files /dev/null and b/_module/ncs/sc_015.ncs differ diff --git a/_module/ncs/sc_016.ncs b/_module/ncs/sc_016.ncs new file mode 100644 index 0000000..4cc0cba Binary files /dev/null and b/_module/ncs/sc_016.ncs differ diff --git a/_module/ncs/sc_017.ncs b/_module/ncs/sc_017.ncs new file mode 100644 index 0000000..b9c9d5b Binary files /dev/null and b/_module/ncs/sc_017.ncs differ diff --git a/_module/ncs/sc_018.ncs b/_module/ncs/sc_018.ncs new file mode 100644 index 0000000..6685d40 Binary files /dev/null and b/_module/ncs/sc_018.ncs differ diff --git a/_module/ncs/sc_019.ncs b/_module/ncs/sc_019.ncs new file mode 100644 index 0000000..7bf3daf Binary files /dev/null and b/_module/ncs/sc_019.ncs differ diff --git a/_module/ncs/sc_019b.ncs b/_module/ncs/sc_019b.ncs new file mode 100644 index 0000000..e438621 Binary files /dev/null and b/_module/ncs/sc_019b.ncs differ diff --git a/_module/ncs/sc_019b1.ncs b/_module/ncs/sc_019b1.ncs new file mode 100644 index 0000000..7e841e0 Binary files /dev/null and b/_module/ncs/sc_019b1.ncs differ diff --git a/_module/ncs/sc_020.ncs b/_module/ncs/sc_020.ncs new file mode 100644 index 0000000..493faf3 Binary files /dev/null and b/_module/ncs/sc_020.ncs differ diff --git a/_module/ncs/sc_021.ncs b/_module/ncs/sc_021.ncs new file mode 100644 index 0000000..327d0c3 Binary files /dev/null and b/_module/ncs/sc_021.ncs differ diff --git a/_module/ncs/sc_022.ncs b/_module/ncs/sc_022.ncs new file mode 100644 index 0000000..363f62f Binary files /dev/null and b/_module/ncs/sc_022.ncs differ diff --git a/_module/ncs/sc_023.ncs b/_module/ncs/sc_023.ncs new file mode 100644 index 0000000..54e197a Binary files /dev/null and b/_module/ncs/sc_023.ncs differ diff --git a/_module/ncs/sc_024.ncs b/_module/ncs/sc_024.ncs new file mode 100644 index 0000000..43ae19a Binary files /dev/null and b/_module/ncs/sc_024.ncs differ diff --git a/_module/ncs/sc_024a.ncs b/_module/ncs/sc_024a.ncs new file mode 100644 index 0000000..635f1b6 Binary files /dev/null and b/_module/ncs/sc_024a.ncs differ diff --git a/_module/ncs/sc_024a1.ncs b/_module/ncs/sc_024a1.ncs new file mode 100644 index 0000000..635f1b6 Binary files /dev/null and b/_module/ncs/sc_024a1.ncs differ diff --git a/_module/ncs/sc_024aa.ncs b/_module/ncs/sc_024aa.ncs new file mode 100644 index 0000000..87703c3 Binary files /dev/null and b/_module/ncs/sc_024aa.ncs differ diff --git a/_module/ncs/sc_025.ncs b/_module/ncs/sc_025.ncs new file mode 100644 index 0000000..9499b1a Binary files /dev/null and b/_module/ncs/sc_025.ncs differ diff --git a/_module/ncs/sc_025a.ncs b/_module/ncs/sc_025a.ncs new file mode 100644 index 0000000..aa1fe30 Binary files /dev/null and b/_module/ncs/sc_025a.ncs differ diff --git a/_module/ncs/sc_025d.ncs b/_module/ncs/sc_025d.ncs new file mode 100644 index 0000000..1f0a5cd Binary files /dev/null and b/_module/ncs/sc_025d.ncs differ diff --git a/_module/ncs/sc_025g.ncs b/_module/ncs/sc_025g.ncs new file mode 100644 index 0000000..1f0a5cd Binary files /dev/null and b/_module/ncs/sc_025g.ncs differ diff --git a/_module/ncs/sc_026.ncs b/_module/ncs/sc_026.ncs new file mode 100644 index 0000000..43ae19a Binary files /dev/null and b/_module/ncs/sc_026.ncs differ diff --git a/_module/ncs/sc_027.ncs b/_module/ncs/sc_027.ncs new file mode 100644 index 0000000..fad921b Binary files /dev/null and b/_module/ncs/sc_027.ncs differ diff --git a/_module/ncs/sc_028.ncs b/_module/ncs/sc_028.ncs new file mode 100644 index 0000000..9e95324 Binary files /dev/null and b/_module/ncs/sc_028.ncs differ diff --git a/_module/ncs/sc_028a.ncs b/_module/ncs/sc_028a.ncs new file mode 100644 index 0000000..01bd941 Binary files /dev/null and b/_module/ncs/sc_028a.ncs differ diff --git a/_module/ncs/sc_028b.ncs b/_module/ncs/sc_028b.ncs new file mode 100644 index 0000000..0661700 Binary files /dev/null and b/_module/ncs/sc_028b.ncs differ diff --git a/_module/ncs/sc_028b4.ncs b/_module/ncs/sc_028b4.ncs new file mode 100644 index 0000000..3e62ca0 Binary files /dev/null and b/_module/ncs/sc_028b4.ncs differ diff --git a/_module/ncs/sc_028c.ncs b/_module/ncs/sc_028c.ncs new file mode 100644 index 0000000..d8c417a Binary files /dev/null and b/_module/ncs/sc_028c.ncs differ diff --git a/_module/ncs/sc_028c3.ncs b/_module/ncs/sc_028c3.ncs new file mode 100644 index 0000000..3bd0ea5 Binary files /dev/null and b/_module/ncs/sc_028c3.ncs differ diff --git a/_module/ncs/sc_028v.ncs b/_module/ncs/sc_028v.ncs new file mode 100644 index 0000000..70b2e36 Binary files /dev/null and b/_module/ncs/sc_028v.ncs differ diff --git a/_module/ncs/sc_029.ncs b/_module/ncs/sc_029.ncs new file mode 100644 index 0000000..0661700 Binary files /dev/null and b/_module/ncs/sc_029.ncs differ diff --git a/_module/ncs/sc_029a.ncs b/_module/ncs/sc_029a.ncs new file mode 100644 index 0000000..f566852 Binary files /dev/null and b/_module/ncs/sc_029a.ncs differ diff --git a/_module/ncs/sc_029d.ncs b/_module/ncs/sc_029d.ncs new file mode 100644 index 0000000..eeb3473 Binary files /dev/null and b/_module/ncs/sc_029d.ncs differ diff --git a/_module/ncs/sc_029dd.ncs b/_module/ncs/sc_029dd.ncs new file mode 100644 index 0000000..f81aac7 Binary files /dev/null and b/_module/ncs/sc_029dd.ncs differ diff --git a/_module/ncs/sc_030.ncs b/_module/ncs/sc_030.ncs new file mode 100644 index 0000000..a67c4fb Binary files /dev/null and b/_module/ncs/sc_030.ncs differ diff --git a/_module/ncs/sc_031.ncs b/_module/ncs/sc_031.ncs new file mode 100644 index 0000000..0078d90 Binary files /dev/null and b/_module/ncs/sc_031.ncs differ diff --git a/_module/ncs/sc_032.ncs b/_module/ncs/sc_032.ncs new file mode 100644 index 0000000..37920cf Binary files /dev/null and b/_module/ncs/sc_032.ncs differ diff --git a/_module/ncs/sc_032a.ncs b/_module/ncs/sc_032a.ncs new file mode 100644 index 0000000..eac6bb2 Binary files /dev/null and b/_module/ncs/sc_032a.ncs differ diff --git a/_module/ncs/sc_033.ncs b/_module/ncs/sc_033.ncs new file mode 100644 index 0000000..81e178e Binary files /dev/null and b/_module/ncs/sc_033.ncs differ diff --git a/_module/ncs/sc_033a.ncs b/_module/ncs/sc_033a.ncs new file mode 100644 index 0000000..37b73f0 Binary files /dev/null and b/_module/ncs/sc_033a.ncs differ diff --git a/_module/ncs/sc_034.ncs b/_module/ncs/sc_034.ncs new file mode 100644 index 0000000..0757fb4 Binary files /dev/null and b/_module/ncs/sc_034.ncs differ diff --git a/_module/ncs/sc_034b.ncs b/_module/ncs/sc_034b.ncs new file mode 100644 index 0000000..9967b43 Binary files /dev/null and b/_module/ncs/sc_034b.ncs differ diff --git a/_module/ncs/sc_035.ncs b/_module/ncs/sc_035.ncs new file mode 100644 index 0000000..a50f78f Binary files /dev/null and b/_module/ncs/sc_035.ncs differ diff --git a/_module/ncs/sc_035a.ncs b/_module/ncs/sc_035a.ncs new file mode 100644 index 0000000..35b9642 Binary files /dev/null and b/_module/ncs/sc_035a.ncs differ diff --git a/_module/ncs/sc_036.ncs b/_module/ncs/sc_036.ncs new file mode 100644 index 0000000..c62590f Binary files /dev/null and b/_module/ncs/sc_036.ncs differ diff --git a/_module/ncs/sc_036a.ncs b/_module/ncs/sc_036a.ncs new file mode 100644 index 0000000..04c18ff Binary files /dev/null and b/_module/ncs/sc_036a.ncs differ diff --git a/_module/ncs/sc_036b.ncs b/_module/ncs/sc_036b.ncs new file mode 100644 index 0000000..04c18ff Binary files /dev/null and b/_module/ncs/sc_036b.ncs differ diff --git a/_module/ncs/sc_037.ncs b/_module/ncs/sc_037.ncs new file mode 100644 index 0000000..87703c3 Binary files /dev/null and b/_module/ncs/sc_037.ncs differ diff --git a/_module/ncs/sc_038.ncs b/_module/ncs/sc_038.ncs new file mode 100644 index 0000000..635f1b6 Binary files /dev/null and b/_module/ncs/sc_038.ncs differ diff --git a/_module/ncs/sc_039.ncs b/_module/ncs/sc_039.ncs new file mode 100644 index 0000000..dcc5f34 Binary files /dev/null and b/_module/ncs/sc_039.ncs differ diff --git a/_module/ncs/sc_040.ncs b/_module/ncs/sc_040.ncs new file mode 100644 index 0000000..691ff57 Binary files /dev/null and b/_module/ncs/sc_040.ncs differ diff --git a/_module/ncs/sc_040a.ncs b/_module/ncs/sc_040a.ncs new file mode 100644 index 0000000..cf1aa2c Binary files /dev/null and b/_module/ncs/sc_040a.ncs differ diff --git a/_module/ncs/sc_041.ncs b/_module/ncs/sc_041.ncs new file mode 100644 index 0000000..e774d0a Binary files /dev/null and b/_module/ncs/sc_041.ncs differ diff --git a/_module/ncs/sc_041a.ncs b/_module/ncs/sc_041a.ncs new file mode 100644 index 0000000..270ae5f Binary files /dev/null and b/_module/ncs/sc_041a.ncs differ diff --git a/_module/ncs/sc_042.ncs b/_module/ncs/sc_042.ncs new file mode 100644 index 0000000..ae33424 Binary files /dev/null and b/_module/ncs/sc_042.ncs differ diff --git a/_module/ncs/sc_043.ncs b/_module/ncs/sc_043.ncs new file mode 100644 index 0000000..2986771 Binary files /dev/null and b/_module/ncs/sc_043.ncs differ diff --git a/_module/ncs/sc_0431.ncs b/_module/ncs/sc_0431.ncs new file mode 100644 index 0000000..92b0e5d Binary files /dev/null and b/_module/ncs/sc_0431.ncs differ diff --git a/_module/ncs/sc_043s.ncs b/_module/ncs/sc_043s.ncs new file mode 100644 index 0000000..d68b3e4 Binary files /dev/null and b/_module/ncs/sc_043s.ncs differ diff --git a/_module/ncs/sc_043s1.ncs b/_module/ncs/sc_043s1.ncs new file mode 100644 index 0000000..0fb0ac5 Binary files /dev/null and b/_module/ncs/sc_043s1.ncs differ diff --git a/_module/ncs/sc_044.ncs b/_module/ncs/sc_044.ncs new file mode 100644 index 0000000..687e880 Binary files /dev/null and b/_module/ncs/sc_044.ncs differ diff --git a/_module/ncs/sc_044a.ncs b/_module/ncs/sc_044a.ncs new file mode 100644 index 0000000..3fa3ecc Binary files /dev/null and b/_module/ncs/sc_044a.ncs differ diff --git a/_module/ncs/sc_044b.ncs b/_module/ncs/sc_044b.ncs new file mode 100644 index 0000000..81e0c9e Binary files /dev/null and b/_module/ncs/sc_044b.ncs differ diff --git a/_module/ncs/sc_044d.ncs b/_module/ncs/sc_044d.ncs new file mode 100644 index 0000000..4a8e4e2 Binary files /dev/null and b/_module/ncs/sc_044d.ncs differ diff --git a/_module/ncs/sc_045.ncs b/_module/ncs/sc_045.ncs new file mode 100644 index 0000000..d395827 Binary files /dev/null and b/_module/ncs/sc_045.ncs differ diff --git a/_module/ncs/sc_046.ncs b/_module/ncs/sc_046.ncs new file mode 100644 index 0000000..bc30740 Binary files /dev/null and b/_module/ncs/sc_046.ncs differ diff --git a/_module/ncs/sc_047.ncs b/_module/ncs/sc_047.ncs new file mode 100644 index 0000000..6cf5d98 Binary files /dev/null and b/_module/ncs/sc_047.ncs differ diff --git a/_module/ncs/sc_048.ncs b/_module/ncs/sc_048.ncs new file mode 100644 index 0000000..fcdf9f7 Binary files /dev/null and b/_module/ncs/sc_048.ncs differ diff --git a/_module/ncs/sc_048b.ncs b/_module/ncs/sc_048b.ncs new file mode 100644 index 0000000..5d09fa6 Binary files /dev/null and b/_module/ncs/sc_048b.ncs differ diff --git a/_module/ncs/sc_049.ncs b/_module/ncs/sc_049.ncs new file mode 100644 index 0000000..ffc3310 Binary files /dev/null and b/_module/ncs/sc_049.ncs differ diff --git a/_module/ncs/sc_050.ncs b/_module/ncs/sc_050.ncs new file mode 100644 index 0000000..6a7e568 Binary files /dev/null and b/_module/ncs/sc_050.ncs differ diff --git a/_module/ncs/sc_051.ncs b/_module/ncs/sc_051.ncs new file mode 100644 index 0000000..6a7e568 Binary files /dev/null and b/_module/ncs/sc_051.ncs differ diff --git a/_module/ncs/sc_052.ncs b/_module/ncs/sc_052.ncs new file mode 100644 index 0000000..422f636 Binary files /dev/null and b/_module/ncs/sc_052.ncs differ diff --git a/_module/ncs/sc_052b.ncs b/_module/ncs/sc_052b.ncs new file mode 100644 index 0000000..422f636 Binary files /dev/null and b/_module/ncs/sc_052b.ncs differ diff --git a/_module/ncs/sc_053.ncs b/_module/ncs/sc_053.ncs new file mode 100644 index 0000000..a049d1d Binary files /dev/null and b/_module/ncs/sc_053.ncs differ diff --git a/_module/ncs/sc_054.ncs b/_module/ncs/sc_054.ncs new file mode 100644 index 0000000..1f04277 Binary files /dev/null and b/_module/ncs/sc_054.ncs differ diff --git a/_module/ncs/sc_055.ncs b/_module/ncs/sc_055.ncs new file mode 100644 index 0000000..7fe43fa Binary files /dev/null and b/_module/ncs/sc_055.ncs differ diff --git a/_module/ncs/sc_12.ncs b/_module/ncs/sc_12.ncs new file mode 100644 index 0000000..c62bb77 Binary files /dev/null and b/_module/ncs/sc_12.ncs differ diff --git a/_module/ncs/sc_13.ncs b/_module/ncs/sc_13.ncs new file mode 100644 index 0000000..f5b95f2 Binary files /dev/null and b/_module/ncs/sc_13.ncs differ diff --git a/_module/ncs/sc_13a.ncs b/_module/ncs/sc_13a.ncs new file mode 100644 index 0000000..a1cbc2f Binary files /dev/null and b/_module/ncs/sc_13a.ncs differ diff --git a/_module/ncs/sc_13a1.ncs b/_module/ncs/sc_13a1.ncs new file mode 100644 index 0000000..2800697 Binary files /dev/null and b/_module/ncs/sc_13a1.ncs differ diff --git a/_module/ncs/sc_13ab.ncs b/_module/ncs/sc_13ab.ncs new file mode 100644 index 0000000..4ad774c Binary files /dev/null and b/_module/ncs/sc_13ab.ncs differ diff --git a/_module/ncs/sc_13ac.ncs b/_module/ncs/sc_13ac.ncs new file mode 100644 index 0000000..0ec64dd Binary files /dev/null and b/_module/ncs/sc_13ac.ncs differ diff --git a/_module/ncs/sc_13ac1.ncs b/_module/ncs/sc_13ac1.ncs new file mode 100644 index 0000000..0723937 Binary files /dev/null and b/_module/ncs/sc_13ac1.ncs differ diff --git a/_module/ncs/sc_13aca.ncs b/_module/ncs/sc_13aca.ncs new file mode 100644 index 0000000..b797ade Binary files /dev/null and b/_module/ncs/sc_13aca.ncs differ diff --git a/_module/ncs/sc_20.ncs b/_module/ncs/sc_20.ncs new file mode 100644 index 0000000..c128189 Binary files /dev/null and b/_module/ncs/sc_20.ncs differ diff --git a/_module/ncs/sc_20b.ncs b/_module/ncs/sc_20b.ncs new file mode 100644 index 0000000..0c40cff Binary files /dev/null and b/_module/ncs/sc_20b.ncs differ diff --git a/_module/ncs/sc_21.ncs b/_module/ncs/sc_21.ncs new file mode 100644 index 0000000..3665245 Binary files /dev/null and b/_module/ncs/sc_21.ncs differ diff --git a/_module/ncs/sc_21b.ncs b/_module/ncs/sc_21b.ncs new file mode 100644 index 0000000..fad921b Binary files /dev/null and b/_module/ncs/sc_21b.ncs differ diff --git a/_module/ncs/sc_21c.ncs b/_module/ncs/sc_21c.ncs new file mode 100644 index 0000000..8bba965 Binary files /dev/null and b/_module/ncs/sc_21c.ncs differ diff --git a/_module/ncs/sc_21ca.ncs b/_module/ncs/sc_21ca.ncs new file mode 100644 index 0000000..a29d7aa Binary files /dev/null and b/_module/ncs/sc_21ca.ncs differ diff --git a/_module/ncs/sc_21d.ncs b/_module/ncs/sc_21d.ncs new file mode 100644 index 0000000..fcdd955 Binary files /dev/null and b/_module/ncs/sc_21d.ncs differ diff --git a/_module/ncs/sc_21de.ncs b/_module/ncs/sc_21de.ncs new file mode 100644 index 0000000..0c40cff Binary files /dev/null and b/_module/ncs/sc_21de.ncs differ diff --git a/_module/ncs/sc_21def.ncs b/_module/ncs/sc_21def.ncs new file mode 100644 index 0000000..92ce947 Binary files /dev/null and b/_module/ncs/sc_21def.ncs differ diff --git a/_module/ncs/sc_21defa.ncs b/_module/ncs/sc_21defa.ncs new file mode 100644 index 0000000..c723109 Binary files /dev/null and b/_module/ncs/sc_21defa.ncs differ diff --git a/_module/ncs/sc_21defa1.ncs b/_module/ncs/sc_21defa1.ncs new file mode 100644 index 0000000..92ce947 Binary files /dev/null and b/_module/ncs/sc_21defa1.ncs differ diff --git a/_module/ncs/sc_21defg.ncs b/_module/ncs/sc_21defg.ncs new file mode 100644 index 0000000..43ae19a Binary files /dev/null and b/_module/ncs/sc_21defg.ncs differ diff --git a/_module/ncs/sc_21defga.ncs b/_module/ncs/sc_21defga.ncs new file mode 100644 index 0000000..43ae19a Binary files /dev/null and b/_module/ncs/sc_21defga.ncs differ diff --git a/_module/ncs/sc_21dx.ncs b/_module/ncs/sc_21dx.ncs new file mode 100644 index 0000000..635f1b6 Binary files /dev/null and b/_module/ncs/sc_21dx.ncs differ diff --git a/_module/ncs/sc_21dx1.ncs b/_module/ncs/sc_21dx1.ncs new file mode 100644 index 0000000..87703c3 Binary files /dev/null and b/_module/ncs/sc_21dx1.ncs differ diff --git a/_module/ncs/sc_af.ncs b/_module/ncs/sc_af.ncs new file mode 100644 index 0000000..390ad89 Binary files /dev/null and b/_module/ncs/sc_af.ncs differ diff --git a/_module/ncs/sc_af1.ncs b/_module/ncs/sc_af1.ncs new file mode 100644 index 0000000..1068f70 Binary files /dev/null and b/_module/ncs/sc_af1.ncs differ diff --git a/_module/ncs/sc_af1a.ncs b/_module/ncs/sc_af1a.ncs new file mode 100644 index 0000000..4b853d0 Binary files /dev/null and b/_module/ncs/sc_af1a.ncs differ diff --git a/_module/ncs/sc_af1b.ncs b/_module/ncs/sc_af1b.ncs new file mode 100644 index 0000000..06f5729 Binary files /dev/null and b/_module/ncs/sc_af1b.ncs differ diff --git a/_module/ncs/sc_af2b.ncs b/_module/ncs/sc_af2b.ncs new file mode 100644 index 0000000..06f5729 Binary files /dev/null and b/_module/ncs/sc_af2b.ncs differ diff --git a/_module/ncs/score_patch.ncs b/_module/ncs/score_patch.ncs new file mode 100644 index 0000000..9315d19 Binary files /dev/null and b/_module/ncs/score_patch.ncs differ diff --git a/_module/ncs/score_switch.ncs b/_module/ncs/score_switch.ncs new file mode 100644 index 0000000..bd06180 Binary files /dev/null and b/_module/ncs/score_switch.ncs differ diff --git a/_module/ncs/scorechek.ncs b/_module/ncs/scorechek.ncs new file mode 100644 index 0000000..c6ab2ed Binary files /dev/null and b/_module/ncs/scorechek.ncs differ diff --git a/_module/ncs/scorechek1.ncs b/_module/ncs/scorechek1.ncs new file mode 100644 index 0000000..074beb2 Binary files /dev/null and b/_module/ncs/scorechek1.ncs differ diff --git a/_module/ncs/scroll_shop.ncs b/_module/ncs/scroll_shop.ncs new file mode 100644 index 0000000..9f8aeeb Binary files /dev/null and b/_module/ncs/scroll_shop.ncs differ diff --git a/_module/ncs/search_imbue.ncs b/_module/ncs/search_imbue.ncs new file mode 100644 index 0000000..a3e8930 Binary files /dev/null and b/_module/ncs/search_imbue.ncs differ diff --git a/_module/ncs/seeing_imbue.ncs b/_module/ncs/seeing_imbue.ncs new file mode 100644 index 0000000..a25460c Binary files /dev/null and b/_module/ncs/seeing_imbue.ncs differ diff --git a/_module/ncs/send01.ncs b/_module/ncs/send01.ncs new file mode 100644 index 0000000..137b3cf Binary files /dev/null and b/_module/ncs/send01.ncs differ diff --git a/_module/ncs/send02.ncs b/_module/ncs/send02.ncs new file mode 100644 index 0000000..2d39166 Binary files /dev/null and b/_module/ncs/send02.ncs differ diff --git a/_module/ncs/send03.ncs b/_module/ncs/send03.ncs new file mode 100644 index 0000000..86b9209 Binary files /dev/null and b/_module/ncs/send03.ncs differ diff --git a/_module/ncs/send04.ncs b/_module/ncs/send04.ncs new file mode 100644 index 0000000..8279cfe Binary files /dev/null and b/_module/ncs/send04.ncs differ diff --git a/_module/ncs/send05.ncs b/_module/ncs/send05.ncs new file mode 100644 index 0000000..0eab2be Binary files /dev/null and b/_module/ncs/send05.ncs differ diff --git a/_module/ncs/send06.ncs b/_module/ncs/send06.ncs new file mode 100644 index 0000000..b4d3f3f Binary files /dev/null and b/_module/ncs/send06.ncs differ diff --git a/_module/ncs/send07.ncs b/_module/ncs/send07.ncs new file mode 100644 index 0000000..8f0b618 Binary files /dev/null and b/_module/ncs/send07.ncs differ diff --git a/_module/ncs/send08.ncs b/_module/ncs/send08.ncs new file mode 100644 index 0000000..04bc191 Binary files /dev/null and b/_module/ncs/send08.ncs differ diff --git a/_module/ncs/send09.ncs b/_module/ncs/send09.ncs new file mode 100644 index 0000000..eeccd71 Binary files /dev/null and b/_module/ncs/send09.ncs differ diff --git a/_module/ncs/send10.ncs b/_module/ncs/send10.ncs new file mode 100644 index 0000000..cf186f5 Binary files /dev/null and b/_module/ncs/send10.ncs differ diff --git a/_module/ncs/send11.ncs b/_module/ncs/send11.ncs new file mode 100644 index 0000000..7399f11 Binary files /dev/null and b/_module/ncs/send11.ncs differ diff --git a/_module/ncs/send12.ncs b/_module/ncs/send12.ncs new file mode 100644 index 0000000..4fd1351 Binary files /dev/null and b/_module/ncs/send12.ncs differ diff --git a/_module/ncs/send13.ncs b/_module/ncs/send13.ncs new file mode 100644 index 0000000..9977d96 Binary files /dev/null and b/_module/ncs/send13.ncs differ diff --git a/_module/ncs/sendbane.ncs b/_module/ncs/sendbane.ncs new file mode 100644 index 0000000..e87b559 Binary files /dev/null and b/_module/ncs/sendbane.ncs differ diff --git a/_module/ncs/set_28.ncs b/_module/ncs/set_28.ncs new file mode 100644 index 0000000..68e9108 Binary files /dev/null and b/_module/ncs/set_28.ncs differ diff --git a/_module/ncs/set_40.ncs b/_module/ncs/set_40.ncs new file mode 100644 index 0000000..127c683 Binary files /dev/null and b/_module/ncs/set_40.ncs differ diff --git a/_module/ncs/set_all_chall_0.ncs b/_module/ncs/set_all_chall_0.ncs new file mode 100644 index 0000000..31a02bc Binary files /dev/null and b/_module/ncs/set_all_chall_0.ncs differ diff --git a/_module/ncs/setbook.ncs b/_module/ncs/setbook.ncs new file mode 100644 index 0000000..15e6745 Binary files /dev/null and b/_module/ncs/setbook.ncs differ diff --git a/_module/ncs/setspoke.ncs b/_module/ncs/setspoke.ncs new file mode 100644 index 0000000..69c3560 Binary files /dev/null and b/_module/ncs/setspoke.ncs differ diff --git a/_module/ncs/setxp_hi.ncs b/_module/ncs/setxp_hi.ncs new file mode 100644 index 0000000..b70b0b1 Binary files /dev/null and b/_module/ncs/setxp_hi.ncs differ diff --git a/_module/ncs/setxp_lo.ncs b/_module/ncs/setxp_lo.ncs new file mode 100644 index 0000000..50ceaa5 Binary files /dev/null and b/_module/ncs/setxp_lo.ncs differ diff --git a/_module/ncs/sf_cutscene.ncs b/_module/ncs/sf_cutscene.ncs new file mode 100644 index 0000000..98aa4dc Binary files /dev/null and b/_module/ncs/sf_cutscene.ncs differ diff --git a/_module/ncs/sf_death.ncs b/_module/ncs/sf_death.ncs new file mode 100644 index 0000000..a6c1e00 Binary files /dev/null and b/_module/ncs/sf_death.ncs differ diff --git a/_module/ncs/sf_onconv.ncs b/_module/ncs/sf_onconv.ncs new file mode 100644 index 0000000..3b8e2a1 Binary files /dev/null and b/_module/ncs/sf_onconv.ncs differ diff --git a/_module/ncs/sf_percept.ncs b/_module/ncs/sf_percept.ncs new file mode 100644 index 0000000..6c18871 Binary files /dev/null and b/_module/ncs/sf_percept.ncs differ diff --git a/_module/ncs/sf_score.ncs b/_module/ncs/sf_score.ncs new file mode 100644 index 0000000..0738761 Binary files /dev/null and b/_module/ncs/sf_score.ncs differ diff --git a/_module/ncs/sfabj_imbue.ncs b/_module/ncs/sfabj_imbue.ncs new file mode 100644 index 0000000..0bf6265 Binary files /dev/null and b/_module/ncs/sfabj_imbue.ncs differ diff --git a/_module/ncs/sfcon_imbue.ncs b/_module/ncs/sfcon_imbue.ncs new file mode 100644 index 0000000..5e3f24b Binary files /dev/null and b/_module/ncs/sfcon_imbue.ncs differ diff --git a/_module/ncs/sfdiv_imbue.ncs b/_module/ncs/sfdiv_imbue.ncs new file mode 100644 index 0000000..70cd624 Binary files /dev/null and b/_module/ncs/sfdiv_imbue.ncs differ diff --git a/_module/ncs/sfenc_imbue.ncs b/_module/ncs/sfenc_imbue.ncs new file mode 100644 index 0000000..1658c8b Binary files /dev/null and b/_module/ncs/sfenc_imbue.ncs differ diff --git a/_module/ncs/sfevo_imbue.ncs b/_module/ncs/sfevo_imbue.ncs new file mode 100644 index 0000000..dfce569 Binary files /dev/null and b/_module/ncs/sfevo_imbue.ncs differ diff --git a/_module/ncs/sfill_imbue.ncs b/_module/ncs/sfill_imbue.ncs new file mode 100644 index 0000000..280f610 Binary files /dev/null and b/_module/ncs/sfill_imbue.ncs differ diff --git a/_module/ncs/sfnec_imbue.ncs b/_module/ncs/sfnec_imbue.ncs new file mode 100644 index 0000000..01eb725 Binary files /dev/null and b/_module/ncs/sfnec_imbue.ncs differ diff --git a/_module/ncs/shamm_imbue25.ncs b/_module/ncs/shamm_imbue25.ncs new file mode 100644 index 0000000..71600bb Binary files /dev/null and b/_module/ncs/shamm_imbue25.ncs differ diff --git a/_module/ncs/shammdone_1.ncs b/_module/ncs/shammdone_1.ncs new file mode 100644 index 0000000..7922f21 Binary files /dev/null and b/_module/ncs/shammdone_1.ncs differ diff --git a/_module/ncs/shammed_1.ncs b/_module/ncs/shammed_1.ncs new file mode 100644 index 0000000..0332510 Binary files /dev/null and b/_module/ncs/shammed_1.ncs differ diff --git a/_module/ncs/shammed_11.ncs b/_module/ncs/shammed_11.ncs new file mode 100644 index 0000000..2385d0b Binary files /dev/null and b/_module/ncs/shammed_11.ncs differ diff --git a/_module/ncs/shammed_7.ncs b/_module/ncs/shammed_7.ncs new file mode 100644 index 0000000..4c1f67a Binary files /dev/null and b/_module/ncs/shammed_7.ncs differ diff --git a/_module/ncs/shammmax_reached.ncs b/_module/ncs/shammmax_reached.ncs new file mode 100644 index 0000000..ea580fd Binary files /dev/null and b/_module/ncs/shammmax_reached.ncs differ diff --git a/_module/ncs/shammred1_1.ncs b/_module/ncs/shammred1_1.ncs new file mode 100644 index 0000000..3133e88 Binary files /dev/null and b/_module/ncs/shammred1_1.ncs differ diff --git a/_module/ncs/shammred_0.ncs b/_module/ncs/shammred_0.ncs new file mode 100644 index 0000000..1094317 Binary files /dev/null and b/_module/ncs/shammred_0.ncs differ diff --git a/_module/ncs/shammred_10.ncs b/_module/ncs/shammred_10.ncs new file mode 100644 index 0000000..1f608e2 Binary files /dev/null and b/_module/ncs/shammred_10.ncs differ diff --git a/_module/ncs/shammred_12.ncs b/_module/ncs/shammred_12.ncs new file mode 100644 index 0000000..6f81887 Binary files /dev/null and b/_module/ncs/shammred_12.ncs differ diff --git a/_module/ncs/shammred_2.ncs b/_module/ncs/shammred_2.ncs new file mode 100644 index 0000000..a03c82e Binary files /dev/null and b/_module/ncs/shammred_2.ncs differ diff --git a/_module/ncs/shammred_3.ncs b/_module/ncs/shammred_3.ncs new file mode 100644 index 0000000..e0f5f48 Binary files /dev/null and b/_module/ncs/shammred_3.ncs differ diff --git a/_module/ncs/shammred_4.ncs b/_module/ncs/shammred_4.ncs new file mode 100644 index 0000000..6a2e4df Binary files /dev/null and b/_module/ncs/shammred_4.ncs differ diff --git a/_module/ncs/shammred_6.ncs b/_module/ncs/shammred_6.ncs new file mode 100644 index 0000000..1a91da2 Binary files /dev/null and b/_module/ncs/shammred_6.ncs differ diff --git a/_module/ncs/shammred_8.ncs b/_module/ncs/shammred_8.ncs new file mode 100644 index 0000000..ed634da Binary files /dev/null and b/_module/ncs/shammred_8.ncs differ diff --git a/_module/ncs/shammred_9.ncs b/_module/ncs/shammred_9.ncs new file mode 100644 index 0000000..2973645 Binary files /dev/null and b/_module/ncs/shammred_9.ncs differ diff --git a/_module/ncs/shapechange.ncs b/_module/ncs/shapechange.ncs new file mode 100644 index 0000000..7b102ed Binary files /dev/null and b/_module/ncs/shapechange.ncs differ diff --git a/_module/ncs/shield_check.ncs b/_module/ncs/shield_check.ncs new file mode 100644 index 0000000..adb4aa5 Binary files /dev/null and b/_module/ncs/shield_check.ncs differ diff --git a/_module/ncs/shield_shop.ncs b/_module/ncs/shield_shop.ncs new file mode 100644 index 0000000..6b37a01 Binary files /dev/null and b/_module/ncs/shield_shop.ncs differ diff --git a/_module/ncs/shop_insurance.ncs b/_module/ncs/shop_insurance.ncs new file mode 100644 index 0000000..c30446b Binary files /dev/null and b/_module/ncs/shop_insurance.ncs differ diff --git a/_module/ncs/shop_insurance2.ncs b/_module/ncs/shop_insurance2.ncs new file mode 100644 index 0000000..98695d5 Binary files /dev/null and b/_module/ncs/shop_insurance2.ncs differ diff --git a/_module/ncs/shop_insurance3.ncs b/_module/ncs/shop_insurance3.ncs new file mode 100644 index 0000000..ec0f6db Binary files /dev/null and b/_module/ncs/shop_insurance3.ncs differ diff --git a/_module/ncs/show2.ncs b/_module/ncs/show2.ncs new file mode 100644 index 0000000..ae784c5 Binary files /dev/null and b/_module/ncs/show2.ncs differ diff --git a/_module/ncs/show_begin.ncs b/_module/ncs/show_begin.ncs new file mode 100644 index 0000000..9c5a795 Binary files /dev/null and b/_module/ncs/show_begin.ncs differ diff --git a/_module/ncs/shrine_pulse.ncs b/_module/ncs/shrine_pulse.ncs new file mode 100644 index 0000000..f60a96b Binary files /dev/null and b/_module/ncs/shrine_pulse.ncs differ diff --git a/_module/ncs/silent_imbue.ncs b/_module/ncs/silent_imbue.ncs new file mode 100644 index 0000000..60eab36 Binary files /dev/null and b/_module/ncs/silent_imbue.ncs differ diff --git a/_module/ncs/silent_parry.ncs b/_module/ncs/silent_parry.ncs new file mode 100644 index 0000000..9a1001a Binary files /dev/null and b/_module/ncs/silent_parry.ncs differ diff --git a/_module/ncs/slash_imbue.ncs b/_module/ncs/slash_imbue.ncs new file mode 100644 index 0000000..567736c Binary files /dev/null and b/_module/ncs/slash_imbue.ncs differ diff --git a/_module/ncs/slash_imbue_arm.ncs b/_module/ncs/slash_imbue_arm.ncs new file mode 100644 index 0000000..9fc94ee Binary files /dev/null and b/_module/ncs/slash_imbue_arm.ncs differ diff --git a/_module/ncs/sldone_1.ncs b/_module/ncs/sldone_1.ncs new file mode 100644 index 0000000..faab927 Binary files /dev/null and b/_module/ncs/sldone_1.ncs differ diff --git a/_module/ncs/sldone_12.ncs b/_module/ncs/sldone_12.ncs new file mode 100644 index 0000000..8ff65b0 Binary files /dev/null and b/_module/ncs/sldone_12.ncs differ diff --git a/_module/ncs/sldred_imbue_1.ncs b/_module/ncs/sldred_imbue_1.ncs new file mode 100644 index 0000000..ce04138 Binary files /dev/null and b/_module/ncs/sldred_imbue_1.ncs differ diff --git a/_module/ncs/sldred_imbue_12.ncs b/_module/ncs/sldred_imbue_12.ncs new file mode 100644 index 0000000..8f45d7d Binary files /dev/null and b/_module/ncs/sldred_imbue_12.ncs differ diff --git a/_module/ncs/sldred_imbue_2.ncs b/_module/ncs/sldred_imbue_2.ncs new file mode 100644 index 0000000..9dc9406 Binary files /dev/null and b/_module/ncs/sldred_imbue_2.ncs differ diff --git a/_module/ncs/sldred_imbue_22.ncs b/_module/ncs/sldred_imbue_22.ncs new file mode 100644 index 0000000..d236f23 Binary files /dev/null and b/_module/ncs/sldred_imbue_22.ncs differ diff --git a/_module/ncs/sldred_imbue_3.ncs b/_module/ncs/sldred_imbue_3.ncs new file mode 100644 index 0000000..5930f78 Binary files /dev/null and b/_module/ncs/sldred_imbue_3.ncs differ diff --git a/_module/ncs/sldred_imbue_32.ncs b/_module/ncs/sldred_imbue_32.ncs new file mode 100644 index 0000000..caa7f84 Binary files /dev/null and b/_module/ncs/sldred_imbue_32.ncs differ diff --git a/_module/ncs/sldred_imbue_4.ncs b/_module/ncs/sldred_imbue_4.ncs new file mode 100644 index 0000000..9d247a7 Binary files /dev/null and b/_module/ncs/sldred_imbue_4.ncs differ diff --git a/_module/ncs/sldred_imbue_5.ncs b/_module/ncs/sldred_imbue_5.ncs new file mode 100644 index 0000000..477d612 Binary files /dev/null and b/_module/ncs/sldred_imbue_5.ncs differ diff --git a/_module/ncs/sldred_imbue_51.ncs b/_module/ncs/sldred_imbue_51.ncs new file mode 100644 index 0000000..fab03af Binary files /dev/null and b/_module/ncs/sldred_imbue_51.ncs differ diff --git a/_module/ncs/sleep.ncs b/_module/ncs/sleep.ncs new file mode 100644 index 0000000..63dbcf6 Binary files /dev/null and b/_module/ncs/sleep.ncs differ diff --git a/_module/ncs/slmax_limit.ncs b/_module/ncs/slmax_limit.ncs new file mode 100644 index 0000000..c25de0e Binary files /dev/null and b/_module/ncs/slmax_limit.ncs differ diff --git a/_module/ncs/slmax_limit1.ncs b/_module/ncs/slmax_limit1.ncs new file mode 100644 index 0000000..fb387e2 Binary files /dev/null and b/_module/ncs/slmax_limit1.ncs differ diff --git a/_module/ncs/slmax_limit12.ncs b/_module/ncs/slmax_limit12.ncs new file mode 100644 index 0000000..7b64fa1 Binary files /dev/null and b/_module/ncs/slmax_limit12.ncs differ diff --git a/_module/ncs/slmax_limit2.ncs b/_module/ncs/slmax_limit2.ncs new file mode 100644 index 0000000..08ac274 Binary files /dev/null and b/_module/ncs/slmax_limit2.ncs differ diff --git a/_module/ncs/slred1_1.ncs b/_module/ncs/slred1_1.ncs new file mode 100644 index 0000000..feccb91 Binary files /dev/null and b/_module/ncs/slred1_1.ncs differ diff --git a/_module/ncs/slred1_12.ncs b/_module/ncs/slred1_12.ncs new file mode 100644 index 0000000..d766ee3 Binary files /dev/null and b/_module/ncs/slred1_12.ncs differ diff --git a/_module/ncs/slred_0.ncs b/_module/ncs/slred_0.ncs new file mode 100644 index 0000000..9bdb928 Binary files /dev/null and b/_module/ncs/slred_0.ncs differ diff --git a/_module/ncs/slred_02.ncs b/_module/ncs/slred_02.ncs new file mode 100644 index 0000000..f64deb4 Binary files /dev/null and b/_module/ncs/slred_02.ncs differ diff --git a/_module/ncs/slred_1.ncs b/_module/ncs/slred_1.ncs new file mode 100644 index 0000000..1dc3774 Binary files /dev/null and b/_module/ncs/slred_1.ncs differ diff --git a/_module/ncs/slred_10.ncs b/_module/ncs/slred_10.ncs new file mode 100644 index 0000000..84daa3b Binary files /dev/null and b/_module/ncs/slred_10.ncs differ diff --git a/_module/ncs/slred_11.ncs b/_module/ncs/slred_11.ncs new file mode 100644 index 0000000..dbc6e39 Binary files /dev/null and b/_module/ncs/slred_11.ncs differ diff --git a/_module/ncs/slred_12.ncs b/_module/ncs/slred_12.ncs new file mode 100644 index 0000000..fb02543 Binary files /dev/null and b/_module/ncs/slred_12.ncs differ diff --git a/_module/ncs/slred_122.ncs b/_module/ncs/slred_122.ncs new file mode 100644 index 0000000..9391c01 Binary files /dev/null and b/_module/ncs/slred_122.ncs differ diff --git a/_module/ncs/slred_2.ncs b/_module/ncs/slred_2.ncs new file mode 100644 index 0000000..c6d9059 Binary files /dev/null and b/_module/ncs/slred_2.ncs differ diff --git a/_module/ncs/slred_22.ncs b/_module/ncs/slred_22.ncs new file mode 100644 index 0000000..d3c1778 Binary files /dev/null and b/_module/ncs/slred_22.ncs differ diff --git a/_module/ncs/slred_3.ncs b/_module/ncs/slred_3.ncs new file mode 100644 index 0000000..60f967c Binary files /dev/null and b/_module/ncs/slred_3.ncs differ diff --git a/_module/ncs/slred_32.ncs b/_module/ncs/slred_32.ncs new file mode 100644 index 0000000..70bbf00 Binary files /dev/null and b/_module/ncs/slred_32.ncs differ diff --git a/_module/ncs/slred_4.ncs b/_module/ncs/slred_4.ncs new file mode 100644 index 0000000..b6a654a Binary files /dev/null and b/_module/ncs/slred_4.ncs differ diff --git a/_module/ncs/slred_42.ncs b/_module/ncs/slred_42.ncs new file mode 100644 index 0000000..791c854 Binary files /dev/null and b/_module/ncs/slred_42.ncs differ diff --git a/_module/ncs/slred_6.ncs b/_module/ncs/slred_6.ncs new file mode 100644 index 0000000..0c850ef Binary files /dev/null and b/_module/ncs/slred_6.ncs differ diff --git a/_module/ncs/slred_62.ncs b/_module/ncs/slred_62.ncs new file mode 100644 index 0000000..35127f3 Binary files /dev/null and b/_module/ncs/slred_62.ncs differ diff --git a/_module/ncs/slred_7.ncs b/_module/ncs/slred_7.ncs new file mode 100644 index 0000000..7ecde8b Binary files /dev/null and b/_module/ncs/slred_7.ncs differ diff --git a/_module/ncs/slred_8.ncs b/_module/ncs/slred_8.ncs new file mode 100644 index 0000000..0b845f7 Binary files /dev/null and b/_module/ncs/slred_8.ncs differ diff --git a/_module/ncs/slred_9.ncs b/_module/ncs/slred_9.ncs new file mode 100644 index 0000000..4dcf5cb Binary files /dev/null and b/_module/ncs/slred_9.ncs differ diff --git a/_module/ncs/smith_makeit.ncs b/_module/ncs/smith_makeit.ncs new file mode 100644 index 0000000..526bf76 Binary files /dev/null and b/_module/ncs/smith_makeit.ncs differ diff --git a/_module/ncs/so_imbue25.ncs b/_module/ncs/so_imbue25.ncs new file mode 100644 index 0000000..c43d1f2 Binary files /dev/null and b/_module/ncs/so_imbue25.ncs differ diff --git a/_module/ncs/so_imbue252.ncs b/_module/ncs/so_imbue252.ncs new file mode 100644 index 0000000..1ea745a Binary files /dev/null and b/_module/ncs/so_imbue252.ncs differ diff --git a/_module/ncs/sodone_1.ncs b/_module/ncs/sodone_1.ncs new file mode 100644 index 0000000..bfc113e Binary files /dev/null and b/_module/ncs/sodone_1.ncs differ diff --git a/_module/ncs/sodone_12.ncs b/_module/ncs/sodone_12.ncs new file mode 100644 index 0000000..b65ad77 Binary files /dev/null and b/_module/ncs/sodone_12.ncs differ diff --git a/_module/ncs/sodred_imbue_2.ncs b/_module/ncs/sodred_imbue_2.ncs new file mode 100644 index 0000000..4f9330b Binary files /dev/null and b/_module/ncs/sodred_imbue_2.ncs differ diff --git a/_module/ncs/sodred_imbue_22.ncs b/_module/ncs/sodred_imbue_22.ncs new file mode 100644 index 0000000..2f2ddb8 Binary files /dev/null and b/_module/ncs/sodred_imbue_22.ncs differ diff --git a/_module/ncs/sodred_imbue_3.ncs b/_module/ncs/sodred_imbue_3.ncs new file mode 100644 index 0000000..45d2072 Binary files /dev/null and b/_module/ncs/sodred_imbue_3.ncs differ diff --git a/_module/ncs/sodred_imbue_32.ncs b/_module/ncs/sodred_imbue_32.ncs new file mode 100644 index 0000000..4b7d5bd Binary files /dev/null and b/_module/ncs/sodred_imbue_32.ncs differ diff --git a/_module/ncs/sodred_imbue_4.ncs b/_module/ncs/sodred_imbue_4.ncs new file mode 100644 index 0000000..5cbeaf9 Binary files /dev/null and b/_module/ncs/sodred_imbue_4.ncs differ diff --git a/_module/ncs/sodred_imbue_5.ncs b/_module/ncs/sodred_imbue_5.ncs new file mode 100644 index 0000000..a281fd0 Binary files /dev/null and b/_module/ncs/sodred_imbue_5.ncs differ diff --git a/_module/ncs/soed_1.ncs b/_module/ncs/soed_1.ncs new file mode 100644 index 0000000..5827795 Binary files /dev/null and b/_module/ncs/soed_1.ncs differ diff --git a/_module/ncs/soed_12.ncs b/_module/ncs/soed_12.ncs new file mode 100644 index 0000000..1f5ed4c Binary files /dev/null and b/_module/ncs/soed_12.ncs differ diff --git a/_module/ncs/somax_reached.ncs b/_module/ncs/somax_reached.ncs new file mode 100644 index 0000000..d862f25 Binary files /dev/null and b/_module/ncs/somax_reached.ncs differ diff --git a/_module/ncs/somax_reached2.ncs b/_module/ncs/somax_reached2.ncs new file mode 100644 index 0000000..f401ae9 Binary files /dev/null and b/_module/ncs/somax_reached2.ncs differ diff --git a/_module/ncs/somax_reached22.ncs b/_module/ncs/somax_reached22.ncs new file mode 100644 index 0000000..7bdfe3d Binary files /dev/null and b/_module/ncs/somax_reached22.ncs differ diff --git a/_module/ncs/somax_reached32.ncs b/_module/ncs/somax_reached32.ncs new file mode 100644 index 0000000..bcc037e Binary files /dev/null and b/_module/ncs/somax_reached32.ncs differ diff --git a/_module/ncs/sonic_imbue.ncs b/_module/ncs/sonic_imbue.ncs new file mode 100644 index 0000000..2a90f4f Binary files /dev/null and b/_module/ncs/sonic_imbue.ncs differ diff --git a/_module/ncs/sonic_imbue_arm.ncs b/_module/ncs/sonic_imbue_arm.ncs new file mode 100644 index 0000000..06f6244 Binary files /dev/null and b/_module/ncs/sonic_imbue_arm.ncs differ diff --git a/_module/ncs/sorc_slot_imbue.ncs b/_module/ncs/sorc_slot_imbue.ncs new file mode 100644 index 0000000..1d0820c Binary files /dev/null and b/_module/ncs/sorc_slot_imbue.ncs differ diff --git a/_module/ncs/sored1_1.ncs b/_module/ncs/sored1_1.ncs new file mode 100644 index 0000000..6d16abc Binary files /dev/null and b/_module/ncs/sored1_1.ncs differ diff --git a/_module/ncs/sored1_12.ncs b/_module/ncs/sored1_12.ncs new file mode 100644 index 0000000..e48a329 Binary files /dev/null and b/_module/ncs/sored1_12.ncs differ diff --git a/_module/ncs/sored_0.ncs b/_module/ncs/sored_0.ncs new file mode 100644 index 0000000..e9b7a86 Binary files /dev/null and b/_module/ncs/sored_0.ncs differ diff --git a/_module/ncs/sored_02.ncs b/_module/ncs/sored_02.ncs new file mode 100644 index 0000000..9a525f7 Binary files /dev/null and b/_module/ncs/sored_02.ncs differ diff --git a/_module/ncs/sored_10.ncs b/_module/ncs/sored_10.ncs new file mode 100644 index 0000000..ec05cb5 Binary files /dev/null and b/_module/ncs/sored_10.ncs differ diff --git a/_module/ncs/sored_11.ncs b/_module/ncs/sored_11.ncs new file mode 100644 index 0000000..cb0d4d1 Binary files /dev/null and b/_module/ncs/sored_11.ncs differ diff --git a/_module/ncs/sored_12.ncs b/_module/ncs/sored_12.ncs new file mode 100644 index 0000000..4b5c3b7 Binary files /dev/null and b/_module/ncs/sored_12.ncs differ diff --git a/_module/ncs/sored_2.ncs b/_module/ncs/sored_2.ncs new file mode 100644 index 0000000..35d805e Binary files /dev/null and b/_module/ncs/sored_2.ncs differ diff --git a/_module/ncs/sored_22.ncs b/_module/ncs/sored_22.ncs new file mode 100644 index 0000000..2c4d737 Binary files /dev/null and b/_module/ncs/sored_22.ncs differ diff --git a/_module/ncs/sored_3.ncs b/_module/ncs/sored_3.ncs new file mode 100644 index 0000000..4d54ae0 Binary files /dev/null and b/_module/ncs/sored_3.ncs differ diff --git a/_module/ncs/sored_32.ncs b/_module/ncs/sored_32.ncs new file mode 100644 index 0000000..807b2f8 Binary files /dev/null and b/_module/ncs/sored_32.ncs differ diff --git a/_module/ncs/sored_4.ncs b/_module/ncs/sored_4.ncs new file mode 100644 index 0000000..3ab66a1 Binary files /dev/null and b/_module/ncs/sored_4.ncs differ diff --git a/_module/ncs/sored_42.ncs b/_module/ncs/sored_42.ncs new file mode 100644 index 0000000..f7a758b Binary files /dev/null and b/_module/ncs/sored_42.ncs differ diff --git a/_module/ncs/sored_6.ncs b/_module/ncs/sored_6.ncs new file mode 100644 index 0000000..d3785e4 Binary files /dev/null and b/_module/ncs/sored_6.ncs differ diff --git a/_module/ncs/sored_62.ncs b/_module/ncs/sored_62.ncs new file mode 100644 index 0000000..b0bdf65 Binary files /dev/null and b/_module/ncs/sored_62.ncs differ diff --git a/_module/ncs/sored_7.ncs b/_module/ncs/sored_7.ncs new file mode 100644 index 0000000..ff5d5b4 Binary files /dev/null and b/_module/ncs/sored_7.ncs differ diff --git a/_module/ncs/sored_8.ncs b/_module/ncs/sored_8.ncs new file mode 100644 index 0000000..c3a635f Binary files /dev/null and b/_module/ncs/sored_8.ncs differ diff --git a/_module/ncs/sored_9.ncs b/_module/ncs/sored_9.ncs new file mode 100644 index 0000000..41085ed Binary files /dev/null and b/_module/ncs/sored_9.ncs differ diff --git a/_module/ncs/souldeath.ncs b/_module/ncs/souldeath.ncs new file mode 100644 index 0000000..cd03844 Binary files /dev/null and b/_module/ncs/souldeath.ncs differ diff --git a/_module/ncs/spawn_all.ncs b/_module/ncs/spawn_all.ncs new file mode 100644 index 0000000..6e99b07 Binary files /dev/null and b/_module/ncs/spawn_all.ncs differ diff --git a/_module/ncs/spawn_all2.ncs b/_module/ncs/spawn_all2.ncs new file mode 100644 index 0000000..c85c7fd Binary files /dev/null and b/_module/ncs/spawn_all2.ncs differ diff --git a/_module/ncs/spawn_allb.ncs b/_module/ncs/spawn_allb.ncs new file mode 100644 index 0000000..77a448c Binary files /dev/null and b/_module/ncs/spawn_allb.ncs differ diff --git a/_module/ncs/spawn_allba.ncs b/_module/ncs/spawn_allba.ncs new file mode 100644 index 0000000..3b0871f Binary files /dev/null and b/_module/ncs/spawn_allba.ncs differ diff --git a/_module/ncs/spawn_allc.ncs b/_module/ncs/spawn_allc.ncs new file mode 100644 index 0000000..73d4f3f Binary files /dev/null and b/_module/ncs/spawn_allc.ncs differ diff --git a/_module/ncs/spawn_allca.ncs b/_module/ncs/spawn_allca.ncs new file mode 100644 index 0000000..fb6a4d4 Binary files /dev/null and b/_module/ncs/spawn_allca.ncs differ diff --git a/_module/ncs/spawn_group.ncs b/_module/ncs/spawn_group.ncs new file mode 100644 index 0000000..a13f7a4 Binary files /dev/null and b/_module/ncs/spawn_group.ncs differ diff --git a/_module/ncs/spawn_tester.ncs b/_module/ncs/spawn_tester.ncs new file mode 100644 index 0000000..ecb1c72 Binary files /dev/null and b/_module/ncs/spawn_tester.ncs differ diff --git a/_module/ncs/spawner_m.ncs b/_module/ncs/spawner_m.ncs new file mode 100644 index 0000000..9859449 Binary files /dev/null and b/_module/ncs/spawner_m.ncs differ diff --git a/_module/ncs/spawner_m2.ncs b/_module/ncs/spawner_m2.ncs new file mode 100644 index 0000000..ef2807f Binary files /dev/null and b/_module/ncs/spawner_m2.ncs differ diff --git a/_module/ncs/spawner_m3.ncs b/_module/ncs/spawner_m3.ncs new file mode 100644 index 0000000..2fb7883 Binary files /dev/null and b/_module/ncs/spawner_m3.ncs differ diff --git a/_module/ncs/speed_imbue.ncs b/_module/ncs/speed_imbue.ncs new file mode 100644 index 0000000..783d498 Binary files /dev/null and b/_module/ncs/speed_imbue.ncs differ diff --git a/_module/ncs/spell_imbue.ncs b/_module/ncs/spell_imbue.ncs new file mode 100644 index 0000000..f8e9d25 Binary files /dev/null and b/_module/ncs/spell_imbue.ncs differ diff --git a/_module/ncs/spellres_imbue.ncs b/_module/ncs/spellres_imbue.ncs new file mode 100644 index 0000000..d22b471 Binary files /dev/null and b/_module/ncs/spellres_imbue.ncs differ diff --git a/_module/ncs/spen_imbue.ncs b/_module/ncs/spen_imbue.ncs new file mode 100644 index 0000000..bb1c45f Binary files /dev/null and b/_module/ncs/spen_imbue.ncs differ diff --git a/_module/ncs/spn_slaad.ncs b/_module/ncs/spn_slaad.ncs new file mode 100644 index 0000000..b6f9fa7 Binary files /dev/null and b/_module/ncs/spn_slaad.ncs differ diff --git a/_module/ncs/spot_imbue.ncs b/_module/ncs/spot_imbue.ncs new file mode 100644 index 0000000..0464bd6 Binary files /dev/null and b/_module/ncs/spot_imbue.ncs differ diff --git a/_module/ncs/ssmmdred_imbue_2.ncs b/_module/ncs/ssmmdred_imbue_2.ncs new file mode 100644 index 0000000..7e7de30 Binary files /dev/null and b/_module/ncs/ssmmdred_imbue_2.ncs differ diff --git a/_module/ncs/starattack.ncs b/_module/ncs/starattack.ncs new file mode 100644 index 0000000..50cdf55 Binary files /dev/null and b/_module/ncs/starattack.ncs differ diff --git a/_module/ncs/starfall_reset.ncs b/_module/ncs/starfall_reset.ncs new file mode 100644 index 0000000..d5f6131 Binary files /dev/null and b/_module/ncs/starfall_reset.ncs differ diff --git a/_module/ncs/starport.ncs b/_module/ncs/starport.ncs new file mode 100644 index 0000000..555a462 Binary files /dev/null and b/_module/ncs/starport.ncs differ diff --git a/_module/ncs/start_a_merch.ncs b/_module/ncs/start_a_merch.ncs new file mode 100644 index 0000000..d7f6fe0 Binary files /dev/null and b/_module/ncs/start_a_merch.ncs differ diff --git a/_module/ncs/start_a_merch2.ncs b/_module/ncs/start_a_merch2.ncs new file mode 100644 index 0000000..c50472b Binary files /dev/null and b/_module/ncs/start_a_merch2.ncs differ diff --git a/_module/ncs/start_armour.ncs b/_module/ncs/start_armour.ncs new file mode 100644 index 0000000..81ae8fa Binary files /dev/null and b/_module/ncs/start_armour.ncs differ diff --git a/_module/ncs/stay_trigger.ncs b/_module/ncs/stay_trigger.ncs new file mode 100644 index 0000000..c02183e Binary files /dev/null and b/_module/ncs/stay_trigger.ncs differ diff --git a/_module/ncs/steelgrind_death.ncs b/_module/ncs/steelgrind_death.ncs new file mode 100644 index 0000000..c53e30d Binary files /dev/null and b/_module/ncs/steelgrind_death.ncs differ diff --git a/_module/ncs/stop_music.ncs b/_module/ncs/stop_music.ncs new file mode 100644 index 0000000..e1cf36c Binary files /dev/null and b/_module/ncs/stop_music.ncs differ diff --git a/_module/ncs/storecrash.ncs b/_module/ncs/storecrash.ncs new file mode 100644 index 0000000..c4340cb Binary files /dev/null and b/_module/ncs/storecrash.ncs differ diff --git a/_module/ncs/storescore.ncs b/_module/ncs/storescore.ncs new file mode 100644 index 0000000..e98d7f6 Binary files /dev/null and b/_module/ncs/storescore.ncs differ diff --git a/_module/ncs/str_imbue.ncs b/_module/ncs/str_imbue.ncs new file mode 100644 index 0000000..05b398e Binary files /dev/null and b/_module/ncs/str_imbue.ncs differ diff --git a/_module/ncs/sw2.ncs b/_module/ncs/sw2.ncs new file mode 100644 index 0000000..ed1154e Binary files /dev/null and b/_module/ncs/sw2.ncs differ diff --git a/_module/ncs/sw2a.ncs b/_module/ncs/sw2a.ncs new file mode 100644 index 0000000..29d8a80 Binary files /dev/null and b/_module/ncs/sw2a.ncs differ diff --git a/_module/ncs/sw2ab.ncs b/_module/ncs/sw2ab.ncs new file mode 100644 index 0000000..42f790c Binary files /dev/null and b/_module/ncs/sw2ab.ncs differ diff --git a/_module/ncs/sw2av.ncs b/_module/ncs/sw2av.ncs new file mode 100644 index 0000000..00027e1 Binary files /dev/null and b/_module/ncs/sw2av.ncs differ diff --git a/_module/ncs/sw2z.ncs b/_module/ncs/sw2z.ncs new file mode 100644 index 0000000..f27339a Binary files /dev/null and b/_module/ncs/sw2z.ncs differ diff --git a/_module/ncs/take10000.ncs b/_module/ncs/take10000.ncs new file mode 100644 index 0000000..a72de79 Binary files /dev/null and b/_module/ncs/take10000.ncs differ diff --git a/_module/ncs/take20000.ncs b/_module/ncs/take20000.ncs new file mode 100644 index 0000000..c5e13df Binary files /dev/null and b/_module/ncs/take20000.ncs differ diff --git a/_module/ncs/take5000.ncs b/_module/ncs/take5000.ncs new file mode 100644 index 0000000..caeabd3 Binary files /dev/null and b/_module/ncs/take5000.ncs differ diff --git a/_module/ncs/take500000.ncs b/_module/ncs/take500000.ncs new file mode 100644 index 0000000..b83c5b0 Binary files /dev/null and b/_module/ncs/take500000.ncs differ diff --git a/_module/ncs/take_10k.ncs b/_module/ncs/take_10k.ncs new file mode 100644 index 0000000..2e0df81 Binary files /dev/null and b/_module/ncs/take_10k.ncs differ diff --git a/_module/ncs/take_200k.ncs b/_module/ncs/take_200k.ncs new file mode 100644 index 0000000..035bb27 Binary files /dev/null and b/_module/ncs/take_200k.ncs differ diff --git a/_module/ncs/take_all_xp.ncs b/_module/ncs/take_all_xp.ncs new file mode 100644 index 0000000..fb6c755 Binary files /dev/null and b/_module/ncs/take_all_xp.ncs differ diff --git a/_module/ncs/take_div.ncs b/_module/ncs/take_div.ncs new file mode 100644 index 0000000..77e8afa Binary files /dev/null and b/_module/ncs/take_div.ncs differ diff --git a/_module/ncs/taunt_imbue.ncs b/_module/ncs/taunt_imbue.ncs new file mode 100644 index 0000000..eb37616 Binary files /dev/null and b/_module/ncs/taunt_imbue.ncs differ diff --git a/_module/ncs/test_rank.ncs b/_module/ncs/test_rank.ncs new file mode 100644 index 0000000..8990f60 Binary files /dev/null and b/_module/ncs/test_rank.ncs differ diff --git a/_module/ncs/test_rank2.ncs b/_module/ncs/test_rank2.ncs new file mode 100644 index 0000000..bf657e6 Binary files /dev/null and b/_module/ncs/test_rank2.ncs differ diff --git a/_module/ncs/thordeath.ncs b/_module/ncs/thordeath.ncs new file mode 100644 index 0000000..f268c2b Binary files /dev/null and b/_module/ncs/thordeath.ncs differ diff --git a/_module/ncs/ticket_refund.ncs b/_module/ncs/ticket_refund.ncs new file mode 100644 index 0000000..3533123 Binary files /dev/null and b/_module/ncs/ticket_refund.ncs differ diff --git a/_module/ncs/tn.ncs b/_module/ncs/tn.ncs new file mode 100644 index 0000000..837fa69 Binary files /dev/null and b/_module/ncs/tn.ncs differ diff --git a/_module/ncs/token_refund.ncs b/_module/ncs/token_refund.ncs new file mode 100644 index 0000000..57780f4 Binary files /dev/null and b/_module/ncs/token_refund.ncs differ diff --git a/_module/ncs/tr_skctrap_act_1.ncs b/_module/ncs/tr_skctrap_act_1.ncs new file mode 100644 index 0000000..e36273c Binary files /dev/null and b/_module/ncs/tr_skctrap_act_1.ncs differ diff --git a/_module/ncs/tr_skctrap_act_2.ncs b/_module/ncs/tr_skctrap_act_2.ncs new file mode 100644 index 0000000..0620fc9 Binary files /dev/null and b/_module/ncs/tr_skctrap_act_2.ncs differ diff --git a/_module/ncs/tr_skctrap_act_3.ncs b/_module/ncs/tr_skctrap_act_3.ncs new file mode 100644 index 0000000..ced7b36 Binary files /dev/null and b/_module/ncs/tr_skctrap_act_3.ncs differ diff --git a/_module/ncs/tr_skctrap_act_4.ncs b/_module/ncs/tr_skctrap_act_4.ncs new file mode 100644 index 0000000..6346008 Binary files /dev/null and b/_module/ncs/tr_skctrap_act_4.ncs differ diff --git a/_module/ncs/tr_skctrap_act_5.ncs b/_module/ncs/tr_skctrap_act_5.ncs new file mode 100644 index 0000000..1facbbf Binary files /dev/null and b/_module/ncs/tr_skctrap_act_5.ncs differ diff --git a/_module/ncs/tr_skctrap_act_6.ncs b/_module/ncs/tr_skctrap_act_6.ncs new file mode 100644 index 0000000..8a54ee3 Binary files /dev/null and b/_module/ncs/tr_skctrap_act_6.ncs differ diff --git a/_module/ncs/tr_skctrap_act_7.ncs b/_module/ncs/tr_skctrap_act_7.ncs new file mode 100644 index 0000000..14d8454 Binary files /dev/null and b/_module/ncs/tr_skctrap_act_7.ncs differ diff --git a/_module/ncs/tr_skctrap_act_8.ncs b/_module/ncs/tr_skctrap_act_8.ncs new file mode 100644 index 0000000..40dab37 Binary files /dev/null and b/_module/ncs/tr_skctrap_act_8.ncs differ diff --git a/_module/ncs/tr_skctrap_act_9.ncs b/_module/ncs/tr_skctrap_act_9.ncs new file mode 100644 index 0000000..5d226e9 Binary files /dev/null and b/_module/ncs/tr_skctrap_act_9.ncs differ diff --git a/_module/ncs/tr_skctrap_act_a.ncs b/_module/ncs/tr_skctrap_act_a.ncs new file mode 100644 index 0000000..a6e3546 Binary files /dev/null and b/_module/ncs/tr_skctrap_act_a.ncs differ diff --git a/_module/ncs/tr_skctrap_act_b.ncs b/_module/ncs/tr_skctrap_act_b.ncs new file mode 100644 index 0000000..730496e Binary files /dev/null and b/_module/ncs/tr_skctrap_act_b.ncs differ diff --git a/_module/ncs/tr_skctrap_act_c.ncs b/_module/ncs/tr_skctrap_act_c.ncs new file mode 100644 index 0000000..2869219 Binary files /dev/null and b/_module/ncs/tr_skctrap_act_c.ncs differ diff --git a/_module/ncs/tr_skctrap_act_d.ncs b/_module/ncs/tr_skctrap_act_d.ncs new file mode 100644 index 0000000..e7903a1 Binary files /dev/null and b/_module/ncs/tr_skctrap_act_d.ncs differ diff --git a/_module/ncs/tr_skctrap_act_e.ncs b/_module/ncs/tr_skctrap_act_e.ncs new file mode 100644 index 0000000..436d4f7 Binary files /dev/null and b/_module/ncs/tr_skctrap_act_e.ncs differ diff --git a/_module/ncs/tr_skctrap_act_f.ncs b/_module/ncs/tr_skctrap_act_f.ncs new file mode 100644 index 0000000..e0ac3f0 Binary files /dev/null and b/_module/ncs/tr_skctrap_act_f.ncs differ diff --git a/_module/ncs/tr_skctrap_con_5.ncs b/_module/ncs/tr_skctrap_con_5.ncs new file mode 100644 index 0000000..8935dd7 Binary files /dev/null and b/_module/ncs/tr_skctrap_con_5.ncs differ diff --git a/_module/ncs/tr_skctrap_con_e.ncs b/_module/ncs/tr_skctrap_con_e.ncs new file mode 100644 index 0000000..8935dd7 Binary files /dev/null and b/_module/ncs/tr_skctrap_con_e.ncs differ diff --git a/_module/ncs/trash_can.ncs b/_module/ncs/trash_can.ncs new file mode 100644 index 0000000..e658570 Binary files /dev/null and b/_module/ncs/trash_can.ncs differ diff --git a/_module/ncs/tstrike_imbue.ncs b/_module/ncs/tstrike_imbue.ncs new file mode 100644 index 0000000..f2b22e8 Binary files /dev/null and b/_module/ncs/tstrike_imbue.ncs differ diff --git a/_module/ncs/tumb_imbue.ncs b/_module/ncs/tumb_imbue.ncs new file mode 100644 index 0000000..b772877 Binary files /dev/null and b/_module/ncs/tumb_imbue.ncs differ diff --git a/_module/ncs/tyrieldeath.ncs b/_module/ncs/tyrieldeath.ncs new file mode 100644 index 0000000..f44fff7 Binary files /dev/null and b/_module/ncs/tyrieldeath.ncs differ diff --git a/_module/ncs/tyrieldeath2.ncs b/_module/ncs/tyrieldeath2.ncs new file mode 100644 index 0000000..1023bc7 Binary files /dev/null and b/_module/ncs/tyrieldeath2.ncs differ diff --git a/_module/ncs/umd_imbue.ncs b/_module/ncs/umd_imbue.ncs new file mode 100644 index 0000000..44bf6d1 Binary files /dev/null and b/_module/ncs/umd_imbue.ncs differ diff --git a/_module/ncs/universal_switch.ncs b/_module/ncs/universal_switch.ncs new file mode 100644 index 0000000..dd9b9a0 Binary files /dev/null and b/_module/ncs/universal_switch.ncs differ diff --git a/_module/ncs/use_coin.ncs b/_module/ncs/use_coin.ncs new file mode 100644 index 0000000..a3eef01 Binary files /dev/null and b/_module/ncs/use_coin.ncs differ diff --git a/_module/ncs/use_debugrod.ncs b/_module/ncs/use_debugrod.ncs new file mode 100644 index 0000000..1d7d748 Binary files /dev/null and b/_module/ncs/use_debugrod.ncs differ diff --git a/_module/ncs/use_portal.ncs b/_module/ncs/use_portal.ncs new file mode 100644 index 0000000..de01465 Binary files /dev/null and b/_module/ncs/use_portal.ncs differ diff --git a/_module/ncs/vixthrite.ncs b/_module/ncs/vixthrite.ncs new file mode 100644 index 0000000..1287d13 Binary files /dev/null and b/_module/ncs/vixthrite.ncs differ diff --git a/_module/ncs/vote.ncs b/_module/ncs/vote.ncs new file mode 100644 index 0000000..8fa8068 Binary files /dev/null and b/_module/ncs/vote.ncs differ diff --git a/_module/ncs/wager1000.ncs b/_module/ncs/wager1000.ncs new file mode 100644 index 0000000..5e5a6d4 Binary files /dev/null and b/_module/ncs/wager1000.ncs differ diff --git a/_module/ncs/wager10000.ncs b/_module/ncs/wager10000.ncs new file mode 100644 index 0000000..920e021 Binary files /dev/null and b/_module/ncs/wager10000.ncs differ diff --git a/_module/ncs/wager100000.ncs b/_module/ncs/wager100000.ncs new file mode 100644 index 0000000..36cdb51 Binary files /dev/null and b/_module/ncs/wager100000.ncs differ diff --git a/_module/ncs/wager2000.ncs b/_module/ncs/wager2000.ncs new file mode 100644 index 0000000..6ace0d0 Binary files /dev/null and b/_module/ncs/wager2000.ncs differ diff --git a/_module/ncs/wager20000.ncs b/_module/ncs/wager20000.ncs new file mode 100644 index 0000000..cc89dc6 Binary files /dev/null and b/_module/ncs/wager20000.ncs differ diff --git a/_module/ncs/wager200000.ncs b/_module/ncs/wager200000.ncs new file mode 100644 index 0000000..916d20d Binary files /dev/null and b/_module/ncs/wager200000.ncs differ diff --git a/_module/ncs/wager5000.ncs b/_module/ncs/wager5000.ncs new file mode 100644 index 0000000..61ad6a8 Binary files /dev/null and b/_module/ncs/wager5000.ncs differ diff --git a/_module/ncs/wager50000.ncs b/_module/ncs/wager50000.ncs new file mode 100644 index 0000000..f1cf48a Binary files /dev/null and b/_module/ncs/wager50000.ncs differ diff --git a/_module/ncs/wager500000.ncs b/_module/ncs/wager500000.ncs new file mode 100644 index 0000000..90a7f41 Binary files /dev/null and b/_module/ncs/wager500000.ncs differ diff --git a/_module/ncs/wager_check.ncs b/_module/ncs/wager_check.ncs new file mode 100644 index 0000000..c4c5f20 Binary files /dev/null and b/_module/ncs/wager_check.ncs differ diff --git a/_module/ncs/wagerall.ncs b/_module/ncs/wagerall.ncs new file mode 100644 index 0000000..6182af1 Binary files /dev/null and b/_module/ncs/wagerall.ncs differ diff --git a/_module/ncs/wand_shop.ncs b/_module/ncs/wand_shop.ncs new file mode 100644 index 0000000..d232477 Binary files /dev/null and b/_module/ncs/wand_shop.ncs differ diff --git a/_module/ncs/war_result.ncs b/_module/ncs/war_result.ncs new file mode 100644 index 0000000..ecb1c72 Binary files /dev/null and b/_module/ncs/war_result.ncs differ diff --git a/_module/ncs/wardemon_hide.ncs b/_module/ncs/wardemon_hide.ncs new file mode 100644 index 0000000..7ee1548 Binary files /dev/null and b/_module/ncs/wardemon_hide.ncs differ diff --git a/_module/ncs/weap_check.ncs b/_module/ncs/weap_check.ncs new file mode 100644 index 0000000..9636b86 Binary files /dev/null and b/_module/ncs/weap_check.ncs differ diff --git a/_module/ncs/wfin_imbue.ncs b/_module/ncs/wfin_imbue.ncs new file mode 100644 index 0000000..5636bd7 Binary files /dev/null and b/_module/ncs/wfin_imbue.ncs differ diff --git a/_module/ncs/win_reset.ncs b/_module/ncs/win_reset.ncs new file mode 100644 index 0000000..b98f06c Binary files /dev/null and b/_module/ncs/win_reset.ncs differ diff --git a/_module/ncs/wis_imbue.ncs b/_module/ncs/wis_imbue.ncs new file mode 100644 index 0000000..a33ea01 Binary files /dev/null and b/_module/ncs/wis_imbue.ncs differ diff --git a/_module/ncs/wiz_slot_imbue.ncs b/_module/ncs/wiz_slot_imbue.ncs new file mode 100644 index 0000000..4671dc6 Binary files /dev/null and b/_module/ncs/wiz_slot_imbue.ncs differ diff --git a/_module/ncs/wpe_imbue.ncs b/_module/ncs/wpe_imbue.ncs new file mode 100644 index 0000000..65b820e Binary files /dev/null and b/_module/ncs/wpe_imbue.ncs differ diff --git a/_module/ncs/wpm_imbue.ncs b/_module/ncs/wpm_imbue.ncs new file mode 100644 index 0000000..1468909 Binary files /dev/null and b/_module/ncs/wpm_imbue.ncs differ diff --git a/_module/ncs/wps_imbue.ncs b/_module/ncs/wps_imbue.ncs new file mode 100644 index 0000000..e53fc8d Binary files /dev/null and b/_module/ncs/wps_imbue.ncs differ diff --git a/_module/ncs/x2_def_heartbeat.ncs b/_module/ncs/x2_def_heartbeat.ncs new file mode 100644 index 0000000..b8ede82 Binary files /dev/null and b/_module/ncs/x2_def_heartbeat.ncs differ diff --git a/_module/ncs/x2_def_ondisturb.ncs b/_module/ncs/x2_def_ondisturb.ncs new file mode 100644 index 0000000..73e753a Binary files /dev/null and b/_module/ncs/x2_def_ondisturb.ncs differ diff --git a/_module/ncs/xpc2.ncs b/_module/ncs/xpc2.ncs new file mode 100644 index 0000000..285b8bf Binary files /dev/null and b/_module/ncs/xpc2.ncs differ diff --git a/_module/ncs/zep_always_false.ncs b/_module/ncs/zep_always_false.ncs new file mode 100644 index 0000000..c391f9f Binary files /dev/null and b/_module/ncs/zep_always_false.ncs differ diff --git a/_module/ncs/zep_cr_attempt.ncs b/_module/ncs/zep_cr_attempt.ncs new file mode 100644 index 0000000..904f26c Binary files /dev/null and b/_module/ncs/zep_cr_attempt.ncs differ diff --git a/_module/ncs/zep_cr_canca.ncs b/_module/ncs/zep_cr_canca.ncs new file mode 100644 index 0000000..91fadb2 Binary files /dev/null and b/_module/ncs/zep_cr_canca.ncs differ diff --git a/_module/ncs/zep_cr_canca_n.ncs b/_module/ncs/zep_cr_canca_n.ncs new file mode 100644 index 0000000..0987a30 Binary files /dev/null and b/_module/ncs/zep_cr_canca_n.ncs differ diff --git a/_module/ncs/zep_cr_canch.ncs b/_module/ncs/zep_cr_canch.ncs new file mode 100644 index 0000000..2416a39 Binary files /dev/null and b/_module/ncs/zep_cr_canch.ncs differ diff --git a/_module/ncs/zep_cr_cancs.ncs b/_module/ncs/zep_cr_cancs.ncs new file mode 100644 index 0000000..3fb7cc7 Binary files /dev/null and b/_module/ncs/zep_cr_cancs.ncs differ diff --git a/_module/ncs/zep_cr_canct.ncs b/_module/ncs/zep_cr_canct.ncs new file mode 100644 index 0000000..f240239 Binary files /dev/null and b/_module/ncs/zep_cr_canct.ncs differ diff --git a/_module/ncs/zep_cr_cancw.ncs b/_module/ncs/zep_cr_cancw.ncs new file mode 100644 index 0000000..21ba0c8 Binary files /dev/null and b/_module/ncs/zep_cr_cancw.ncs differ diff --git a/_module/ncs/zep_cr_cancw_n.ncs b/_module/ncs/zep_cr_cancw_n.ncs new file mode 100644 index 0000000..2784a0c Binary files /dev/null and b/_module/ncs/zep_cr_cancw_n.ncs differ diff --git a/_module/ncs/zep_cr_changed.ncs b/_module/ncs/zep_cr_changed.ncs new file mode 100644 index 0000000..2f47ed6 Binary files /dev/null and b/_module/ncs/zep_cr_changed.ncs differ diff --git a/_module/ncs/zep_cr_dial_npc.ncs b/_module/ncs/zep_cr_dial_npc.ncs new file mode 100644 index 0000000..18abe4f Binary files /dev/null and b/_module/ncs/zep_cr_dial_npc.ncs differ diff --git a/_module/ncs/zep_cr_dialogue.ncs b/_module/ncs/zep_cr_dialogue.ncs new file mode 100644 index 0000000..f87a3b8 Binary files /dev/null and b/_module/ncs/zep_cr_dialogue.ncs differ diff --git a/_module/ncs/zep_cr_dobelt.ncs b/_module/ncs/zep_cr_dobelt.ncs new file mode 100644 index 0000000..59ac782 Binary files /dev/null and b/_module/ncs/zep_cr_dobelt.ncs differ diff --git a/_module/ncs/zep_cr_dobicep_l.ncs b/_module/ncs/zep_cr_dobicep_l.ncs new file mode 100644 index 0000000..e85e4ac Binary files /dev/null and b/_module/ncs/zep_cr_dobicep_l.ncs differ diff --git a/_module/ncs/zep_cr_dobicep_r.ncs b/_module/ncs/zep_cr_dobicep_r.ncs new file mode 100644 index 0000000..b3b4a8c Binary files /dev/null and b/_module/ncs/zep_cr_dobicep_r.ncs differ diff --git a/_module/ncs/zep_cr_doccloth1.ncs b/_module/ncs/zep_cr_doccloth1.ncs new file mode 100644 index 0000000..9dc3f4c Binary files /dev/null and b/_module/ncs/zep_cr_doccloth1.ncs differ diff --git a/_module/ncs/zep_cr_doccloth2.ncs b/_module/ncs/zep_cr_doccloth2.ncs new file mode 100644 index 0000000..a0d6670 Binary files /dev/null and b/_module/ncs/zep_cr_doccloth2.ncs differ diff --git a/_module/ncs/zep_cr_docleath1.ncs b/_module/ncs/zep_cr_docleath1.ncs new file mode 100644 index 0000000..8d8b0f5 Binary files /dev/null and b/_module/ncs/zep_cr_docleath1.ncs differ diff --git a/_module/ncs/zep_cr_docleath2.ncs b/_module/ncs/zep_cr_docleath2.ncs new file mode 100644 index 0000000..0d5934c Binary files /dev/null and b/_module/ncs/zep_cr_docleath2.ncs differ diff --git a/_module/ncs/zep_cr_docmetal1.ncs b/_module/ncs/zep_cr_docmetal1.ncs new file mode 100644 index 0000000..00a3371 Binary files /dev/null and b/_module/ncs/zep_cr_docmetal1.ncs differ diff --git a/_module/ncs/zep_cr_docmetal2.ncs b/_module/ncs/zep_cr_docmetal2.ncs new file mode 100644 index 0000000..bc34407 Binary files /dev/null and b/_module/ncs/zep_cr_docmetal2.ncs differ diff --git a/_module/ncs/zep_cr_dofoot_l.ncs b/_module/ncs/zep_cr_dofoot_l.ncs new file mode 100644 index 0000000..ca6d265 Binary files /dev/null and b/_module/ncs/zep_cr_dofoot_l.ncs differ diff --git a/_module/ncs/zep_cr_dofoot_r.ncs b/_module/ncs/zep_cr_dofoot_r.ncs new file mode 100644 index 0000000..8e52c28 Binary files /dev/null and b/_module/ncs/zep_cr_dofoot_r.ncs differ diff --git a/_module/ncs/zep_cr_dohand_l.ncs b/_module/ncs/zep_cr_dohand_l.ncs new file mode 100644 index 0000000..6e4c128 Binary files /dev/null and b/_module/ncs/zep_cr_dohand_l.ncs differ diff --git a/_module/ncs/zep_cr_dohand_r.ncs b/_module/ncs/zep_cr_dohand_r.ncs new file mode 100644 index 0000000..77bf9f4 Binary files /dev/null and b/_module/ncs/zep_cr_dohand_r.ncs differ diff --git a/_module/ncs/zep_cr_doloarm_l.ncs b/_module/ncs/zep_cr_doloarm_l.ncs new file mode 100644 index 0000000..7c6bf11 Binary files /dev/null and b/_module/ncs/zep_cr_doloarm_l.ncs differ diff --git a/_module/ncs/zep_cr_doloarm_r.ncs b/_module/ncs/zep_cr_doloarm_r.ncs new file mode 100644 index 0000000..16da692 Binary files /dev/null and b/_module/ncs/zep_cr_doloarm_r.ncs differ diff --git a/_module/ncs/zep_cr_doneck.ncs b/_module/ncs/zep_cr_doneck.ncs new file mode 100644 index 0000000..9f5805e Binary files /dev/null and b/_module/ncs/zep_cr_doneck.ncs differ diff --git a/_module/ncs/zep_cr_dopelvis.ncs b/_module/ncs/zep_cr_dopelvis.ncs new file mode 100644 index 0000000..c3be9c2 Binary files /dev/null and b/_module/ncs/zep_cr_dopelvis.ncs differ diff --git a/_module/ncs/zep_cr_dorobe.ncs b/_module/ncs/zep_cr_dorobe.ncs new file mode 100644 index 0000000..b33d696 Binary files /dev/null and b/_module/ncs/zep_cr_dorobe.ncs differ diff --git a/_module/ncs/zep_cr_doshin_l.ncs b/_module/ncs/zep_cr_doshin_l.ncs new file mode 100644 index 0000000..ccc05e3 Binary files /dev/null and b/_module/ncs/zep_cr_doshin_l.ncs differ diff --git a/_module/ncs/zep_cr_doshin_r.ncs b/_module/ncs/zep_cr_doshin_r.ncs new file mode 100644 index 0000000..394f69e Binary files /dev/null and b/_module/ncs/zep_cr_doshin_r.ncs differ diff --git a/_module/ncs/zep_cr_doshold_l.ncs b/_module/ncs/zep_cr_doshold_l.ncs new file mode 100644 index 0000000..b36b28d Binary files /dev/null and b/_module/ncs/zep_cr_doshold_l.ncs differ diff --git a/_module/ncs/zep_cr_doshold_r.ncs b/_module/ncs/zep_cr_doshold_r.ncs new file mode 100644 index 0000000..ae3e72b Binary files /dev/null and b/_module/ncs/zep_cr_doshold_r.ncs differ diff --git a/_module/ncs/zep_cr_dothigh_l.ncs b/_module/ncs/zep_cr_dothigh_l.ncs new file mode 100644 index 0000000..025aff9 Binary files /dev/null and b/_module/ncs/zep_cr_dothigh_l.ncs differ diff --git a/_module/ncs/zep_cr_dothigh_r.ncs b/_module/ncs/zep_cr_dothigh_r.ncs new file mode 100644 index 0000000..33be3dc Binary files /dev/null and b/_module/ncs/zep_cr_dothigh_r.ncs differ diff --git a/_module/ncs/zep_cr_dotorso.ncs b/_module/ncs/zep_cr_dotorso.ncs new file mode 100644 index 0000000..31a6fb4 Binary files /dev/null and b/_module/ncs/zep_cr_dotorso.ncs differ diff --git a/_module/ncs/zep_cr_dowbottom.ncs b/_module/ncs/zep_cr_dowbottom.ncs new file mode 100644 index 0000000..358e295 Binary files /dev/null and b/_module/ncs/zep_cr_dowbottom.ncs differ diff --git a/_module/ncs/zep_cr_dowmiddle.ncs b/_module/ncs/zep_cr_dowmiddle.ncs new file mode 100644 index 0000000..5c7df65 Binary files /dev/null and b/_module/ncs/zep_cr_dowmiddle.ncs differ diff --git a/_module/ncs/zep_cr_dowtop.ncs b/_module/ncs/zep_cr_dowtop.ncs new file mode 100644 index 0000000..cc80dc1 Binary files /dev/null and b/_module/ncs/zep_cr_dowtop.ncs differ diff --git a/_module/ncs/zep_cr_fail.ncs b/_module/ncs/zep_cr_fail.ncs new file mode 100644 index 0000000..8b9c413 Binary files /dev/null and b/_module/ncs/zep_cr_fail.ncs differ diff --git a/_module/ncs/zep_cr_fail_dye.ncs b/_module/ncs/zep_cr_fail_dye.ncs new file mode 100644 index 0000000..fdac403 Binary files /dev/null and b/_module/ncs/zep_cr_fail_dye.ncs differ diff --git a/_module/ncs/zep_cr_fail_gold.ncs b/_module/ncs/zep_cr_fail_gold.ncs new file mode 100644 index 0000000..df70780 Binary files /dev/null and b/_module/ncs/zep_cr_fail_gold.ncs differ diff --git a/_module/ncs/zep_cr_nextcolor.ncs b/_module/ncs/zep_cr_nextcolor.ncs new file mode 100644 index 0000000..0d85781 Binary files /dev/null and b/_module/ncs/zep_cr_nextcolor.ncs differ diff --git a/_module/ncs/zep_cr_nextpart.ncs b/_module/ncs/zep_cr_nextpart.ncs new file mode 100644 index 0000000..4324312 Binary files /dev/null and b/_module/ncs/zep_cr_nextpart.ncs differ diff --git a/_module/ncs/zep_cr_nocheat.ncs b/_module/ncs/zep_cr_nocheat.ncs new file mode 100644 index 0000000..43a9a79 Binary files /dev/null and b/_module/ncs/zep_cr_nocheat.ncs differ diff --git a/_module/ncs/zep_cr_prevcolor.ncs b/_module/ncs/zep_cr_prevcolor.ncs new file mode 100644 index 0000000..5a124aa Binary files /dev/null and b/_module/ncs/zep_cr_prevcolor.ncs differ diff --git a/_module/ncs/zep_cr_prevpart.ncs b/_module/ncs/zep_cr_prevpart.ncs new file mode 100644 index 0000000..0acdd86 Binary files /dev/null and b/_module/ncs/zep_cr_prevpart.ncs differ diff --git a/_module/ncs/zep_cr_start_ca.ncs b/_module/ncs/zep_cr_start_ca.ncs new file mode 100644 index 0000000..6b7eb47 Binary files /dev/null and b/_module/ncs/zep_cr_start_ca.ncs differ diff --git a/_module/ncs/zep_cr_start_ch.ncs b/_module/ncs/zep_cr_start_ch.ncs new file mode 100644 index 0000000..824bec1 Binary files /dev/null and b/_module/ncs/zep_cr_start_ch.ncs differ diff --git a/_module/ncs/zep_cr_start_cs.ncs b/_module/ncs/zep_cr_start_cs.ncs new file mode 100644 index 0000000..a4b9f99 Binary files /dev/null and b/_module/ncs/zep_cr_start_cs.ncs differ diff --git a/_module/ncs/zep_cr_start_cw.ncs b/_module/ncs/zep_cr_start_cw.ncs new file mode 100644 index 0000000..69f51be Binary files /dev/null and b/_module/ncs/zep_cr_start_cw.ncs differ diff --git a/_module/ncs/zep_cr_stop_abrt.ncs b/_module/ncs/zep_cr_stop_abrt.ncs new file mode 100644 index 0000000..8704430 Binary files /dev/null and b/_module/ncs/zep_cr_stop_abrt.ncs differ diff --git a/_module/ncs/zep_cr_stop_make.ncs b/_module/ncs/zep_cr_stop_make.ncs new file mode 100644 index 0000000..a6ccfcd Binary files /dev/null and b/_module/ncs/zep_cr_stop_make.ncs differ diff --git a/_module/ncs/zep_cr_success.ncs b/_module/ncs/zep_cr_success.ncs new file mode 100644 index 0000000..499ce3e Binary files /dev/null and b/_module/ncs/zep_cr_success.ncs differ diff --git a/_module/ncs/zep_is_robe.ncs b/_module/ncs/zep_is_robe.ncs new file mode 100644 index 0000000..6867270 Binary files /dev/null and b/_module/ncs/zep_is_robe.ncs differ diff --git a/_module/ncs/zep_not_robe.ncs b/_module/ncs/zep_not_robe.ncs new file mode 100644 index 0000000..d864129 Binary files /dev/null and b/_module/ncs/zep_not_robe.ncs differ diff --git a/_module/nss/10000g.nss b/_module/nss/10000g.nss new file mode 100644 index 0000000..86bd665 --- /dev/null +++ b/_module/nss/10000g.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName 10000g +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/19/2004 12:03:00 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some gold + GiveGoldToCreature(GetPCSpeaker(), 10000); + +} diff --git a/_module/nss/1mil.nss b/_module/nss/1mil.nss new file mode 100644 index 0000000..44d0a57 --- /dev/null +++ b/_module/nss/1mil.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName 1mil +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/19/2004 12:04:38 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some gold + GiveGoldToCreature(GetPCSpeaker(), 1000000); + +} diff --git a/_module/nss/200000g.nss b/_module/nss/200000g.nss new file mode 100644 index 0000000..68722a2 --- /dev/null +++ b/_module/nss/200000g.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName 200000 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/19/2004 12:03:36 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some gold + GiveGoldToCreature(GetPCSpeaker(), 200000); + +} diff --git a/_module/nss/2000g.nss b/_module/nss/2000g.nss new file mode 100644 index 0000000..e1753c9 --- /dev/null +++ b/_module/nss/2000g.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName 2000g +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/19/2004 12:02:40 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some gold + GiveGoldToCreature(GetPCSpeaker(), 2000); + +} diff --git a/_module/nss/2weapfig_imbue.nss b/_module/nss/2weapfig_imbue.nss new file mode 100644 index 0000000..561346f --- /dev/null +++ b/_module/nss/2weapfig_imbue.nss @@ -0,0 +1,35 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_TWO_WEAPON_FIGHTING); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/4mil.nss b/_module/nss/4mil.nss new file mode 100644 index 0000000..7ecd489 --- /dev/null +++ b/_module/nss/4mil.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName 4mil +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/19/2004 12:04:57 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some gold + GiveGoldToCreature(GetPCSpeaker(), 4000000); + +} diff --git a/_module/nss/50000g.nss b/_module/nss/50000g.nss new file mode 100644 index 0000000..4703360 --- /dev/null +++ b/_module/nss/50000g.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName 50000g +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/19/2004 12:04:09 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some gold + GiveGoldToCreature(GetPCSpeaker(), 50000); + +} diff --git a/_module/nss/500g.nss b/_module/nss/500g.nss new file mode 100644 index 0000000..2ee4311 --- /dev/null +++ b/_module/nss/500g.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName 500g +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/19/2004 12:02:19 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some gold + GiveGoldToCreature(GetPCSpeaker(), 500); + +} diff --git a/_module/nss/a_celmerch.nss b/_module/nss/a_celmerch.nss new file mode 100644 index 0000000..81831bf --- /dev/null +++ b/_module/nss/a_celmerch.nss @@ -0,0 +1,19 @@ +//:://///////////////////////////////////////////// +//:: FileName a_celmerch +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 10/07/2004 11:49:54 PM +//::////////////////////////////////////////////// +#include "nw_i0_plot" + +void main() +{ + + // Either open the store with that tag or let the user know that no store exists. + object oStore = GetNearestObjectByTag("celmerch"); + if(GetObjectType(oStore) == OBJECT_TYPE_STORE) + gplotAppraiseOpenStore(oStore, GetPCSpeaker()); + else + ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK); +} diff --git a/_module/nss/ability_imbue.nss b/_module/nss/ability_imbue.nss new file mode 100644 index 0000000..cc4a743 --- /dev/null +++ b/_module/nss/ability_imbue.nss @@ -0,0 +1,61 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Ability (object oItem, int oType) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 5; + if (nRandom==6) oDamage = 5; + if (nRandom==7) oDamage = 5; + if (nRandom==8) oDamage = 6; + if (nRandom==9) oDamage = 6; + if (nRandom==10) oDamage = 6; + if (nRandom==11) oDamage = 6; + if (nRandom==12) oDamage = 6; + if (nRandom==13) oDamage = 6; + if (nRandom==14) oDamage = 7; + if (nRandom==15) oDamage = 7; + if (nRandom==16) oDamage = 7; + if (nRandom==17) oDamage = 7; + if (nRandom==18) oDamage = 7; + if (nRandom==19) oDamage = 7; + if (nRandom==20) + { + oDamage = 8; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertyAbilityBonus(oType, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); +} +void AbilityImbue (int oType) +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_AC_BONUS, OBJECT_SELF); +PCEffect(1.0,VFX_DUR_PIXIEDUST, OBJECT_SELF); +PCEffect(2.0,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Ability(GetFirstItemInInventory(OBJECT_SELF), oType)); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} +//void main (){} + + diff --git a/_module/nss/abort_bet.nss b/_module/nss/abort_bet.nss new file mode 100644 index 0000000..bf55be9 --- /dev/null +++ b/_module/nss/abort_bet.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "wager", 0); +//SetLocalInt(oPC, "team_bet", 0); +//SetLocalInt(oPC, "winnings",0); +} diff --git a/_module/nss/ac_imbue.nss b/_module/nss/ac_imbue.nss new file mode 100644 index 0000000..78615bb --- /dev/null +++ b/_module/nss/ac_imbue.nss @@ -0,0 +1,48 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Arm(object oItem, int oSoak) +{ + +itemproperty ipAdd; +switch (oSoak) +{ +case 1: oSoak = 10; break; +case 2: oSoak = 11; break; +case 3: oSoak = 12; break; +case 4: oSoak = 13; break; +case 5: oSoak = 14; break; +} +ipAdd = ItemPropertyACBonus(oSoak); +IPSafeAddItemProperty(oItem, ipAdd); + +} + + +void ArmourBonus (int oMulti) +{ +object oTarget; +object oItem; +object oPC = GetLastUsedBy(); +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +PCEffect(0.0,VFX_FNF_SUMMON_MONSTER_2, OBJECT_SELF); +PCEffect(1.0,VFX_DUR_ELEMENTAL_SHIELD, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_AC_BONUS , OBJECT_SELF); +PCEffect(2.0,VFX_IMP_HARM, OBJECT_SELF); +if (oMulti==3) { + PCEffect(2.8,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + Message(3.0, "** Fully Upgraded **", oPC); + } +DelayCommand(1.0, Arm(GetFirstItemInInventory(OBJECT_SELF), oMulti)); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + +//void main (){} diff --git a/_module/nss/ac_imbue2.nss b/_module/nss/ac_imbue2.nss new file mode 100644 index 0000000..7679917 --- /dev/null +++ b/_module/nss/ac_imbue2.nss @@ -0,0 +1,48 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Arm2(object oItem, int oSoak) +{ + +itemproperty ipAdd; +switch (oSoak) +{ +case 1: oSoak = 5; break; +case 2: oSoak = 6; break; +case 3: oSoak = 7; break; +case 4: oSoak = 8; break; +case 5: oSoak = 10; break; +} +ipAdd = ItemPropertyACBonus(oSoak); +IPSafeAddItemProperty(oItem, ipAdd); + +} + + +void DodgeBonus (int oMulti) +{ +object oTarget; +object oItem; +object oPC = GetLastUsedBy(); +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +PCEffect(0.0,VFX_FNF_SUMMON_MONSTER_2, OBJECT_SELF); +PCEffect(1.0,VFX_DUR_ELEMENTAL_SHIELD, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_AC_BONUS , OBJECT_SELF); +PCEffect(2.0,VFX_IMP_HARM, OBJECT_SELF); +if (oMulti==3) { + PCEffect(2.8,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + Message(3.0, "** Fully Upgraded **", oPC); + } +DelayCommand(1.0, Arm2(GetFirstItemInInventory(OBJECT_SELF), oMulti)); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + +//void main (){} diff --git a/_module/nss/ac_imbue25.nss b/_module/nss/ac_imbue25.nss new file mode 100644 index 0000000..68c2be2 --- /dev/null +++ b/_module/nss/ac_imbue25.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "acdone_1", 1); +DamRes(2,2); +} diff --git a/_module/nss/ac_imbue252.nss b/_module/nss/ac_imbue252.nss new file mode 100644 index 0000000..af5f659 --- /dev/null +++ b/_module/nss/ac_imbue252.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "acdone_12", 1); +DamRes2(2,2); +} diff --git a/_module/nss/acc_imbue25.nss b/_module/nss/acc_imbue25.nss new file mode 100644 index 0000000..1675dce --- /dev/null +++ b/_module/nss/acc_imbue25.nss @@ -0,0 +1,8 @@ +#include "ac_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "accdone_1", 1); +ArmourBonus(1); +} diff --git a/_module/nss/accdone_1.nss b/_module/nss/accdone_1.nss new file mode 100644 index 0000000..1f9e603 --- /dev/null +++ b/_module/nss/accdone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accdone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/accdred_imbue_2.nss b/_module/nss/accdred_imbue_2.nss new file mode 100644 index 0000000..937f58f --- /dev/null +++ b/_module/nss/accdred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "ac_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "accdone_2", 1); +ArmourBonus(2); +} diff --git a/_module/nss/accdred_imbue_3.nss b/_module/nss/accdred_imbue_3.nss new file mode 100644 index 0000000..afd5949 --- /dev/null +++ b/_module/nss/accdred_imbue_3.nss @@ -0,0 +1,9 @@ +#include "ac_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "accdone_3", 1); +SetLocalInt(oPC, "accmax_reduction", 1); +ArmourBonus(3); +} diff --git a/_module/nss/accdred_imbue_4.nss b/_module/nss/accdred_imbue_4.nss new file mode 100644 index 0000000..201bb54 --- /dev/null +++ b/_module/nss/accdred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "ac_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "accdone_4", 1); +ArmourBonus(4); +} diff --git a/_module/nss/accdred_imbue_5.nss b/_module/nss/accdred_imbue_5.nss new file mode 100644 index 0000000..3735bd2 --- /dev/null +++ b/_module/nss/accdred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "ac_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "accdone_5", 1); +SetLocalInt(oPC, "accmax_reduction", 1); +ArmourBonus(5); +} diff --git a/_module/nss/acced_1.nss b/_module/nss/acced_1.nss new file mode 100644 index 0000000..49c792d --- /dev/null +++ b/_module/nss/acced_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "accdone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/accmax_reached.nss b/_module/nss/accmax_reached.nss new file mode 100644 index 0000000..d39736b --- /dev/null +++ b/_module/nss/accmax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accmax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/accmax_reached2.nss b/_module/nss/accmax_reached2.nss new file mode 100644 index 0000000..4cad9f0 --- /dev/null +++ b/_module/nss/accmax_reached2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accmax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/accred1_1.nss b/_module/nss/accred1_1.nss new file mode 100644 index 0000000..a241222 --- /dev/null +++ b/_module/nss/accred1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "accdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "accdone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/accred_0.nss b/_module/nss/accred_0.nss new file mode 100644 index 0000000..83021df --- /dev/null +++ b/_module/nss/accred_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accdone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/accred_10.nss b/_module/nss/accred_10.nss new file mode 100644 index 0000000..83feeb0 --- /dev/null +++ b/_module/nss/accred_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accdone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/accred_11.nss b/_module/nss/accred_11.nss new file mode 100644 index 0000000..f97b04c --- /dev/null +++ b/_module/nss/accred_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accdone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "accdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/accred_12.nss b/_module/nss/accred_12.nss new file mode 100644 index 0000000..3240ded --- /dev/null +++ b/_module/nss/accred_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accdone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "accdone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/accred_2.nss b/_module/nss/accred_2.nss new file mode 100644 index 0000000..db03f27 --- /dev/null +++ b/_module/nss/accred_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accdone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "accdone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/accred_3.nss b/_module/nss/accred_3.nss new file mode 100644 index 0000000..960014f --- /dev/null +++ b/_module/nss/accred_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accdone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/accred_4.nss b/_module/nss/accred_4.nss new file mode 100644 index 0000000..35537f7 --- /dev/null +++ b/_module/nss/accred_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "accdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/accred_6.nss b/_module/nss/accred_6.nss new file mode 100644 index 0000000..6ede8d9 --- /dev/null +++ b/_module/nss/accred_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accdone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "accdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/accred_7.nss b/_module/nss/accred_7.nss new file mode 100644 index 0000000..fdc7031 --- /dev/null +++ b/_module/nss/accred_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accdone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/accred_8.nss b/_module/nss/accred_8.nss new file mode 100644 index 0000000..227ef80 --- /dev/null +++ b/_module/nss/accred_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accdone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "accdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/accred_9.nss b/_module/nss/accred_9.nss new file mode 100644 index 0000000..929e308 --- /dev/null +++ b/_module/nss/accred_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "accdone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "accdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/acdone_1.nss b/_module/nss/acdone_1.nss new file mode 100644 index 0000000..4039d41 --- /dev/null +++ b/_module/nss/acdone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/acdone_12.nss b/_module/nss/acdone_12.nss new file mode 100644 index 0000000..eac233c --- /dev/null +++ b/_module/nss/acdone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/acdred_imbue_2.nss b/_module/nss/acdred_imbue_2.nss new file mode 100644 index 0000000..6f02abd --- /dev/null +++ b/_module/nss/acdred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "acdone_2", 1); +DamRes(2,3); +} diff --git a/_module/nss/acdred_imbue_22.nss b/_module/nss/acdred_imbue_22.nss new file mode 100644 index 0000000..558b1cc --- /dev/null +++ b/_module/nss/acdred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "acdone_22", 1); +DamRes2(2,3); +} diff --git a/_module/nss/acdred_imbue_3.nss b/_module/nss/acdred_imbue_3.nss new file mode 100644 index 0000000..f63a994 --- /dev/null +++ b/_module/nss/acdred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "acdone_3", 1); +DamRes(2,4); +} diff --git a/_module/nss/acdred_imbue_32.nss b/_module/nss/acdred_imbue_32.nss new file mode 100644 index 0000000..bff5ce6 --- /dev/null +++ b/_module/nss/acdred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "acdone_32", 1); +SetLocalInt(oPC, "acmax_reduction2", 1); +DamRes2(2,4); +} diff --git a/_module/nss/acdred_imbue_4.nss b/_module/nss/acdred_imbue_4.nss new file mode 100644 index 0000000..3fcb087 --- /dev/null +++ b/_module/nss/acdred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "acdone_4", 1); +DamRes(2,5); +} diff --git a/_module/nss/acdred_imbue_5.nss b/_module/nss/acdred_imbue_5.nss new file mode 100644 index 0000000..7fca0f6 --- /dev/null +++ b/_module/nss/acdred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "acdone_5", 1); +SetLocalInt(oPC, "acmax_reduction", 1); +DamRes(2,6); +} diff --git a/_module/nss/aced1_1.nss b/_module/nss/aced1_1.nss new file mode 100644 index 0000000..e04ce06 --- /dev/null +++ b/_module/nss/aced1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "acdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "acdone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/aced1_12.nss b/_module/nss/aced1_12.nss new file mode 100644 index 0000000..fdf58a2 --- /dev/null +++ b/_module/nss/aced1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "acdone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "acdone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/aced_1.nss b/_module/nss/aced_1.nss new file mode 100644 index 0000000..48812ea --- /dev/null +++ b/_module/nss/aced_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "acdone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/aced_12.nss b/_module/nss/aced_12.nss new file mode 100644 index 0000000..010d349 --- /dev/null +++ b/_module/nss/aced_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "acdone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/acid_imbue.nss b/_module/nss/acid_imbue.nss new file mode 100644 index 0000000..5145aef --- /dev/null +++ b/_module/nss/acid_imbue.nss @@ -0,0 +1,7 @@ +#include "imbue_include" +void main() +{ +SetLocalInt(GetPCSpeaker(), "afire_ldb", 1); +ImbueWeapon(VFX_FNF_GAS_EXPLOSION_ACID, IP_CONST_DAMAGETYPE_ACID); +} + diff --git a/_module/nss/acid_imbue_arm.nss b/_module/nss/acid_imbue_arm.nss new file mode 100644 index 0000000..5a0c8cc --- /dev/null +++ b/_module/nss/acid_imbue_arm.nss @@ -0,0 +1,6 @@ +#include "imbue_include" +void main() +{ +ImbueArmour(VFX_FNF_GAS_EXPLOSION_ACID, IP_CONST_DAMAGETYPE_ACID); +} + diff --git a/_module/nss/acmax_reached.nss b/_module/nss/acmax_reached.nss new file mode 100644 index 0000000..9cac0b7 --- /dev/null +++ b/_module/nss/acmax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acmax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/acmax_reached1.nss b/_module/nss/acmax_reached1.nss new file mode 100644 index 0000000..7c15db5 --- /dev/null +++ b/_module/nss/acmax_reached1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acmax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/acmax_reached12.nss b/_module/nss/acmax_reached12.nss new file mode 100644 index 0000000..d58014a --- /dev/null +++ b/_module/nss/acmax_reached12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acmax_reduction2") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/acmax_reached2.nss b/_module/nss/acmax_reached2.nss new file mode 100644 index 0000000..b28d929 --- /dev/null +++ b/_module/nss/acmax_reached2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acmax_reduction2") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/acred_0.nss b/_module/nss/acred_0.nss new file mode 100644 index 0000000..cb58d53 --- /dev/null +++ b/_module/nss/acred_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/acred_02.nss b/_module/nss/acred_02.nss new file mode 100644 index 0000000..fc52938 --- /dev/null +++ b/_module/nss/acred_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/acred_10.nss b/_module/nss/acred_10.nss new file mode 100644 index 0000000..b605d39 --- /dev/null +++ b/_module/nss/acred_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/acred_11.nss b/_module/nss/acred_11.nss new file mode 100644 index 0000000..dab70d4 --- /dev/null +++ b/_module/nss/acred_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "acdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/acred_12.nss b/_module/nss/acred_12.nss new file mode 100644 index 0000000..deb8bae --- /dev/null +++ b/_module/nss/acred_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "acdone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/acred_2.nss b/_module/nss/acred_2.nss new file mode 100644 index 0000000..47c59b1 --- /dev/null +++ b/_module/nss/acred_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "acdone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/acred_22.nss b/_module/nss/acred_22.nss new file mode 100644 index 0000000..923eeb2 --- /dev/null +++ b/_module/nss/acred_22.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "acdone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/acred_3.nss b/_module/nss/acred_3.nss new file mode 100644 index 0000000..e707483 --- /dev/null +++ b/_module/nss/acred_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/acred_32.nss b/_module/nss/acred_32.nss new file mode 100644 index 0000000..bcccadf --- /dev/null +++ b/_module/nss/acred_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/acred_4.nss b/_module/nss/acred_4.nss new file mode 100644 index 0000000..a3fc3b5 --- /dev/null +++ b/_module/nss/acred_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "acdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/acred_42.nss b/_module/nss/acred_42.nss new file mode 100644 index 0000000..9ec9258 --- /dev/null +++ b/_module/nss/acred_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "acdone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/acred_6.nss b/_module/nss/acred_6.nss new file mode 100644 index 0000000..84b2770 --- /dev/null +++ b/_module/nss/acred_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "acdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/acred_62.nss b/_module/nss/acred_62.nss new file mode 100644 index 0000000..d729b13 --- /dev/null +++ b/_module/nss/acred_62.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "acdone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/acred_7.nss b/_module/nss/acred_7.nss new file mode 100644 index 0000000..35c4871 --- /dev/null +++ b/_module/nss/acred_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/acred_8.nss b/_module/nss/acred_8.nss new file mode 100644 index 0000000..54f9772 --- /dev/null +++ b/_module/nss/acred_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "acdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/acred_9.nss b/_module/nss/acred_9.nss new file mode 100644 index 0000000..4180f9a --- /dev/null +++ b/_module/nss/acred_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "acdone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "acdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/align_check.nss b/_module/nss/align_check.nss new file mode 100644 index 0000000..16badd9 --- /dev/null +++ b/_module/nss/align_check.nss @@ -0,0 +1,35 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_023 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 28/01/2005 5:45:50 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "wurmdead") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "balrogdead") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "doppledead") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "pitfienddead") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "hdfienddead") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "paledead") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "marilithdead") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bossdead") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "lorddead") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "luciferdead") == 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/all_monst.nss b/_module/nss/all_monst.nss new file mode 100644 index 0000000..4866928 --- /dev/null +++ b/_module/nss/all_monst.nss @@ -0,0 +1,18 @@ +int StartingConditional() +{ + object Get = GetModule(); + if((!(GetLocalInt(Get, "sw_ll") == 1))&&(GetLocalInt(Get, "sw_lm") == 1)&& + (GetLocalInt(Get, "sw_ll") == 1)&&(GetLocalInt(Get, "sw_bm") == 1) + &&(GetLocalInt(Get, "sw_pm") == 1)&&(GetLocalInt(Get, "sw_hd") == 1) + &&(GetLocalInt(Get, "sw_pf") == 1)&&(GetLocalInt(Get, "sw_bl") == 1) + &&(GetLocalInt(Get, "sw_dr") == 1) &&(GetLocalInt(Get, "sw_hw") == 1)) + return FALSE; + + return TRUE; + + + + + + +} diff --git a/_module/nss/altert_imbue.nss b/_module/nss/altert_imbue.nss new file mode 100644 index 0000000..2fbed1a --- /dev/null +++ b/_module/nss/altert_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_ALERTNESS); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/amby_imbue.nss b/_module/nss/amby_imbue.nss new file mode 100644 index 0000000..8351122 --- /dev/null +++ b/_module/nss/amby_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_AMBIDEXTROUS); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/amm_imbue25.nss b/_module/nss/amm_imbue25.nss new file mode 100644 index 0000000..df97f01 --- /dev/null +++ b/_module/nss/amm_imbue25.nss @@ -0,0 +1,8 @@ +#include "ac_imbue2" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ammdone_1", 1); +DodgeBonus(1); +} diff --git a/_module/nss/ammdone_1.nss b/_module/nss/ammdone_1.nss new file mode 100644 index 0000000..2919838 --- /dev/null +++ b/_module/nss/ammdone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ammdred_imbue_2.nss b/_module/nss/ammdred_imbue_2.nss new file mode 100644 index 0000000..0da2bb5 --- /dev/null +++ b/_module/nss/ammdred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "ac_imbue2" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ammdone_2", 1); +DodgeBonus(2); +} diff --git a/_module/nss/ammdred_imbue_3.nss b/_module/nss/ammdred_imbue_3.nss new file mode 100644 index 0000000..0e267fa --- /dev/null +++ b/_module/nss/ammdred_imbue_3.nss @@ -0,0 +1,9 @@ +#include "ac_imbue2" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ammdone_3", 1); +SetLocalInt(oPC, "ammmax_reduction", 1); +DodgeBonus(3); +} diff --git a/_module/nss/ammdred_imbue_4.nss b/_module/nss/ammdred_imbue_4.nss new file mode 100644 index 0000000..8bb708c --- /dev/null +++ b/_module/nss/ammdred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "ac_imbue2" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ammdone_4", 1); +DodgeBonus(4); +} diff --git a/_module/nss/ammdred_imbue_5.nss b/_module/nss/ammdred_imbue_5.nss new file mode 100644 index 0000000..b7c4c5e --- /dev/null +++ b/_module/nss/ammdred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "ac_imbue2" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ammdone_5", 1); +SetLocalInt(oPC, "ammmax_reduction", 1); +DodgeBonus(5); +} diff --git a/_module/nss/ammed_1.nss b/_module/nss/ammed_1.nss new file mode 100644 index 0000000..7d3d7f6 --- /dev/null +++ b/_module/nss/ammed_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ammed_11.nss b/_module/nss/ammed_11.nss new file mode 100644 index 0000000..7fa9960 --- /dev/null +++ b/_module/nss/ammed_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ammed_7.nss b/_module/nss/ammed_7.nss new file mode 100644 index 0000000..cfd0f8c --- /dev/null +++ b/_module/nss/ammed_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ammmax_reached.nss b/_module/nss/ammmax_reached.nss new file mode 100644 index 0000000..6994711 --- /dev/null +++ b/_module/nss/ammmax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammmax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ammmax_reached2.nss b/_module/nss/ammmax_reached2.nss new file mode 100644 index 0000000..927915b --- /dev/null +++ b/_module/nss/ammmax_reached2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammmax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ammred1_1.nss b/_module/nss/ammred1_1.nss new file mode 100644 index 0000000..d59f43c --- /dev/null +++ b/_module/nss/ammred1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ammred_0.nss b/_module/nss/ammred_0.nss new file mode 100644 index 0000000..36dd099 --- /dev/null +++ b/_module/nss/ammred_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/ammred_10.nss b/_module/nss/ammred_10.nss new file mode 100644 index 0000000..27070ab --- /dev/null +++ b/_module/nss/ammred_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ammred_12.nss b/_module/nss/ammred_12.nss new file mode 100644 index 0000000..41788cc --- /dev/null +++ b/_module/nss/ammred_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ammred_2.nss b/_module/nss/ammred_2.nss new file mode 100644 index 0000000..219e459 --- /dev/null +++ b/_module/nss/ammred_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ammred_3.nss b/_module/nss/ammred_3.nss new file mode 100644 index 0000000..d935ce6 --- /dev/null +++ b/_module/nss/ammred_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ammred_4.nss b/_module/nss/ammred_4.nss new file mode 100644 index 0000000..24ec582 --- /dev/null +++ b/_module/nss/ammred_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ammred_6.nss b/_module/nss/ammred_6.nss new file mode 100644 index 0000000..a83fcdd --- /dev/null +++ b/_module/nss/ammred_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ammred_8.nss b/_module/nss/ammred_8.nss new file mode 100644 index 0000000..f5ca37c --- /dev/null +++ b/_module/nss/ammred_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ammred_9.nss b/_module/nss/ammred_9.nss new file mode 100644 index 0000000..74b2df4 --- /dev/null +++ b/_module/nss/ammred_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ammdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/angel_fly.nss b/_module/nss/angel_fly.nss new file mode 100644 index 0000000..35d5520 --- /dev/null +++ b/_module/nss/angel_fly.nss @@ -0,0 +1,28 @@ +#include "in_g_cutscene" +#include "x0_i0_petrify" + + +void FlyAway() +{ +object oPC = OBJECT_SELF; + + +effect eEffect1 = EffectVisualEffect(VFX_DUR_ELEMENTAL_SHIELD); +effect eEffect2 = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + +RemoveEffectOfType(oPC, GetEffectType(eEffect1)); +RemoveEffectOfType(oPC, GetEffectType(eEffect1)); + + +GestaltApplyEffect(1.0, oPC, EffectVisualEffect(VFX_IMP_PULSE_WIND), INSTANT); + +GestaltApplyEffect(0.0, oPC, EffectDisappear(), PERMANENT); +} + +void main () +{ +object oPC2 = GetLastSpeaker(); +ClearAllActions(); +SpeakString("Farewell and congratulations, "+GetName(oPC2)+"."); +DelayCommand(0.5, FlyAway()); +} diff --git a/_module/nss/angel_fly2.nss b/_module/nss/angel_fly2.nss new file mode 100644 index 0000000..437a10e --- /dev/null +++ b/_module/nss/angel_fly2.nss @@ -0,0 +1,23 @@ +#include "in_g_cutscene" +#include "x0_i0_petrify" + + +void FlyAway() +{ +object oPC = OBJECT_SELF; + +effect eEffect1 = EffectVisualEffect(VFX_DUR_ELEMENTAL_SHIELD); +effect eEffect2 = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + +RemoveEffectOfType(oPC, GetEffectType(eEffect1)); +RemoveEffectOfType(oPC, GetEffectType(eEffect1)); + +DelayCommand(1.0, ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectVisualEffect(VFX_IMP_PULSE_WIND), oPC)); +ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectDisappear(), oPC); +} + + +void main () +{ +DelayCommand(2.5, FlyAway()); +} diff --git a/_module/nss/angeldeath.nss b/_module/nss/angeldeath.nss new file mode 100644 index 0000000..a8c128e --- /dev/null +++ b/_module/nss/angeldeath.nss @@ -0,0 +1,72 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::///////////////////////////War Demon +#include "x0_i0_petrify" +#include "loot" +#include "rank" +#include "spawner" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + + int nInt; + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "ch_pf", 0); + SetLocalInt(oMod, "gr_xx", 0); + nInt = GetObjectType(oTarget); + + + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + SetLocalInt(oPC, "pitfienddead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 5500); + } + } + int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); +int sw10 = GetLocalInt(oMod, "sw_xx"); +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(sw10==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +PCEffect(0.0, VFX_IMP_DEATH_L, oTarget); +PCEffect(0.3, VFX_IMP_MAGIC_PROTECTION, oTarget); +} diff --git a/_module/nss/angeldeath1.nss b/_module/nss/angeldeath1.nss new file mode 100644 index 0000000..b287a50 --- /dev/null +++ b/_module/nss/angeldeath1.nss @@ -0,0 +1,67 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//:://///////////////////////////////Balrog Lord +#include "loot" +#include "rank" +#include "spawner" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + SetLocalInt(oMod, "sw_bl", 0); + SetLocalInt(oMod, "ch_bl", 0); + SetLocalInt(oMod, "gr_xx", 0); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + int oExploit = GetLocalInt(oMod, "xcheck"); + + + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + SetLocalInt(oPC, "balrogdead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 3500); + } + } + int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); +PCEffect(0.0, VFX_IMP_DEATH_L, oTarget); +//PCEffect(0.3, VFX_IMP_MAGIC_PROTECTION, oTarget); +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } + +} diff --git a/_module/nss/anti_devcrit2.nss b/_module/nss/anti_devcrit2.nss new file mode 100644 index 0000000..ce805e1 --- /dev/null +++ b/_module/nss/anti_devcrit2.nss @@ -0,0 +1,46 @@ + + +void main() +{ +object oPC = GetPCLevellingUp(); //Get the PC +if (GetItemPossessedBy(oPC, "nordock_token")!=OBJECT_INVALID)return; + int nInt; + int nInt2; + + if (!GetIsPC(oPC)) + return; //Ignore NPCs +// Dissallow Dev Crit on all Weapon Focuses + + int nExitLoop = 0; + if (GetHasFeat(955, oPC)) + nExitLoop = 1; //Dwarven Waraxe + if (GetHasFeat(996, oPC)) + nExitLoop = 1; //Whip + SetLocalInt(oPC, "henchlev", 0); + int nFeat = 495; //495 is the first dev. crit. feat + while ((!nExitLoop) && (nFeat<532)) //531 is the last dev. crit. feat, repeat for all dev. crits between 495 and 531 + { + if (GetHasFeat(nFeat, oPC)) + { + nExitLoop = 1; + } + else + { + nFeat++; + } + } + + if (nExitLoop) //If a Dev. Crit. was chosen + { + string sString = "Devastating Critical is not a usable feat here"; + AssignCommand(oPC,SpeakString(sString,TALKVOLUME_WHISPER)); //Send warning message + int nLevel = GetHitDice(oPC); //Get level + int nXP = GetXP(oPC); //Save XP so we can restore it afterwards + int nDelevelXP = (nLevel-1) * (nLevel - 2) * 500; //Work out how much XP will delevel the PC + SetXP(oPC, nDelevelXP); //Set that level + DelayCommand(3.5,GiveXPToCreature(oPC, nXP - nDelevelXP)); //Restore the XP so the player can relevel + } + + +} + diff --git a/_module/nss/any_neu_align.nss b/_module/nss/any_neu_align.nss new file mode 100644 index 0000000..24ca04f --- /dev/null +++ b/_module/nss/any_neu_align.nss @@ -0,0 +1,10 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + + if (!(GetAlignmentGoodEvil(oPC) == ALIGNMENT_NEUTRAL && + GetAlignmentLawChaos(oPC) == ALIGNMENT_LAWFUL)) + return FALSE; + +return TRUE; +} diff --git a/_module/nss/aoc_onspellcast.nss b/_module/nss/aoc_onspellcast.nss new file mode 100644 index 0000000..02d7dca --- /dev/null +++ b/_module/nss/aoc_onspellcast.nss @@ -0,0 +1,170 @@ + + + +void CastJoinTeam(object oSelf, object oPC) +{ + int iDone = 0; + object oCreature; + object oTeam; + string sSide; + int iTeam = GetLocalInt(oPC, "team_bet"); + + + +oCreature = GetFirstObjectInArea(OBJECT_SELF); +while ((GetObjectType(oCreature)!=OBJECT_TYPE_CREATURE)|| + (!GetIsEnemy(oCreature, oSelf))||(GetIsPC(oCreature))|| + (GetTag(oCreature)=="starfall")||(GetTag(oCreature)=="reaper")) + { + oCreature =GetNextObjectInArea(OBJECT_SELF); + } +//FloatingTextStringOnCreature(GetName(OBJECT_SELF), oPC); +//FloatingTextStringOnCreature(GetName(oCreature), oPC); + +if ((GetResRef(oCreature)=="dragon1")||(GetResRef(oCreature)=="zep_halfdrafn001")|| + (GetResRef(oCreature)=="zep_marilithb001")||(GetResRef(oCreature)=="bard2")|| + (GetResRef(oCreature)=="zep_pitfiend001")||(GetResRef(oCreature)=="zep_balrog001")|| + (GetResRef(oCreature)=="dopple")||(GetResRef(oCreature)=="mistress2")|| + (GetResRef(oCreature)=="notime3")||(GetResRef(oCreature)=="notime4")|| + (GetResRef(oCreature)=="darcher")||(GetResRef(oCreature)=="death")) + { + if (iTeam==2) + { + sSide = "You have breached betting protocol by assisting your team"; + SetLocalInt(oPC, "pc_side", 2); + } + else + { + sSide = "You have joined the Champions of Darkness"; + SetLocalInt(oPC, "pc_side", 2); + } + } +else + { + if (iTeam==1) + { + sSide = "You have breached betting protocol by assisting your team"; + SetLocalInt(oPC, "pc_side", 1); + } + else + { + sSide = "You have joined the Champions of Light"; + SetLocalInt(oPC, "pc_side", 1); + } + } +AdjustReputation(oPC, oCreature, 100); +SetIsTemporaryFriend(oPC, oCreature); + +oTeam = GetFirstFactionMember(oCreature, FALSE); +while (GetIsObjectValid(oTeam)) + { + //AdjustReputation(oPC, oTeam, 100); + SetIsTemporaryFriend(oPC, oTeam, FALSE); + oTeam = GetNextFactionMember(oCreature, FALSE); + } +FloatingTextStringOnCreature(sSide, oPC); +} + + +void main() +{ +object oDamager = GetLastDamager(); +int oSpell = GetLastSpell(); +object oPC = GetLastSpellCaster(); +object oMod = GetModule(); +int iDamage = GetTotalDamageDealt(); + string oAtt; + string oMon; + object oDest; + int oSwing; + int oHWswing; + int iSFswing; + int iFBswing; + int iFBhit; + int oMhit; + int oPCdam; + int oMiss; + int iCHswing; + int iArenaChall =GetLocalInt(oMod, "challenge"); + int iSFDuel =GetLocalInt(oMod, "duel_on"); + int iWarWon = GetLocalInt(oMod, "war_won"); + int iJoinSwitch = GetLocalInt(oPC, "join_switch"); + int iHwar = GetLocalInt(oMod, "hwar_on"); + int iFinalBattle = GetLocalInt(oPC, "final_on"); + int iTeam = GetLocalInt(oPC, "team_bet"); + + //FloatingTextStringOnCreature(IntToString(oSpell)+" by "+GetName(oPC), oPC); + + + if (GetIsPC(oPC)) + { + if ((GetLastSpellHarmful()==TRUE)&&(oDamager==oPC)) + { + if (iArenaChall==1) + { + iCHswing = GetLocalInt(oPC, "pc_CHswing"); + ++iCHswing; + SetLocalInt(oPC, "pc_CHswing", iCHswing); + } + if (iSFDuel==1) + { + iSFswing = GetLocalInt(oPC, "pc_SFswing"); + ++iSFswing; + SetLocalInt(oPC, "pc_SFswing", iSFswing); + //FloatingTextStringOnCreature("swing "+IntToString(GetLocalInt(oPC, "pc_SFswing")), oPC); + } + if (iFinalBattle==1) + { + iFBswing = GetLocalInt(oPC, "pc_FBswing"); + ++iFBswing; + SetLocalInt(oPC, "pc_FBswing", iFBswing); + } + if (iHwar==1) + { + oHWswing = GetLocalInt(oPC, "pc_HWswing"); + ++oHWswing; + SetLocalInt(oPC, "pc_HWswing", oHWswing); + } + oSwing = GetLocalInt(oPC, "pc_swing"); + ++oSwing; + SetLocalInt(oPC, "pc_swing", oSwing); + } + if ((iHwar==1)&&(iJoinSwitch!=1)&&(iWarWon!=1)&&(GetLastSpellHarmful()==TRUE)) + { + CastJoinTeam(OBJECT_SELF, oPC); + SetLocalInt(oPC, "join_switch", 1); + } + } + else + { + if (GetLastSpellHarmful()==TRUE) + { + oAtt = GetResRef(oPC); + oAtt+="_ss"; + oMiss = GetLocalInt(oMod, oAtt); + ++oMiss; + SetLocalInt(oMod, oAtt, oMiss); + if (iDamage!=0) + { + oAtt = GetResRef(oPC); + oMon = oAtt+"_hh"; + oMhit = GetLocalInt(oMod, oMon); + ++oMhit; + SetLocalInt(oMod, oMon, oMhit); + } + } + } + //-------------------------------------------------------------------------- + // GZ: 2003-10-16 + // Make Plot Creatures Ignore Attacks + //-------------------------------------------------------------------------- + if (GetPlotFlag(OBJECT_SELF)) + { + return; + } + //-------------------------------------------------------------------------- + // Execute old NWN default AI code + //-------------------------------------------------------------------------- + ExecuteScript("nw_c2_defaultb", OBJECT_SELF); + +} diff --git a/_module/nss/aph_imbue.nss b/_module/nss/aph_imbue.nss new file mode 100644 index 0000000..be1f72b --- /dev/null +++ b/_module/nss/aph_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_ARMOR_PROF_HEAVY); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/app0.nss b/_module/nss/app0.nss new file mode 100644 index 0000000..81b652d --- /dev/null +++ b/_module/nss/app0.nss @@ -0,0 +1,32 @@ +void main() +{ +object oH = GetPCSpeaker(); +if (GetLocalString(oH, "HUNDRED") == "") + { + SetLocalString(oH, "HUNDRED", "0"); + return; + } +else + { + if (GetLocalString(oH, "TEN") == "") + { + SetLocalString(oH, "TEN", "0"); + return; + } + else + { + if (GetLocalString(oH, "ONE") == "") + { + SetLocalString(oH, "ONE", "0"); + SetCustomToken( + 420, + GetLocalString(oH, "THOUSAND") + + GetLocalString(oH, "HUNDRED") + + GetLocalString(oH, "TEN") + + GetLocalString(oH, "ONE") + ); + return; + } + } + } +} diff --git a/_module/nss/app1.nss b/_module/nss/app1.nss new file mode 100644 index 0000000..18b927c --- /dev/null +++ b/_module/nss/app1.nss @@ -0,0 +1,26 @@ +void main() +{ +object oH = GetPCSpeaker(); +if (GetLocalString(oH, "HUNDRED") == "") + { + SetLocalString(oH, "HUNDRED", "1"); + return; + } +else + { + if (GetLocalString(oH, "TEN") == "") + { + SetLocalString(oH, "TEN", "1"); + return; + } + else + { + if (GetLocalString(oH, "ONE") == "") + { + SetLocalString(oH, "ONE", "1"); + SetCustomToken(420, GetLocalString(oH, "THOUSAND") + GetLocalString(oH, "HUNDRED") + GetLocalString(oH, "TEN") + GetLocalString(oH, "ONE")); + return; + } + } + } +} diff --git a/_module/nss/app1000.nss b/_module/nss/app1000.nss new file mode 100644 index 0000000..f58fb3e --- /dev/null +++ b/_module/nss/app1000.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "THOUSAND", "1"); +} diff --git a/_module/nss/app2.nss b/_module/nss/app2.nss new file mode 100644 index 0000000..5d33abd --- /dev/null +++ b/_module/nss/app2.nss @@ -0,0 +1,26 @@ +void main() +{ +object oH = GetPCSpeaker(); +if (GetLocalString(oH, "HUNDRED") == "") + { + SetLocalString(oH, "HUNDRED", "2"); + return; + } +else + { + if (GetLocalString(oH, "TEN") == "") + { + SetLocalString(oH, "TEN", "2"); + return; + } + else + { + if (GetLocalString(oH, "ONE") == "") + { + SetLocalString(oH, "ONE", "2"); + SetCustomToken(420, GetLocalString(oH, "THOUSAND") + GetLocalString(oH, "HUNDRED") + GetLocalString(oH, "TEN") + GetLocalString(oH, "ONE")); + return; + } + } + } +} diff --git a/_module/nss/app3.nss b/_module/nss/app3.nss new file mode 100644 index 0000000..fa62468 --- /dev/null +++ b/_module/nss/app3.nss @@ -0,0 +1,26 @@ +void main() +{ +object oH = GetPCSpeaker(); +if (GetLocalString(oH, "HUNDRED") == "") + { + SetLocalString(oH, "HUNDRED", "3"); + return; + } +else + { + if (GetLocalString(oH, "TEN") == "") + { + SetLocalString(oH, "TEN", "3"); + return; + } + else + { + if (GetLocalString(oH, "ONE") == "") + { + SetLocalString(oH, "ONE", "3"); + SetCustomToken(420, GetLocalString(oH, "THOUSAND") + GetLocalString(oH, "HUNDRED") + GetLocalString(oH, "TEN") + GetLocalString(oH, "ONE")); + return; + } + } + } +} diff --git a/_module/nss/app4.nss b/_module/nss/app4.nss new file mode 100644 index 0000000..1e6ce90 --- /dev/null +++ b/_module/nss/app4.nss @@ -0,0 +1,26 @@ +void main() +{ +object oH = GetPCSpeaker(); +if (GetLocalString(oH, "HUNDRED") == "") + { + SetLocalString(oH, "HUNDRED", "4"); + return; + } +else + { + if (GetLocalString(oH, "TEN") == "") + { + SetLocalString(oH, "TEN", "4"); + return; + } + else + { + if (GetLocalString(oH, "ONE") == "") + { + SetLocalString(oH, "ONE", "4"); + SetCustomToken(420, GetLocalString(oH, "THOUSAND") + GetLocalString(oH, "HUNDRED") + GetLocalString(oH, "TEN") + GetLocalString(oH, "ONE")); + return; + } + } + } +} diff --git a/_module/nss/app5.nss b/_module/nss/app5.nss new file mode 100644 index 0000000..5040a4f --- /dev/null +++ b/_module/nss/app5.nss @@ -0,0 +1,26 @@ +void main() +{ +object oH = GetPCSpeaker(); +if (GetLocalString(oH, "HUNDRED") == "") + { + SetLocalString(oH, "HUNDRED", "5"); + return; + } +else + { + if (GetLocalString(oH, "TEN") == "") + { + SetLocalString(oH, "TEN", "5"); + return; + } + else + { + if (GetLocalString(oH, "ONE") == "") + { + SetLocalString(oH, "ONE", "5"); + SetCustomToken(420, GetLocalString(oH, "THOUSAND") + GetLocalString(oH, "HUNDRED") + GetLocalString(oH, "TEN") + GetLocalString(oH, "ONE")); + return; + } + } + } +} diff --git a/_module/nss/app6.nss b/_module/nss/app6.nss new file mode 100644 index 0000000..f41bb1b --- /dev/null +++ b/_module/nss/app6.nss @@ -0,0 +1,26 @@ +void main() +{ +object oH = GetPCSpeaker(); +if (GetLocalString(oH, "HUNDRED") == "") + { + SetLocalString(oH, "HUNDRED", "6"); + return; + } +else + { + if (GetLocalString(oH, "TEN") == "") + { + SetLocalString(oH, "TEN", "6"); + return; + } + else + { + if (GetLocalString(oH, "ONE") == "") + { + SetLocalString(oH, "ONE", "6"); + SetCustomToken(420, GetLocalString(oH, "THOUSAND") + GetLocalString(oH, "HUNDRED") + GetLocalString(oH, "TEN") + GetLocalString(oH, "ONE")); + return; + } + } + } +} diff --git a/_module/nss/app7.nss b/_module/nss/app7.nss new file mode 100644 index 0000000..f37eae5 --- /dev/null +++ b/_module/nss/app7.nss @@ -0,0 +1,26 @@ +void main() +{ +object oH = GetPCSpeaker(); +if (GetLocalString(oH, "HUNDRED") == "") + { + SetLocalString(oH, "HUNDRED", "7"); + return; + } +else + { + if (GetLocalString(oH, "TEN") == "") + { + SetLocalString(oH, "TEN", "7"); + return; + } + else + { + if (GetLocalString(oH, "ONE") == "") + { + SetLocalString(oH, "ONE", "7"); + SetCustomToken(420, GetLocalString(oH, "THOUSAND") + GetLocalString(oH, "HUNDRED") + GetLocalString(oH, "TEN") + GetLocalString(oH, "ONE")); + return; + } + } + } +} diff --git a/_module/nss/app8.nss b/_module/nss/app8.nss new file mode 100644 index 0000000..f800d5f --- /dev/null +++ b/_module/nss/app8.nss @@ -0,0 +1,26 @@ +void main() +{ +object oH = GetPCSpeaker(); +if (GetLocalString(oH, "HUNDRED") == "") + { + SetLocalString(oH, "HUNDRED", "8"); + return; + } +else + { + if (GetLocalString(oH, "TEN") == "") + { + SetLocalString(oH, "TEN", "8"); + return; + } + else + { + if (GetLocalString(oH, "ONE") == "") + { + SetLocalString(oH, "ONE", "8"); + SetCustomToken(420, GetLocalString(oH, "THOUSAND") + GetLocalString(oH, "HUNDRED") + GetLocalString(oH, "TEN") + GetLocalString(oH, "ONE")); + return; + } + } + } +} diff --git a/_module/nss/app9.nss b/_module/nss/app9.nss new file mode 100644 index 0000000..28f3820 --- /dev/null +++ b/_module/nss/app9.nss @@ -0,0 +1,26 @@ +void main() +{ +object oH = GetPCSpeaker(); +if (GetLocalString(oH, "HUNDRED") == "") + { + SetLocalString(oH, "HUNDRED", "9"); + return; + } +else + { + if (GetLocalString(oH, "TEN") == "") + { + SetLocalString(oH, "TEN", "9"); + return; + } + else + { + if (GetLocalString(oH, "ONE") == "") + { + SetLocalString(oH, "ONE", "9"); + SetCustomToken(420, GetLocalString(oH, "THOUSAND") + GetLocalString(oH, "HUNDRED") + GetLocalString(oH, "TEN") + GetLocalString(oH, "ONE")); + return; + } + } + } +} diff --git a/_module/nss/appearance_drag.nss b/_module/nss/appearance_drag.nss new file mode 100644 index 0000000..21d381c --- /dev/null +++ b/_module/nss/appearance_drag.nss @@ -0,0 +1,15 @@ +void main() +{ +int oDice; +int oCreature; +oDice = d6(); + +if (oDice==1)oCreature = APPEARANCE_TYPE_DRAGON_BLUE; +if (oDice==2)oCreature = APPEARANCE_TYPE_DRAGON_BRASS; +if (oDice==3)oCreature = APPEARANCE_TYPE_DRAGON_BLACK; +if (oDice==4)oCreature = APPEARANCE_TYPE_DRAGON_BRONZE; +if (oDice==5)oCreature = APPEARANCE_TYPE_DRAGON_BLACK; +if (oDice==6)oCreature = APPEARANCE_TYPE_DRAGON_RED; + +SetCreatureAppearanceType(OBJECT_SELF, oCreature); +} diff --git a/_module/nss/apts_const_ptok.nss b/_module/nss/apts_const_ptok.nss new file mode 100644 index 0000000..ea80716 --- /dev/null +++ b/_module/nss/apts_const_ptok.nss @@ -0,0 +1,51 @@ +/**************************************************** + Persistent Token Constants Script + apts_const_ptok + + Last Updated: September 22, 2002 + + ***Ambrosia Persistent Token System*** + Created by Mojo(Allen Sun) + + This script contains common internal constants used + by other scripts. It is not adviseable to + modify these constants unless you know what you are + doing. + +****************************************************/ +float APTS_VERSION = 1.0; + +int MAX_INT = 2147483647; + +int APTS_LARGE_INT = 3; +int APTS_MEDIUM_INT = 2; +int APTS_SMALL_INT = 1; + +int APTS_TYPE_INT = 1; +int APTS_TYPE_BOOL = 2; +int APTS_TYPE_FLOAT = 3; +int APTS_TYPE_STRING = 4; +int APTS_TYPE_LOCATION = 5; + +int CINT_TOKENS_FOR_BASE = 11; +int CINT_BITS_PER_TOKEN = 11; +int CINT_NUMBER_BASE = 2048; + +int CINT_MAX_UNSIGNED_ONE = 2047; +int CINT_MAX_UNSIGNED_TWO = 4194303; +int CINT_MAX_UNSIGNED_THREE = MAX_INT; + +int CINT_MAX_SIGNED_ONE = 1023; +int CINT_MAX_SIGNED_TWO = 2097151; +int CINT_MAX_SIGNED_THREE = MAX_INT; + +int CINT_MAX_SLOTS = 105; + +int CINT_PRIME_HASH = 4194301; +// Persistent Token Box Tag +string APTS_TOKEN_BOX_TAG = "APTS_TOKBOX_NODD"; +// Persistent Token Base Tag +string APTS_TOKEN_TAG = "APTS_NOD"; + +string APTS_CHAR_TABLE = " ! #$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~"; + diff --git a/_module/nss/apts_inc_ptok.nss b/_module/nss/apts_inc_ptok.nss new file mode 100644 index 0000000..d3b10f8 --- /dev/null +++ b/_module/nss/apts_inc_ptok.nss @@ -0,0 +1,936 @@ +/**************************************************** + Persistent Token Main Include Script + apts_inc_ptok + + Last Updated: September 26, 2002 + + ***Ambrosia Persistent Token System*** + Created by Mojo(Allen Sun) + + This script is the main include script and is + needed to declare, set, and get token data. + Include this script in any other script where you + need access persistent token data. + +****************************************************/ +#include "apts_const_ptok" +#include "apts_inc_toksys" + +/* Function Declarations */ + +// Call this to declare an integer token, the size is the number of token range +// to reserve and determines the max size of the integer. +// (Sizes are APTS_LARGE_INT, APTS_MEDIUM_INT and APTS_SMALL_INT) +// Large integers take up 3 slots, medium take up 2, and small take up 1 +void DeclareTokenInt(string sVarName, int iSlotNum, int bSigned = TRUE, int iSize = 3); +// Call this to declare a boolean token. In addition to declaring a slot number, +// you must also declare a bit position between 0-10. You can declare up to +// 11 booleans in one slot. +void DeclareTokenBool(string sVarName, int iSlotNum, int iBitNum); +// Call this to declare a float token. You need to declare a unique slot. +// Floats take up 3 slots. +void DeclareTokenFloat(string sVarName, int iSlotNum, int b22Bit = FALSE); +// Call this to declare a string token. You must declare the max string +// length you want. 2 slots are reserved for up to every 3 characters so +// a 16 letter tag requires 12 slots reserved. To calculate the number +// of slots that get reserved, simply take the max string length, divide by 3, +// round up, and multiply by 2. +void DeclareTokenString(string sVarName, int iSlotNum, int iMaxStrLength); +// Call this to declare a location token. You need to declare a unique slot. +// There are two methods to save the area info in a location. One is by use +// of strings which requires more space. The other is by use of special +// waypoints which must be added to each area. Pass in TRUE for bCompressedMode +// if you wish to use the waypoint method in order to save slot space. +// You can also choose not to save the facing to save more space. Simply pass in +// FALSE for the bSaveFacing parameter. +// Finally, you can choose to not save the Z position of the location. +// For players, you do not need to save the Z location. +// To quickly calculate the number of slots needed for locations, simply start +// with 6 slots. +// Add 20 slots if you are not using the compressed modes and waypoints. +// Add 2 slots if you want to save the facing. +// Add 2 slots if you want to save the Z Position. +void DeclareTokenLocation(string sVarName, int iSlotNum, int bCompressedMode = FALSE, int bSaveFacing = TRUE, int bSaveZPos = TRUE); + +// Sets a token integer to a certain value +void SetTokenInt(object oPlayer, string sVarName, int iValue); +// Sets a token boolean to a certain value +void SetTokenBool(object oPlayer, string sVarName, int bValue); +// Sets a token float to a certain value +void SetTokenFloat(object oPlayer, string sVarName, float fValue); +// Sets a token string to a certain value +void SetTokenString(object oPlayer, string sVarName, string sValue); +// Sets a token location to a certain value +void SetTokenLocation(object oPlayer, string sVarName, location lValue); + +// Gets the value from a token integer variable. You can also +// force the value to be loaded directly from the token by setting the +// last parameter to TRUE. +int GetTokenInt(object oPlayer, string sVarName, int bLoadToken = FALSE); +// Gets the value from a token boolean variable. You can also +// force the value to be loaded directly from the token by setting the +// last parameter to TRUE. +int GetTokenBool(object oPlayer, string sVarName, int bLoadToken = FALSE); +// Gets the value from a token float variable. You can also +// force the value to be loaded directly from the token by setting the +// last parameter to TRUE. +float GetTokenFloat(object oPlayer, string sVarName, int bLoadToken = FALSE); +// Gets the value from a token string variable. You can also +// force the value to be loaded directly from the token by setting the +// last parameter to TRUE. +string GetTokenString(object oPlayer, string sVarName, int bLoadToken = FALSE); +// Gets the value from a token location variable. You can also +// force the value to be loaded directly from the token by setting the +// last parameter to TRUE. +location GetTokenLocation(object oPlayer, string sVarName, int bLoadToken = FALSE); + +// Deletes a token integer variable +void DeleteTokenInt(object oPlayer, string sVarName); +// Deletes a token boolean variable +void DeleteTokenBool(object oPlayer, string sVarName); +// Deletes a token float variable +void DeleteTokenFloat(object oPlayer, string sVarName); +// Deletes a token string variable +void DeleteTokenString(object oPlayer, string sVarName); +// Deletes a token location variable +void DeleteTokenLocation(object oPlayer, string sVarName); + +///////////////////////////////////////////////////// +// DeclareTokenInt // +// Call this to declare an integer token, // +// the size is the number of token range // +// to reserve and determines the max size of // +// the integer. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void DeclareTokenInt(string sVarName, int iSlotNum, int bSigned = TRUE, int iSize = 3) +{ + // Check to make sure the slot number is within bounds + if(iSlotNum < 1 || iSlotNum > CINT_MAX_SLOTS) + { + WriteTimestampedLogEntry("[APTS] DeclareTokenInt Error - Invalid Integer Token Slot Number Declaration"); + return; + } + else if((iSize + iSlotNum - 1) > CINT_MAX_SLOTS) + { + WriteTimestampedLogEntry("[APTS] DeclareTokenInt Error - Variable " + + sVarName + "'s declaration has exceeded the max slot value."); + return; + } + string sOldVarName = GetLocalString(GetModule(), "APTS_SLOTNAME_" + IntToString(iSlotNum)); + // Remove any other tokens that previously declared this slot + if(sOldVarName != "") + { + APTS_RemoveOldDeclaration(sOldVarName); + } + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE", APTS_TYPE_INT); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT", iSlotNum); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIGNED", bSigned); + if(iSize > 0 && iSize <= 3) + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE", iSize); + else + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE", 3); + + SetLocalString(GetModule(), "APTS_SLOTNAME_" + IntToString(iSlotNum), sVarName); +} + +///////////////////////////////////////////////////// +// DeclareTokenBool // +// Call this to declare a boolean token. // +// In addition to declaring a slot number, // +// you must also declare a bit position // +// between 0-9. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void DeclareTokenBool(string sVarName, int iSlotNum, int iBitNum) +{ + // Check to make sure the slot number is within bounds + if(iSlotNum < 1 || iSlotNum > CINT_MAX_SLOTS) + { + WriteTimestampedLogEntry("[APTS] DeclareTokenBool Error - Invalid Bool Token Slot Number Declaration"); + return; + } + // Check to make sure the bit position is within bounds + else if(iBitNum < 0 ||iBitNum > CINT_BITS_PER_TOKEN) + { + WriteTimestampedLogEntry("[APTS] DeclareTokenBool Error - Invalid Bool Token Bit Number Declaration"); + return; + } + + string sBoolName = "boolean" + IntToString(iSlotNum); + DeclareTokenInt(sBoolName, iSlotNum, FALSE, 1); + + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE", APTS_TYPE_BOOL); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT", iSlotNum); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_BIT", iBitNum); + +} + +///////////////////////////////////////////////////// +// DeclareTokenFloat // +// Call this to declare a float token. // +// Floats take up 3 slots. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void DeclareTokenFloat(string sVarName, int iSlotNum, int b22Bit = FALSE) +{ + // Check to make sure the slot number is within bounds + if(iSlotNum < 1 || iSlotNum > CINT_MAX_SLOTS) + { + WriteTimestampedLogEntry("[APTS] DeclareTokenFloat Error - Invalid Float Token Slot Number Declaration"); + return; + } + else if(iSlotNum + 2 > CINT_MAX_SLOTS) + { + WriteTimestampedLogEntry("[APTS] DeclareTokenFloatError - Variable " + + sVarName + "'s declaration has exceeded the max slot value."); + return; + } + if(b22Bit) + { + DeclareTokenInt("float_int" + IntToString(iSlotNum), iSlotNum, FALSE, 2); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE", 2); + } + else + { + DeclareTokenInt("float_int" + IntToString(iSlotNum), iSlotNum, FALSE, 3); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE", 3); + } + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE", APTS_TYPE_FLOAT); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT", iSlotNum); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIGNED", FALSE); + SetLocalString(GetModule(), "APTS_SLOTNAME_" + IntToString(iSlotNum), sVarName); + +} +///////////////////////////////////////////////////// +// DeclareTokenString // +// Call this to declare a string token. // +// 2 slots are reserved for up to every 3 // +// characters. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void DeclareTokenString(string sVarName, int iSlotNum, int iMaxStrLength) +{ + // Check to make sure the slot number is within bounds + if(iSlotNum < 1 || iSlotNum > CINT_MAX_SLOTS) + { + WriteTimestampedLogEntry("[APTS] DeclareTokenString Error - Invalid String Token Slot Number Declaration"); + return; + } + + // Get the number of slots required + int iSlotSize = (iMaxStrLength / 3) << 1; + if(iMaxStrLength % 3 > 0) + iSlotSize += 2; + + if((iSlotSize + iSlotNum - 1) > CINT_MAX_SLOTS) + { + WriteTimestampedLogEntry("[APTS] DeclareTokenString Error - Variable " + + sVarName + "'s declaration has exceeded the max slot value."); + return; + } + + string sOldVarName = GetLocalString(GetModule(), "APTS_SLOTNAME_" + IntToString(iSlotNum)); + // Remove any other tokens that previously declared this slot + if(sOldVarName != "") + { + APTS_RemoveOldDeclaration(sOldVarName); + } + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE", APTS_TYPE_STRING); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT", iSlotNum); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE", iSlotSize); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIGNED", FALSE); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_DATA", iMaxStrLength); + + SetLocalString(GetModule(), "APTS_SLOTNAME_" + IntToString(iSlotNum), sVarName); +} + +///////////////////////////////////////////////////// +// DeclareTokenLocation // +// Call this to declare a location token. // +// Pass in TRUE for bCompressedMode if you // +// wish to use the waypoint method in order // +// to save slot space. You can also choose not// +// to save the facing to save more space. // +// Simply pass in FALSE for the bSaveFacing // +// parameter. Also, pass FALSE for the // +// bSaveZPos parameter if you don't want to // +// save the Z-position. For player locations // +// you do not really have to. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void DeclareTokenLocation(string sVarName, int iSlotNum, int bCompressedMode = FALSE, int bSaveFacing = TRUE, int bSaveZPos = TRUE) +{ + // Check to make sure the slot number is within bounds + if(iSlotNum < 1 || iSlotNum > CINT_MAX_SLOTS) + { + WriteTimestampedLogEntry("[APTS] DeclareTokenLocation Error - Invalid Location Token Slot Number Declaration"); + return; + } + int iSlotSize = 6; + if(!bCompressedMode) + iSlotSize += 20; + if(bSaveZPos) + iSlotSize += 2; + if(bSaveFacing) + iSlotSize += 2; + + if((iSlotSize + iSlotNum - 1) > CINT_MAX_SLOTS) + { + WriteTimestampedLogEntry("[APTS] DeclareTokenLocation Error - Variable " + + sVarName + "'s declaration has exceeded the max slot value."); + return; + } + + string sOldVarName = GetLocalString(GetModule(), "APTS_SLOTNAME_" + IntToString(iSlotNum)); + // Remove any other tokens that previously declared this slot + if(sOldVarName != "") + { + APTS_RemoveOldDeclaration(sOldVarName); + } + + string sSlotString = IntToString(iSlotNum); + + int iData = 0; + int iSlotOffset = 0; + + if(bCompressedMode) + { + iSlotOffset = 2; + iData += 1; + DeclareTokenInt("hash_value" + sSlotString, iSlotNum, FALSE, 2); + } + else + { + DeclareTokenString("area_string" + sSlotString, iSlotNum, 32); + iSlotOffset = 22; + } + + // Define floating point variables for position + DeclareTokenFloat("xPos" + sSlotString, iSlotNum + iSlotOffset, TRUE); + DeclareTokenFloat("yPos" + sSlotString, iSlotNum + iSlotOffset + 2, TRUE); + + if(bSaveZPos) + { + DeclareTokenFloat("zPos" + sSlotString, iSlotNum + iSlotOffset + 4, TRUE); + iSlotOffset += 2; + iData += 2; + } + if(bSaveFacing) + { + DeclareTokenFloat("facing" + sSlotString, iSlotNum + iSlotOffset + 4, TRUE); + iData += 4; + } + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE", APTS_TYPE_LOCATION); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT", iSlotNum); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE", iSlotSize); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIGNED", FALSE); + SetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_DATA", iData); + SetLocalString(GetModule(), "APTS_SLOTNAME_" + IntToString(iSlotNum), sVarName); + +} +///////////////////////////////////////////////////// +// SetTokenInt // +// Sets a token integer to a certain value. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void SetTokenInt(object oPlayer, string sVarName, int iValue) +{ + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + int iNumToStore = iValue; + int i; + // Variable was not declared + if(iSlotNum == 0) + { + WriteTimestampedLogEntry("[APTS] SetTokenInt Error - Token integer variable(" + + sVarName + ") was not declared."); + } + else if(iType != APTS_TYPE_INT) + { + WriteTimestampedLogEntry("[APTS] SetTokenInt Error - Token variable(" + + sVarName + ") is not declared as an integer."); + return; + } + else + { + int iIntSize = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE"); + int bSigned = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIGNED"); + // Simple bounds checking + if(!bSigned && iValue < 0) + iNumToStore = 0; + else + { + int iMaxSize = APTS_GetMaxSizeValue(iIntSize, bSigned); + int iMinSize = APTS_GetMinSizeValue(iIntSize, bSigned); + if(iValue > iMaxSize) + iNumToStore = iMaxSize; + else if(iValue < iMinSize) + iNumToStore = iMinSize; + } + AssignCommand(oPlayer, ActionDoCommand(SetCommandable(FALSE, oPlayer))); + // Add a delay between successive set calls + AssignCommand(oPlayer, ActionWait(0.1)); + for(i = 0; i < iIntSize; ++i) + { + // Remove old tokens in the slots + AssignCommand(oPlayer, ActionDoCommand(APTS_RemoveSlotTokens(oPlayer, iSlotNum + i))); + } + if(iNumToStore != 0) + { + // Create the new tokens + AssignCommand(oPlayer, ActionDoCommand(DelayCommand(0.2, APTS_CreateSlotTokens(oPlayer, iNumToStore, iSlotNum, bSigned)))); + } + AssignCommand(oPlayer, ActionDoCommand(SetCommandable(TRUE, oPlayer))); + } + + // Store the value in a local variable as well + SetLocalInt(oPlayer, sVarName, iNumToStore); +} + +///////////////////////////////////////////////////// +// SetTokenBool // +// Sets a token boolean to a certain value. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void SetTokenBool(object oPlayer, string sVarName, int bValue) +{ + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iBitPos = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_BIT"); + + // Variable was not declared + if(iSlotNum == 0) + { + WriteTimestampedLogEntry("[APTS] SetTokenBool Error - Token boolean variable(" + + sVarName + ") was not declared."); + } + // Slot is not declared as a boolean + else if(GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE") != APTS_TYPE_BOOL) + { + WriteTimestampedLogEntry("[APTS] SetTokenBool Error - Token variable(" + + sVarName + ") is not declared as a boolean."); + return; + } + else + { + int iTokenValue = GetTokenInt(oPlayer,GetLocalString(GetModule(), "APTS_SLOTNAME_" + IntToString(iSlotNum))); + + if(bValue != FALSE) + { + if(APTS_IsBitSet(iTokenValue, iBitPos) == FALSE) + iTokenValue += APTS_GetBitValue(iBitPos); + } + else + { + if(APTS_IsBitSet(iTokenValue, iBitPos) == TRUE) + iTokenValue -= APTS_GetBitValue(iBitPos); + } + // Create the new integer token representing 10 booleans + SetTokenInt(oPlayer,GetLocalString(GetModule(), "APTS_SLOTNAME_" + IntToString(iSlotNum)), iTokenValue); + } + + // Store the value in a local variable as well + SetLocalInt(oPlayer, sVarName, bValue); +} + +///////////////////////////////////////////////////// +// SetTokenFloat // +// Sets a token float to a certain value. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void SetTokenFloat(object oPlayer, string sVarName, float fValue) +{ + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + int iSize = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE"); + + int iNumToStore = APTS_FloatToIntRep(fValue, iSize); + // Variable was not declared + if(iSlotNum == 0) + { + WriteTimestampedLogEntry("[APTS] SetTokenFloat Error - Token float variable(" + + sVarName + ") was not declared."); + } + else if(iType != APTS_TYPE_FLOAT) + { + WriteTimestampedLogEntry("[APTS] SetTokenFloat Error - Token variable(" + + sVarName + ") is not declared as a float."); + return; + } + else + SetTokenInt(oPlayer, "float_int" + IntToString(iSlotNum), iNumToStore); + // Store the value in a local variable as well + SetLocalFloat(oPlayer, sVarName, fValue); +} +///////////////////////////////////////////////////// +// SetTokenString // +// Sets a token string to a certain value. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void SetTokenString(object oPlayer, string sVarName, string sValue) +{ + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iSlotSize = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE"); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + int iMaxStrLength = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_DATA"); + + // Variable was not declared + if(iSlotNum == 0) + { + WriteTimestampedLogEntry("[APTS] SetTokenString Error - Token string variable(" + + sVarName + ") was not declared."); + } + else if(iType != APTS_TYPE_STRING) + { + WriteTimestampedLogEntry("[APTS] SetTokenString Error - Token variable(" + + sVarName + ") is not declared as a string."); + return; + } + else + { + int i; + string sSubString = ""; + string sStringToStore = GetStringLeft(sValue, iMaxStrLength); + int iStringRep = 0; + // Gets the number of medium integers needed to represent the string + int iMedIntCount = iSlotSize >> 1; + + AssignCommand(oPlayer, ActionDoCommand(SetCommandable(FALSE, oPlayer))); + // Add a delay between successive set calls + AssignCommand(oPlayer, ActionWait(0.1)); + // Remove old tokens occupying slots + for(i = 0; i < iSlotSize; ++i) + AssignCommand(oPlayer, ActionDoCommand(APTS_RemoveSlotTokens(oPlayer, iSlotNum+i))); + for(i = 0; i < iMedIntCount; ++i) + { + sSubString = GetSubString(sStringToStore, (i*3), 3); + if(sSubString == "") + break; + iStringRep = APTS_ConvertThreeCharToInt(sSubString); + // Create the new tokens + AssignCommand(oPlayer, ActionDoCommand(DelayCommand(0.2, APTS_CreateSlotTokens(oPlayer, iStringRep, iSlotNum+(i*2), FALSE)))); + } + } + AssignCommand(oPlayer, ActionDoCommand(SetCommandable(TRUE, oPlayer))); + // Store the value in a local variable as well + SetLocalString(oPlayer, sVarName, sValue); +} + +///////////////////////////////////////////////////// +// SetTokenLocation // +// Sets a token location to a certain value. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void SetTokenLocation(object oPlayer, string sVarName, location lValue) +{ + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + int iSlotSize = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE"); + int iData = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_DATA"); + + int bCompressedMode = APTS_IsBitSet(iData, 0); + int bSaveFacing = APTS_IsBitSet(iData, 1); + int bSaveZPos = APTS_IsBitSet(iData, 2); + + // Variable was not declared + if(iSlotNum == 0) + { + WriteTimestampedLogEntry("[APTS] SetTokenLocation Error - Token location variable(" + + sVarName + ") was not declared."); + } + else if(iType != APTS_TYPE_LOCATION) + { + WriteTimestampedLogEntry("[APTS] SetTokenLocation Error - Token variable(" + + sVarName + ") is not declared as a location."); + return; + } + else + { + string sAreaTag = GetTag(GetAreaFromLocation(lValue)); + vector vPos = GetPositionFromLocation(lValue); + float fFacing = GetFacingFromLocation(lValue); + string sSlotString = IntToString(iSlotNum); + + //AssignCommand(oPlayer, ActionDoCommand(SetCommandable(FALSE, oPlayer))); + // Add a delay between successive set calls + AssignCommand(oPlayer, ActionWait(0.1)); + int i; + if(bCompressedMode) + { + int iHashValue = APTS_HashAreaTag(sAreaTag, CINT_PRIME_HASH); + string sHashVar = "hash_value" + IntToString(iSlotNum); + AssignCommand(oPlayer, ActionDoCommand(SetTokenInt(oPlayer, sHashVar,iHashValue))); + } + else + { + string sStringVar = "area_string" + IntToString(iSlotNum); + AssignCommand(oPlayer, ActionDoCommand(SetTokenString(oPlayer, sStringVar, sAreaTag))); + } + + AssignCommand(oPlayer, ActionDoCommand(SetTokenFloat(oPlayer, "xPos" + sSlotString, vPos.x))); + AssignCommand(oPlayer, ActionDoCommand(SetTokenFloat(oPlayer, "yPos" + sSlotString, vPos.y))); + if(bSaveZPos) + AssignCommand(oPlayer, ActionDoCommand(SetTokenFloat(oPlayer, "zPos" + sSlotString, vPos.z))); + if(bSaveFacing) + AssignCommand(oPlayer, ActionDoCommand(SetTokenFloat(oPlayer, "facing" + sSlotString, fFacing))); + //AssignCommand(oPlayer, ActionDoCommand(SetCommandable(TRUE, oPlayer))); + + } + // Store the value in a local variable as well + SetLocalLocation(oPlayer, sVarName, lValue); +} + +///////////////////////////////////////////////////// +// GetTokenInt // +// Gets the value from a token integer // +// variable. // +// Returns: int - Value of the token integer // +///////////////////////////////////////////////////// +int GetTokenInt(object oPlayer, string sVarName, int bLoadToken = FALSE) +{ + int iReturnVal = GetLocalInt(oPlayer, sVarName); + + if(bLoadToken || iReturnVal == 0) + { + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int bSigned = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIGNED"); + int iSize = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE"); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + + if(iType != APTS_TYPE_INT) + { + WriteTimestampedLogEntry("[APTS] GetTokenInt Error - Token variable(" + + sVarName + ") is not an integer."); + return 0; + } + else + return APTS_GetTokenIntValue(oPlayer, iSlotNum, iSize, bSigned); + } + else + return iReturnVal; +} + +///////////////////////////////////////////////////// +// GetTokenBool // +// Gets the value from a token boolean // +// variable. // +// Returns: int - Value of the token boolean // +///////////////////////////////////////////////////// +int GetTokenBool(object oPlayer, string sVarName, int bLoadToken = FALSE) +{ + int iReturnVal = GetLocalInt(oPlayer, sVarName); + if(bLoadToken || iReturnVal == 0) + { + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iBitPos = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_BIT"); + int iSlotValue = APTS_GetSlotValue(oPlayer, iSlotNum, FALSE); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + + if(iType != APTS_TYPE_BOOL) + { + WriteTimestampedLogEntry("[APTS] GetTokenBool Error - Token variable(" + + sVarName + ") is not a boolean."); + return 0; + } + else + return APTS_IsBitSet(iSlotValue, iBitPos); + } + else + return iReturnVal; +} + +///////////////////////////////////////////////////// +// GetTokenFloat // +// Gets the value from a token float // +// variable. // +// Returns: float - Value of the token float // +///////////////////////////////////////////////////// +float GetTokenFloat(object oPlayer, string sVarName, int bLoadToken = FALSE) +{ + float fReturnVal = GetLocalFloat(oPlayer, sVarName); + + if(bLoadToken || fReturnVal == 0.0) + { + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iSize = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE"); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + + if(iType != APTS_TYPE_FLOAT) + { + WriteTimestampedLogEntry("[APTS] GetTokenFloat Error - Token variable(" + + sVarName + ") is not a float."); + return 0.0; + } + else + return APTS_IntRepToFloat(GetTokenInt(oPlayer, "float_int" + IntToString(iSlotNum)), iSize); + } + else + return fReturnVal; +} +///////////////////////////////////////////////////// +// GetTokenString // +// Gets the value from a token string // +// variable. // +// Returns: string - Value of the token string // +///////////////////////////////////////////////////// +string GetTokenString(object oPlayer, string sVarName, int bLoadToken = FALSE) +{ + string sReturnVal = GetLocalString(oPlayer, sVarName); + + if(bLoadToken || sReturnVal == "") + { + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iSlotSize = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE"); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + + if(iType != APTS_TYPE_STRING) + { + WriteTimestampedLogEntry("[APTS] GetTokenString Error - Token variable(" + + sVarName + ") is not a string."); + return ""; + } + else + { + int iMedIntCount = iSlotSize >> 1; + int i; + int iMedValue; // value of the medium integer + sReturnVal = ""; + + for(i = 0; i < iMedIntCount; ++i) + { + iMedValue = APTS_GetTokenIntValue(oPlayer, iSlotNum+(i*2), 2, FALSE); + if(iMedValue != 0) + { + sReturnVal += APTS_ConvertIntToThreeChar(iMedValue); + } + } + } + } // end if + + return sReturnVal; +} +///////////////////////////////////////////////////// +// GetTokenLocation // +// Gets the value from a token location // +// variable. // +// Returns: location - Value of the token location // +///////////////////////////////////////////////////// +location GetTokenLocation(object oPlayer, string sVarName, int bLoadToken = FALSE) +{ + location lReturnVal = GetLocalLocation(oPlayer, sVarName); + + if(bLoadToken || GetPositionFromLocation(lReturnVal) == Vector()) + { + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iSize = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE"); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + int iData = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_DATA"); + + int bCompressedMode = APTS_IsBitSet(iData, 0); + int bSaveFacing = APTS_IsBitSet(iData, 1); + int bSaveZPos = APTS_IsBitSet(iData, 2); + + if(iType != APTS_TYPE_LOCATION) + { + WriteTimestampedLogEntry("[APTS] GetTokenLocation Error - Token variable(" + + sVarName + ") is not a location."); + } + else + { + object oArea; + vector vPos; + float fFacing; + string sSlotString = IntToString(iSlotNum); + int i = 0; + + if(bCompressedMode) + { + int iHashValue = APTS_GetTokenIntValue(oPlayer, iSlotNum, 2, FALSE); + oArea = GetArea(GetObjectByTag("APTS_AREA_LOCATE", ++i)); + while(GetIsObjectValid(oArea) && APTS_HashAreaTag(GetTag(oArea), CINT_PRIME_HASH) != iHashValue) + { + oArea = GetArea(GetObjectByTag("APTS_AREA_LOCATE", ++i)); + } + } + else + oArea = GetObjectByTag(GetTokenString(oPlayer, "area_string" + sSlotString)); + + vPos.x = GetTokenFloat(oPlayer, "xPos" + sSlotString); + vPos.y = GetTokenFloat(oPlayer, "yPos" + sSlotString); + if(bSaveZPos) + vPos.z = GetTokenFloat(oPlayer, "zPos" + sSlotString); + else + vPos.z = 0.0f; + + if(bSaveFacing) + fFacing = GetTokenFloat(oPlayer, "facing" + sSlotString); + else + fFacing = 0.0f; + + lReturnVal = Location(oArea, vPos, fFacing); + } + } + return lReturnVal; +} + +///////////////////////////////////////////////////// +// DeleteTokenInt // +// Deletes a token integer variable. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void DeleteTokenInt(object oPlayer, string sVarName) +{ + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iIntSize = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE"); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + + // Variable was not declared + if(iSlotNum == 0) + { + WriteTimestampedLogEntry("[APTS] DeleteTokenInt Error - Token integer variable(" + + sVarName + ") was not declared."); + return; + } + else if(iType != APTS_TYPE_INT) + { + WriteTimestampedLogEntry("[APTS] DeleteTokenInt Error - Token variable(" + + sVarName + ") is not an integer."); + return; + } + int i; + for(i = 0; i < iIntSize; ++i) + { + // Remove old tokens in the slots + APTS_RemoveSlotTokens(oPlayer, iSlotNum + i); + } + DeleteLocalInt(oPlayer, sVarName); +} + +///////////////////////////////////////////////////// +// DeleteTokenBool // +// Deletes a token boolean variable. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void DeleteTokenBool(object oPlayer, string sVarName) +{ + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iBitPos = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_BIT"); + + int iTokenValue = GetTokenInt(oPlayer,GetLocalString(GetModule(), "APTS_SLOTNAME_" + IntToString(iSlotNum))); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + + // Variable was not declared + if(iSlotNum == 0) + { + WriteTimestampedLogEntry("[APTS] DeleteTokenBool Error - Token boolean variable(" + + sVarName + ") was not declared."); + return; + } + else if(iType != APTS_TYPE_BOOL) + { + WriteTimestampedLogEntry("[APTS] DeleteTokenBool Error - Token variable(" + + sVarName + ") is not a boolean."); + return; + } + if(APTS_IsBitSet(iTokenValue, iBitPos) == TRUE) + { + iTokenValue -= APTS_GetBitValue(iBitPos); + SetTokenInt(oPlayer,GetLocalString(GetModule(), "APTS_SLOTNAME_" + IntToString(iSlotNum)), iTokenValue); + } + DeleteLocalInt(oPlayer, sVarName); +} + +///////////////////////////////////////////////////// +// DeleteTokenFloat // +// Deletes a token float variable. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void DeleteTokenFloat(object oPlayer, string sVarName) +{ + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + + // Variable was not declared + if(iSlotNum == 0) + { + WriteTimestampedLogEntry("[APTS] DeleteTokenFloat Error - Token float variable(" + + sVarName + ") was not declared."); + return; + } + else if(iType != APTS_TYPE_FLOAT) + { + WriteTimestampedLogEntry("[APTS] DeleteTokenFloat Error - Token variable(" + + sVarName + ") is not a float."); + return; + } + // Remove old tokens in the slots + DeleteTokenInt(oPlayer, "float_int" + IntToString(iSlotNum)); + DeleteLocalFloat(oPlayer, sVarName); +} +///////////////////////////////////////////////////// +// DeleteTokenString // +// Deletes a token string variable. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void DeleteTokenString(object oPlayer, string sVarName) +{ + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + int iSlotSize = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE"); + + // Variable was not declared + if(iSlotNum == 0) + { + WriteTimestampedLogEntry("[APTS] DeleteTokenString Error - Token string variable(" + + sVarName + ") was not declared."); + return; + } + else if(iType != APTS_TYPE_STRING) + { + WriteTimestampedLogEntry("[APTS] DeleteTokenString Error - Token variable(" + + sVarName + ") is not a string."); + return; + } + // Remove old tokens in the slots + int i; + for(i = 0; i < iSlotSize; ++i) + APTS_RemoveSlotTokens(oPlayer, iSlotNum+i); + DeleteLocalString(oPlayer, sVarName); +} +///////////////////////////////////////////////////// +// DeleteTokenLocation // +// Deletes a token location variable. // +// Returns: Nothing // +///////////////////////////////////////////////////// +void DeleteTokenLocation(object oPlayer, string sVarName) +{ + int iSlotNum = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + int iSize = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE"); + int iType = GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + + // Variable was not declared + if(iSlotNum == 0) + { + WriteTimestampedLogEntry("[APTS] DeleteTokenLocation Error - Token location variable(" + + sVarName + ") was not declared."); + return; + } + else if(iType != APTS_TYPE_LOCATION) + { + WriteTimestampedLogEntry("[APTS] DeleteTokenLocation Error - Token variable(" + + sVarName + ") is not a location."); + return; + } + // Remove old tokens in the slots + int i; + for(i = 0; i < iSize; ++i) + APTS_RemoveSlotTokens(oPlayer, iSlotNum+i); + DeleteLocalLocation(oPlayer, sVarName); +} + + + + + + + diff --git a/_module/nss/apts_inc_toksys.nss b/_module/nss/apts_inc_toksys.nss new file mode 100644 index 0000000..5db8f46 --- /dev/null +++ b/_module/nss/apts_inc_toksys.nss @@ -0,0 +1,794 @@ +/**************************************************** + Persistent Token Helper Include Script + apts_inc_toksys + + Last Updated: September 26, 2002 + + ***Ambrosia Persistent Token System*** + Created by Mojo(Allen Sun) + + This script includes helper functions that are + called by the accessor functions in the + apts_inc_ptok script. + +****************************************************/ +/* Function Declarations */ + +// Gets the decimal value of a bit position +int APTS_GetBitValue(int iBitPos); +// Returns whether or not a specified binary bit of a number is set +int APTS_IsBitSet(int iNumber, int iBitPos); +// Gets the maximum value of iSize number of tokens +int APTS_GetMaxSizeValue(int iSize, int bSigned); +// Gets the minimum value of iSize number of tokens +int APTS_GetMinSizeValue(int iSize, int bSigned); +// Returns the number of tokens needed to store the number +int APTS_GetTokenSpace(int iNumber, int bSigned); +// Creates a token on the player and puts it in the token box +object APTS_CreateTokenOnPlayer(object oPlayer, int iSlot, int iType, int iValue); +// Converts a base ten number to any base and returns it as a string +string APTS_ConvertNumberToBaseString(int iNumber, int iBase); +// Gets the total integer value of tokens starting at a slot number +int APTS_GetTokenIntValue(object oPlayer, int iSlotNum, int iSize, int bSigned); +// Gets the value of the token at a certain slot +int APTS_GetSlotValue(object oPlayer, int iSlotNum, int bSigned); +// Converts an integer into a binary string +string APTS_IntToBinaryString(int iValue, int bAlignBit = 0); +// Converts a binary string into an integer +int APTS_BinaryStringToInt(string sBinary, int bSigned = TRUE); +// Converts a binarty string into a fractional value +float APTS_BinaryStringToDecimal(string sBinary); +// Calculates a number raised to a certain exponent +float APTS_Pow(float fValue, int iExp); +// Removes trailing zeroes in a binary string +string APTS_RemoveTrailingZeroes(string sBinary); +// Converts a floating point number into an integer representation using the +// 32-bit IEEE FP format +int APTS_FloatToIntRep(float fValue, int iSize); +// Converts an integer representation back into a floating point number +float APTS_IntRepToFloat(int iValue, int iSize); +// Removes all declaration information for a variable +void APTS_RemoveOldDeclaration(string sVarName); +// Converts a string of up to three characters into an medium integer +int APTS_ConvertThreeCharToInt(string sString); +// Converts a medium integer value into a three character string +string APTS_ConvertIntToThreeChar(int iMedValue); + +/* Function Definitions */ + + +string APTS_GetResRefFromTag(string sTag) +{ + return GetStringLowerCase(GetStringLeft(sTag, 16)); +} + +object APTS_FindItemInInventoryByTag(object oTarget, string sTag, int iNth = 0) +{ + int iCount = 0; + object oCurrentObject = OBJECT_INVALID; + + if(GetHasInventory(oTarget) == FALSE) + return oCurrentObject; + + oCurrentObject = GetFirstItemInInventory(oTarget); + + while(GetIsObjectValid(oCurrentObject) == TRUE) + { + if(GetTag(oCurrentObject) == sTag) + { + if(iCount == iNth) + return oCurrentObject; + else + ++iCount; + } + oCurrentObject = GetNextItemInInventory(oTarget); + } + return oCurrentObject; + +} +int APTS_GetBitValue(int iBitPos) +{ + return FloatToInt(pow(2.0, IntToFloat(iBitPos))); +} + +int APTS_IsBitSet(int iNumber, int iBitPos) +{ + return ((iNumber & APTS_GetBitValue(iBitPos)) > 0); +} + +int APTS_GetTokenSpace(int iNumber, int bSigned) +{ + if(bSigned) + { + if(iNumber > CINT_MAX_SIGNED_TWO) + return 3; + else if(iNumber > CINT_MAX_SIGNED_ONE) + return 2; + else if(iNumber > 0) + return 1; + else if(iNumber == 0) + return 0; + else if(iNumber >= (-CINT_MAX_SIGNED_ONE-1)) + return 1; + else if(iNumber >= (-CINT_MAX_SIGNED_TWO-1)) + return 2; + else + return 3; + } + else + { + if(iNumber > CINT_MAX_UNSIGNED_TWO) + return 3; + else if(iNumber > CINT_MAX_UNSIGNED_ONE) + return 2; + else if(iNumber > 0) + return 1; + else + return 0; + } +} +int APTS_GetMaxSizeValue(int iSize, int bSigned) +{ + if(bSigned) + { + switch(iSize) + { + case 0: + return 0; + case 1: + return CINT_MAX_SIGNED_ONE; + case 2: + return CINT_MAX_SIGNED_TWO; + case 3: + return CINT_MAX_SIGNED_THREE; + default: + return MAX_INT; + } + } + else + { + switch(iSize) + { + case 0: + return 0; + case 1: + return CINT_MAX_UNSIGNED_ONE; + case 2: + return CINT_MAX_UNSIGNED_TWO; + case 3: + return CINT_MAX_UNSIGNED_THREE; + default: + return MAX_INT; + } + } + return 0; +} +int APTS_GetMinSizeValue(int iSize, int bSigned) +{ + if(bSigned) + { + switch(iSize) + { + case 0: + return 0; + case 1: + return (-CINT_MAX_SIGNED_ONE-1); + case 2: + return (-CINT_MAX_SIGNED_TWO-1); + case 3: + return (-CINT_MAX_SIGNED_THREE-1); + default: + return (-MAX_INT-1); + } + } + return 0; +} +object APTS_CreateTokenOnPlayer(object oPlayer, int iSlot, int iType, int iValue) +{ + if(iValue <= 0) + return OBJECT_INVALID; + object oTokenBox = APTS_FindItemInInventoryByTag(oPlayer, APTS_TOKEN_BOX_TAG); + if(!GetIsObjectValid(oTokenBox)) + { + oTokenBox = CreateItemOnObject(APTS_GetResRefFromTag(APTS_TOKEN_BOX_TAG), oPlayer); + if(!GetIsObjectValid(oTokenBox)) + return OBJECT_INVALID; + } + string sTokenTag = APTS_TOKEN_TAG + "_S"; + + if(iSlot < 100) + sTokenTag += "0"; + if(iSlot < 10) + sTokenTag += "0"; + sTokenTag += (IntToString(iSlot) + "_"); + if(iType < 10) + sTokenTag += "0"; + sTokenTag += IntToString(iType); + string sTokenResRef = APTS_GetResRefFromTag(sTokenTag); + + int i = 1; + object oToken = CreateItemOnObject(sTokenResRef, oTokenBox, iValue); + // Token could not be created + while(GetItemPossessor(oToken) == OBJECT_INVALID && GetIsObjectValid(oTokenBox)) + { + DestroyObject(oToken); + oToken = CreateItemOnObject(sTokenResRef, oTokenBox, iValue); + oTokenBox = APTS_FindItemInInventoryByTag(oPlayer, APTS_TOKEN_BOX_TAG, i++); + } + if(GetItemPossessor(oToken) == OBJECT_INVALID) + { + DestroyObject(oToken); + oTokenBox = CreateItemOnObject(APTS_GetResRefFromTag(APTS_TOKEN_BOX_TAG), oPlayer); + if(!GetIsObjectValid(oTokenBox)) + return OBJECT_INVALID; + oToken = CreateItemOnObject(sTokenResRef, oTokenBox, iValue); + } + SetLocalObject(oToken, "ats_obj_possessor", oPlayer); + + return oToken; + +} +// Converts a base ten number to any base and returns it as a string +string APTS_ConvertNumberToBaseString(int iNumber, int iBase) +{ + string sRemainderString = ""; + int iQuotient = iNumber; + int iRemainder; + int iAddedZeroes; + int i; + + while(iQuotient != 0) + { + iRemainder = abs(iQuotient % iBase); + iAddedZeroes = GetStringLength(IntToString(CINT_NUMBER_BASE-1)) - GetStringLength(IntToString(iRemainder)); + sRemainderString = IntToString(iRemainder) + sRemainderString; + for(i = 0; i < iAddedZeroes; ++i) + { + sRemainderString = "0" + sRemainderString; + } + iQuotient = iQuotient / iBase; + } + if(iNumber < 0) + sRemainderString = "-" + sRemainderString; + return sRemainderString; +} + +void APTS_CreateSlotTokens(object oPlayer, int iValue, int iSlot, int bSigned = TRUE ) +{ + int iNumTokens = APTS_GetTokenSpace(iValue, bSigned); + int i, iType; + int iFieldValue; + int iTokenSize; + int bPlotFlag = TRUE; + object oCreatedToken; + + string sBinaryString = APTS_IntToBinaryString(iValue, CINT_BITS_PER_TOKEN); + + for(i = 0; i < iNumTokens; ++i) + { + iFieldValue = APTS_BinaryStringToInt(GetStringRight(sBinaryString, CINT_BITS_PER_TOKEN), FALSE); + if(sBinaryString == "" && bSigned) + { + // Create a special token to indicate a positive sign + iFieldValue = CINT_TOKENS_FOR_BASE * 198; + } + + sBinaryString = GetStringLeft(sBinaryString, GetStringLength(sBinaryString) - CINT_BITS_PER_TOKEN); + + for(iType = 0; iType < CINT_TOKENS_FOR_BASE; ++iType) + { + bPlotFlag = TRUE; + + // Find which token to use to store value + if(iFieldValue <= ((iType+1) * 198)) + { + + iTokenSize = iFieldValue - (198 * iType); + if(iTokenSize > 99) + { + bPlotFlag = FALSE; + iTokenSize -= 99; + } + + oCreatedToken = APTS_CreateTokenOnPlayer(oPlayer, iSlot + i, iType, iTokenSize); + SetPlotFlag(oCreatedToken, bPlotFlag); + break; + } + } + + } +} +void APTS_RemoveSlotTokens(object oPlayer, int iSlotNum) +{ + object oItem; + string sPartialTokenTag = APTS_TOKEN_TAG + "_S"; + if(iSlotNum < 100) + sPartialTokenTag += "0"; + if(iSlotNum < 10) + sPartialTokenTag += "0"; + sPartialTokenTag += (IntToString(iSlotNum) + "_"); + + oItem = GetFirstItemInInventory(oPlayer); + while(GetIsObjectValid(oItem)) + { + // Found a matching token to remove + if(FindSubString(GetTag(oItem), sPartialTokenTag) == 0) + { + DestroyObject(oItem); + } + oItem = GetNextItemInInventory(oPlayer); + } +} +int APTS_GetTokenIntValue(object oPlayer, int iSlotNum, int iSize, int bSigned) +{ + int iTotalValue = 0; + int bFoundToken = FALSE; + int iSlotValue; + int i; + + for(i = iSize-1; i >= 0; --i) + { + iSlotValue = APTS_GetSlotValue(oPlayer, iSlotNum+i, FALSE); + if(iSlotValue != 0) + { + if(bSigned) + { + if(iSlotValue == CINT_TOKENS_FOR_BASE * 198) + iSlotValue = 0; + else if(bFoundToken == FALSE) + iSlotValue = APTS_GetSlotValue(oPlayer, iSlotNum+i, TRUE); + } + bFoundToken = TRUE; + iTotalValue += (iSlotValue*FloatToInt(pow(IntToFloat(CINT_NUMBER_BASE), IntToFloat(i)))); + } + } + return iTotalValue; +} + +int APTS_GetSlotValue(object oPlayer, int iSlotNum, int bSigned) +{ + string sItemTag; + + int iTokenType; + int iFixedTokenType = -1; + + int iTokenValue = 0; + int bFoundToken = FALSE; + int bPlotFlag = FALSE; + + string sPartialTokenTag = APTS_TOKEN_TAG + "_S"; + if(iSlotNum < 100) + sPartialTokenTag += "0"; + if(iSlotNum < 10) + sPartialTokenTag += "0"; + sPartialTokenTag += (IntToString(iSlotNum) + "_"); + + // Search through inventory looking for tokens + object oItem = GetFirstItemInInventory(oPlayer); + while(GetIsObjectValid(oItem)) + { + sItemTag = GetTag(oItem); + // Found a matching token + if(FindSubString(sItemTag, sPartialTokenTag) == 0) + { + iTokenType = StringToInt(GetStringRight(sItemTag, 2)); + if(!bFoundToken) + { + iTokenValue = (198 * iTokenType) + GetNumStackedItems(oItem); + + bFoundToken = TRUE; + iFixedTokenType = iTokenType; + bPlotFlag = GetPlotFlag(oItem); + } + else if(iFixedTokenType == iTokenType) + { + iTokenValue += GetNumStackedItems(oItem); + if(GetPlotFlag(oItem) == TRUE) + bPlotFlag = TRUE; + } + else + DestroyObject(oItem); + } + oItem = GetNextItemInInventory(oPlayer); + } + + if(iTokenValue > 0 && bPlotFlag == FALSE) + { + iTokenValue += 99; + } + + // If Signed, convert to negative number by two's complement + if(bSigned && (iTokenValue > APTS_GetBitValue(CINT_BITS_PER_TOKEN-1)-1)) + iTokenValue -= APTS_GetBitValue(CINT_BITS_PER_TOKEN); + + return iTokenValue; +} + +string APTS_IntToBinaryString(int iValue, int iAlignBit = 0) +{ + string sHexString = IntToHexString(iValue); + string sBinaryString = ""; + string sChar; + int i; + for(i = 2; i < 10; ++i) + { + sChar = GetSubString(sHexString, i, 1); + if(sChar == "0") + sBinaryString += "0000"; + else if(sChar == "1") + sBinaryString += "0001"; + else if(sChar == "2") + sBinaryString += "0010"; + else if(sChar == "3") + sBinaryString += "0011"; + else if(sChar == "4") + sBinaryString += "0100"; + else if(sChar == "5") + sBinaryString += "0101"; + else if(sChar == "6") + sBinaryString += "0110"; + else if(sChar == "7") + sBinaryString += "0111"; + else if(sChar == "8") + sBinaryString += "1000"; + else if(sChar == "9") + sBinaryString += "1001"; + else if(sChar == "a") + sBinaryString += "1010"; + else if(sChar == "b") + sBinaryString += "1011"; + else if(sChar == "c") + sBinaryString += "1100"; + else if(sChar == "d") + sBinaryString += "1101"; + else if(sChar == "e") + sBinaryString += "1110"; + else // F + sBinaryString += "1111"; + } + + + // Remove Leading Zeroes + while(GetStringLeft(sBinaryString, 1) == "0") + { + sBinaryString = GetStringRight(sBinaryString, GetStringLength(sBinaryString) - 1); + } + if(iAlignBit > 0) + { + int iAddedZeroes = GetStringLength(sBinaryString) % iAlignBit; + if(iAddedZeroes > 0) + iAddedZeroes = iAlignBit - iAddedZeroes; + // Fill with ones if negative + if(iValue < 0) + { + for(i = 0; i < iAddedZeroes; ++i) + sBinaryString = "1" + sBinaryString; + } + else // Fill with zeroes + { + for(i = 0; i < iAddedZeroes; ++i) + sBinaryString = "0" + sBinaryString; + } + + } + return sBinaryString; +} + +int APTS_BinaryStringToInt(string sBinary, int bSigned = TRUE) +{ + int iNumBits = GetStringLength(sBinary); + string sChar; + int iTotal = 0; + int i; + for(i = iNumBits; i > 0; --i) + { + sChar = GetSubString(sBinary, iNumBits - i, 1); + if(sChar == "1") + iTotal += APTS_GetBitValue(i-1); + } + if(bSigned && (iTotal > APTS_GetBitValue(iNumBits-1)-1)) + iTotal -= APTS_GetBitValue(iNumBits); + + return iTotal; + + +} + +float APTS_BinaryStringToDecimal(string sBinary) +{ + int iLength = GetStringLength(sBinary); + int i; + + float fTotal = 0.0; + float fDivider = 1.0; + + for(i = 0; i < iLength; ++i) + { + fDivider /= 2.0; + if(GetSubString(sBinary, i, 1) == "1") + fTotal += fDivider; + } + return fTotal; +} +float APTS_Pow(float fValue, int iExp) +{ + int i; + float fTotal = 1.0; + + if(iExp < 0) + { + fTotal = 1.0; + for(i = 0; i < -iExp; ++i) + { + fTotal /= fValue; + } + } + else + { + for(i = 0; i < iExp; ++i) + { + fTotal *= fValue; + } + } + return fTotal; +} +string APTS_RemoveTrailingZeroes(string sBinary) +{ + string sTruncString = sBinary; + + while(GetStringRight(sTruncString, 1) == "0") + { + sTruncString = GetStringLeft(sTruncString, GetStringLength(sTruncString) - 1); + } + return sTruncString; + +} +int APTS_FloatToIntRep(float fValue, int iSize) +{ + if(fValue == 0.0) + return 0; + float fAbsValue = fabs(fValue); + + string sFloatString = FloatToString(fAbsValue); + string sIntPartBinary = ""; + int iMantissaSize; + int iExpOffset; + int iExpSize; + + if(iSize == 2) + { + iMantissaSize = 15; + iExpOffset = 31; + iExpSize = 6; + } + else if(iSize == 3) + { + iMantissaSize = 23; + iExpOffset = 127; + iExpSize = 8; + } + + while(GetStringLeft(sFloatString, 1) == " ") + { + sFloatString = GetStringRight(sFloatString, GetStringLength(sFloatString) - 1); + } + // Get Integer part + sFloatString = GetStringLeft(sFloatString, FindSubString(sFloatString, ".")); + float fIntPart = StringToFloat(sFloatString); + + float fDiv = fIntPart; + while(fDiv >= 1.0) + { + sFloatString = FloatToString(fDiv); + while(GetStringLeft(sFloatString, 1) == " ") + { + sFloatString = GetStringRight(sFloatString, GetStringLength(sFloatString) - 1); + } + + sFloatString = GetStringLeft(sFloatString, FindSubString(sFloatString, ".")); + if(StringToInt(GetStringRight(sFloatString, 1)) % 2 == 1) + sIntPartBinary = "1" + sIntPartBinary; + else + sIntPartBinary = "0" + sIntPartBinary; + + fDiv = StringToFloat(sFloatString); + fDiv /= 2.0; + } + + int iExp = 0; + + float fDecimalPart = fAbsValue - fIntPart; + string sFloatBinary; + + int i; + + // Remove the leading "1" + string sMantissa = GetStringRight(sIntPartBinary, GetStringLength(sIntPartBinary) - 1); + while(GetStringLength(sMantissa) < iMantissaSize) + { + fDecimalPart *= 2; + if(fDecimalPart >= 1.0) + { + sMantissa += "1"; + fDecimalPart -= 1; + } + else + { + if(GetStringLength(sMantissa) > 0 || GetStringLength(sIntPartBinary) > 0) + sMantissa += "0"; + else + iExp -= 1; + } + } + + if(GetStringLength(sIntPartBinary) > 0) + iExp = GetStringLength(sIntPartBinary) - 1; + + sMantissa = GetStringLeft(sMantissa, iMantissaSize); + + sFloatBinary = IntToString(fValue < 0.0); + sFloatBinary += (APTS_IntToBinaryString(iExp + iExpOffset, iExpSize) + sMantissa); + + return APTS_BinaryStringToInt(sFloatBinary); +} + +float APTS_IntRepToFloat(int iValue, int iSize) +{ + if(iValue == 0) + return 0.0; + int iMantissaSize; + int iExpOffset; + int iExpSize; + string sBinaryString; + + if(iSize == 2) + { + iMantissaSize = 15; + iExpOffset = 31; + iExpSize = 6; + sBinaryString = APTS_IntToBinaryString(iValue, 22); + sBinaryString = GetStringRight(sBinaryString, 22); + } + else if(iSize == 3) + { + iMantissaSize = 23; + iExpOffset = 127; + iExpSize = 8; + sBinaryString = APTS_IntToBinaryString(iValue, 32); + } + string sExpPart = GetSubString(sBinaryString, 1, iExpSize); + string sMantissaPart = GetSubString(sBinaryString, iExpSize+1, iMantissaSize); + + int iExp; + int iIntPart; + float fDecPart; + float fResult; + + + iExp = APTS_BinaryStringToInt(sExpPart, FALSE) - iExpOffset; + + if(iExp < iMantissaSize) + { + if(iExp >= 0) + { + iIntPart = APTS_BinaryStringToInt(GetStringLeft("1" + sMantissaPart, iExp + 1), FALSE); + sMantissaPart = GetStringRight(sMantissaPart, iMantissaSize - iExp); + } + else + { + iIntPart = 0; + int i; + for(i = 0; i < -iExp; ++i) + { + sMantissaPart = "0" + sMantissaPart; + } + } + + fDecPart = APTS_BinaryStringToDecimal(APTS_RemoveTrailingZeroes(sMantissaPart)); + fResult = iIntPart + fDecPart; + } + else + { + iIntPart = 1; + fDecPart = APTS_BinaryStringToDecimal(APTS_RemoveTrailingZeroes(sMantissaPart)); + fResult = iIntPart + fDecPart; + fResult *= APTS_Pow(2.0, iExp); + } + if(GetStringLeft(sBinaryString, 1) == "1") + fResult = -fResult; + return fResult; +} + +void APTS_RemoveOldDeclaration(string sVarName) +{ + if(GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE") == APTS_TYPE_BOOL) + { + string sBoolName = "boolean" + IntToString(GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT")); + APTS_RemoveOldDeclaration(sBoolName); + } + + else if(GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE") == APTS_TYPE_LOCATION) + { + string sSlotString = IntToString(GetLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT")); + APTS_RemoveOldDeclaration("area_string" + sSlotString); + APTS_RemoveOldDeclaration("xPos" + sSlotString); + APTS_RemoveOldDeclaration("yPos" + sSlotString); + APTS_RemoveOldDeclaration("zPos" + sSlotString); + APTS_RemoveOldDeclaration("facing" + sSlotString); + + } + DeleteLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SLOT"); + DeleteLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIZE"); + DeleteLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_SIGNED"); + DeleteLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_BIT"); + DeleteLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_TYPE"); + DeleteLocalInt(GetModule(), "APTS_ITOK_" + sVarName + "_DATA"); +} + +int APTS_ConvertThreeCharToInt(string sString) +{ + int i; + string sChar; + string sIntRep = ""; + int iValue; + + for(i = 0; i < 3; ++i) + { + // Gets a single character of the string + sChar = GetSubString(sString, i, 1); + if(sChar == "") + break; + // Converts the character into an integer by use of a lookup table + iValue = FindSubString(APTS_CHAR_TABLE, sChar)+1; + if(iValue < 10) + sIntRep += "0"; + sIntRep += IntToString(iValue); + } + return StringToInt(sIntRep); +} + +string APTS_ConvertIntToThreeChar(int iMedValue) +{ + string sResultString = ""; + string sIntRep = IntToString(iMedValue); + int i; + int iValue; + + for(i = 0; i < 3; ++i) + { + // Only get the first character if the string is odd sized + if(i == 0 && (GetStringLength(sIntRep)%2 == 1)) + { + iValue = StringToInt(GetSubString(sIntRep, 0, 1)); + } + else + iValue = StringToInt(GetSubString(sIntRep, i*2, 2)); + + sResultString += GetSubString(APTS_CHAR_TABLE, iValue-1, 1); + } + return sResultString; +} + +int APTS_HashAreaTag(string sTag, int iPrimeNum) +{ +// Roating hash function + int iHash, i; + int iLength = GetStringLength(sTag); + string sChar; + + iHash = iLength; + + for (i=0; i < iLength; ++i) + { + sChar = GetSubString(sTag, i, 1); + iHash = (iHash<<8)^(iHash>>24)^(FindSubString(APTS_CHAR_TABLE, sChar)+1); + } + return (iHash % iPrimeNum); +} + + +int APTS_HashString(string sString, int iPrimeNum) +{ + return APTS_HashAreaTag(sString, iPrimeNum); + +} diff --git a/_module/nss/arena_scoreboard.nss b/_module/nss/arena_scoreboard.nss new file mode 100644 index 0000000..b77d609 --- /dev/null +++ b/_module/nss/arena_scoreboard.nss @@ -0,0 +1,251 @@ +#include "rank" + +void main() +{ + + // Get the first player + object oPC = GetLastUsedBy(); + //object oPC = GetFirstPC(); + object oMod = GetModule(); + float fPerc; + int iHeav; + int iHell; + int iDied; + int iKilled; + int hVLoss; + int hLLoss; + int iHit; + int iPCdamage; + int iHvcas; + int iHlcas; + int iHvTotCas; + int iHlTotCas; + int aDamage; + int iDice; + int iSwing; + int iHitPerc; + int iHWkills; + int iHWdeaths; + int iHWdam; + int iHWhit; + int iHWswing; + int iHWPCkillTot; + int iHWPCdeathTot; + int iSwitch = GetLocalInt(oMod, "score_switch"); + int iChamp = GetLocalInt(oPC, "champ_won"); + int iRankNo = GetLocalInt(oPC, "status"); + + + string sPRes2; + string sPRes; + string oRank; + string oDam; + string iMessage; + string SpeakText; + string sChamp = GetLocalString(oMod, "sChamp"); + + if (GetLocalInt(oMod, "mod_mode")==1) +{ +PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("*** Not used in campaign manager mode ***", oPC); + return; +} + + PlaySound("gui_select"); + + //generate message + + iDice = d8(); + switch(iDice) + { + case 1: {iMessage = "Victory is written in blood!";}break; + case 2: {iMessage = "Winning a war is about making others die for their country!";}break; + case 3: {iMessage = "A stained soul is a remorseless weapon!";}break; + case 4: {iMessage = "Honour and glory are mortal enemies!";}break; + case 5: {iMessage = "A strong sword is useless to a weak heart!";}break; + case 6: {iMessage = "A blunt sword and a sharp wit are better than the converse!";}break; + case 7: {iMessage = "Love and war know nothing true of each other!";}break; + case 8: {iMessage = "Good and evil can not exist without each other!";}break; + case 9: {iMessage = "The blood of the earth begets the blood of mankind!";}break; + case 10: {iMessage = "Indifference is the true enemy of hatred!";}break; + } + if (iChamp==1) + {iMessage = "Congratulations! You are the Holy War Champion";} + + if (iSwitch==1) + { + iHvcas = GetLocalInt(oMod, "heav_cas"); + iHlcas = GetLocalInt(oMod, "hell_cas"); + iHeav = GetLocalInt (oMod,"heav_score"); + iHell = GetLocalInt (oMod,"hell_score"); + hVLoss = GetLocalInt(oMod, "heav_loss"); + hLLoss = GetLocalInt(oMod, "hell_loss"); + iHvTotCas = GetLocalInt(oMod, "iHvTotCas"); + iHlTotCas = GetLocalInt(oMod, "iHlTotCas"); + + + + SpeakText = "\n====== Holy War ======\n"; + SpeakText += "The Champions of Light\n\n"; + SpeakText += "Wins/Losses: "; + SpeakText += IntToString(iHeav); + SpeakText += " / "; + SpeakText += IntToString(hVLoss); + SpeakText += "\nCurrent Casualties: "; + SpeakText += IntToString(iHvcas); + SpeakText += "\nTOTAL Casualties: "; + SpeakText += IntToString(iHvTotCas); + SpeakText += "\n\n-----------------------\n"; + SpeakText += "The Champions of Darkness\n\n"; + SpeakText += "Wins/Losses: "; + SpeakText += IntToString(iHell); + SpeakText += " / "; + SpeakText += IntToString(hLLoss); + SpeakText += "\nCurrent Casualties: "; + SpeakText += IntToString(iHlcas); + SpeakText += "\nTOTAL Casualties: "; + SpeakText += IntToString(iHlTotCas); + SpeakText += "\n--------------------------\n"; + SpeakText += sChamp; + + SpeakString(SpeakText); + } + else if (iSwitch==2) + { + + // initialise stat integers + + + sPRes = GetResRef(oPC); + sPRes2 =sPRes+"_HWd"; + sPRes+="_HWk"; + + iHWkills = GetLocalInt(oMod, sPRes); + iHWdeaths = GetLocalInt(oMod, sPRes2); + iHWdam = GetLocalInt(oPC, "pc_HWdam"); + iHWswing = GetLocalInt(oPC, "pc_HWswing"); + iHWhit = GetLocalInt(oPC, "pc_HWhit"); + iHWPCkillTot = GetLocalInt(oPC, "iHWPCkillTot"); + iHWPCdeathTot = GetLocalInt(oPC, "iHWPCdeathTot"); + + // Get player rank details + + GetRank(oPC); + + // Calculate average damage (divide by zero will crash the script) + + if (iHWhit!=0) + {aDamage = iHWdam / iHWhit;} + else + {aDamage = 0;} + + // Calculate Hit % + + if (iHWswing!=0) + { + fPerc = (IntToFloat(iHWhit) / IntToFloat(iHWswing)) * 100.0; + iHitPerc = FloatToInt(fPerc); + } + else + {iHitPerc=0;} + + // generate text for scoreboard + + SpeakText = "\n====== Holy War Stats======\n"; + SpeakText += GetName(oPC); + SpeakText += "\n--------------------------\n"; + SpeakText += "Rank: "+IntToString(iRankNo)+". "; + SpeakText += GetLocalString(oPC, "rank"); + SpeakText += "\n\nKills: "; + SpeakText += IntToString(iHWkills); + SpeakText += " ("+IntToString(iHWPCkillTot)+")"; + SpeakText += "\nDeaths: "; + SpeakText += IntToString(iHWdeaths); + SpeakText += " ("+IntToString(iHWPCdeathTot)+")"; + SpeakText += "\nHits: "; + SpeakText += IntToString(iHWhit); + SpeakText += "\nAccuracy: "; + SpeakText += IntToString(iHitPerc); + SpeakText += "%"; + SpeakText += "\nTotal Damage: "; + SpeakText += IntToString(iHWdam); + SpeakText += "\nAverage Damage: "; + SpeakText += IntToString(aDamage); + SpeakText += "\n--------------------------\n"; + SpeakText += iMessage; + +// Display the scoreboard details + + SpeakString(SpeakText); + + + } + + else + { + + // Get player rank details + + GetRank(oPC); + + + + // initialise stat integers + + iDied = GetLocalInt (oPC,"iDied"); + iKilled = GetLocalInt (oPC,"iKilled"); + iPCdamage = GetLocalInt(oPC, "player_dd"); + iHit = GetLocalInt(oPC, "pc_hit"); + iSwing = GetLocalInt(oPC, "pc_swing"); + + + + // Calculate average damage (divide by zero will crash the script) + + if (iHit!=0) + {aDamage = iPCdamage / iHit;} + else {aDamage = 0;} + + // Calculate Hit % + + if (iSwing!=0) + { + fPerc = (IntToFloat(iHit) / IntToFloat(iSwing)) * 100.0; + iHitPerc = FloatToInt(fPerc); + + } + else + {iHitPerc=0;} + + + + // generate text for scoreboard + + SpeakText = "\n====================\n"; + SpeakText += GetName(oPC); + SpeakText += "\n--------------------\n"; + SpeakText += "Rank: "+IntToString(iRankNo)+". "; + SpeakText += GetLocalString(oPC, "rank"); + SpeakText += "\n\nKills: "; + SpeakText += IntToString(iKilled); + SpeakText += "\nDeaths: "; + SpeakText += IntToString(iDied); + SpeakText += "\nHits: "; + SpeakText += IntToString(iHit); + SpeakText += "\nAccuracy: "; + SpeakText += IntToString(iHitPerc); + SpeakText += "%"; + SpeakText += "\nTotal Damage: "; + SpeakText += IntToString(iPCdamage); + SpeakText += "\nAverage Damage: "; + SpeakText += IntToString(aDamage); + SpeakText += "\n\n--------------------\n"; + SpeakText += iMessage; + +// Display the scoreboard details + + SpeakString(SpeakText); + } +} +// [Reset Holy War Scores] [Reset Holy War Scores] diff --git a/_module/nss/arenatoacademy.nss b/_module/nss/arenatoacademy.nss new file mode 100644 index 0000000..f5b9e1e --- /dev/null +++ b/_module/nss/arenatoacademy.nss @@ -0,0 +1,34 @@ + /* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +location lTarget; +oTarget = GetWaypointByTag("arenatoacademy"); + +lTarget = GetLocation(oTarget); + +//only do the jump if the location is valid. +//though not flawless, we just check if it is in a valid area. +//the script will stop if the location isn't valid - meaning that +//nothing put after the teleport will fire either. +//the current location won't be stored, either + +if (GetAreaFromLocation(lTarget)==OBJECT_INVALID) return; + +AssignCommand(oPC, ClearAllActions()); + +AssignCommand(oPC, ActionJumpToLocation(lTarget)); + +} + diff --git a/_module/nss/arm_ocre.nss b/_module/nss/arm_ocre.nss new file mode 100644 index 0000000..a7bd463 --- /dev/null +++ b/_module/nss/arm_ocre.nss @@ -0,0 +1,4 @@ +void main() +{ +ClearAllActions(); +} diff --git a/_module/nss/asa.nss b/_module/nss/asa.nss new file mode 100644 index 0000000..d53cb9a --- /dev/null +++ b/_module/nss/asa.nss @@ -0,0 +1,5 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "hw_on", 0); +SetLocalInt(GetPCSpeaker(), "gr_xx2", 0); +} diff --git a/_module/nss/asf_imbue.nss b/_module/nss/asf_imbue.nss new file mode 100644 index 0000000..8254e32 --- /dev/null +++ b/_module/nss/asf_imbue.nss @@ -0,0 +1,14 @@ +#include "immune_imbue" + +void main() +{ +object oItem; +SetLocalInt(GetPCSpeaker(), "armour_af", 1); +oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem) == "coin1") {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +ImmuneImbue(IP_CONST_ARCANE_SPELL_FAILURE_MINUS_50_PERCENT); +} diff --git a/_module/nss/asf_imbue1.nss b/_module/nss/asf_imbue1.nss new file mode 100644 index 0000000..c4da034 --- /dev/null +++ b/_module/nss/asf_imbue1.nss @@ -0,0 +1,14 @@ +#include "immune_imbue" + +void main() +{ +object oItem; +SetLocalInt(GetPCSpeaker(), "armour_af1", 1); +oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem) == "coin1") {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +ImmuneImbue(IP_CONST_ARCANE_SPELL_FAILURE_MINUS_50_PERCENT); +} diff --git a/_module/nss/at_001.nss b/_module/nss/at_001.nss new file mode 100644 index 0000000..45aa93c --- /dev/null +++ b/_module/nss/at_001.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_001 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/10/2004 4:09:25 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some XP + GiveXPToCreature(GetPCSpeaker(), 10000); + +} diff --git a/_module/nss/at_002.nss b/_module/nss/at_002.nss new file mode 100644 index 0000000..a2992b2 --- /dev/null +++ b/_module/nss/at_002.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_002 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/10/2004 4:09:25 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some XP + GiveXPToCreature(GetPCSpeaker(), 20000); + +} diff --git a/_module/nss/at_003.nss b/_module/nss/at_003.nss new file mode 100644 index 0000000..e10eee9 --- /dev/null +++ b/_module/nss/at_003.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_003 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/10/2004 4:09:25 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some XP + GiveXPToCreature(GetPCSpeaker(), 50000); + +} diff --git a/_module/nss/at_004.nss b/_module/nss/at_004.nss new file mode 100644 index 0000000..7e04b0a --- /dev/null +++ b/_module/nss/at_004.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_004 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/10/2004 4:09:25 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some XP + GiveXPToCreature(GetPCSpeaker(), 1100000); + +} diff --git a/_module/nss/at_005.nss b/_module/nss/at_005.nss new file mode 100644 index 0000000..8dd7e53 --- /dev/null +++ b/_module/nss/at_005.nss @@ -0,0 +1,20 @@ +//:://///////////////////////////////////////////// +//:: FileName at_005 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 8:44:53 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + object oMod = GetModule(); + SetLocalInt(GetModule(), "difficulty", 0); + SetLocalInt(GetModule(), "difficulty", 0); + SetLocalInt(oMod, "d1", 0); + SetLocalInt(oMod, "d2", 0); + SetLocalInt(oMod, "d2a", 0); + SetLocalInt(oMod, "d3", 0); + SetLocalInt(oMod, "d4", 0); + SetLocalInt(oMod, "d5", 0); +} diff --git a/_module/nss/at_006.nss b/_module/nss/at_006.nss new file mode 100644 index 0000000..93d8511 --- /dev/null +++ b/_module/nss/at_006.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_006 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/11/2004 1:22:07 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "honour", 1); + +} diff --git a/_module/nss/at_007.nss b/_module/nss/at_007.nss new file mode 100644 index 0000000..e009b52 --- /dev/null +++ b/_module/nss/at_007.nss @@ -0,0 +1,20 @@ +//:://///////////////////////////////////////////// +//:: FileName at_007 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 6/11/2004 4:38:35 AM +//::////////////////////////////////////////////// +void main() +{ + object oPC = GetPCSpeaker(); + // Set the variables + SetLocalInt(oPC, "st1", 0); + SetLocalInt(oPC, "st2", 0); + SetLocalInt(oPC, "st3", 0); + SetLocalInt(oPC, "st4", 0); + SetLocalInt(oPC, "st5", 0); + SetLocalInt(oPC, "pc_SFswing", 0); + SetLocalInt(oPC, "pc_SFhit", 0); + SetLocalInt(oPC, "pc_SFdam", 0); +} diff --git a/_module/nss/at_008.nss b/_module/nss/at_008.nss new file mode 100644 index 0000000..e17fd78 --- /dev/null +++ b/_module/nss/at_008.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_008 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:39:38 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "hw_on", 1); + SetLocalInt(GetPCSpeaker(), "gr_xx2", 1); +} diff --git a/_module/nss/at_009.nss b/_module/nss/at_009.nss new file mode 100644 index 0000000..1bea667 --- /dev/null +++ b/_module/nss/at_009.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_009 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:40:20 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "bl_on", 1); + SetLocalInt(GetPCSpeaker(), "gr_xx2", 1); +} diff --git a/_module/nss/at_010.nss b/_module/nss/at_010.nss new file mode 100644 index 0000000..9d369d1 --- /dev/null +++ b/_module/nss/at_010.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_010 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:40:36 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "bl_on", 0); + SetLocalInt(GetPCSpeaker(), "gr_xx2", 0); +} diff --git a/_module/nss/at_011.nss b/_module/nss/at_011.nss new file mode 100644 index 0000000..e4822b4 --- /dev/null +++ b/_module/nss/at_011.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:41:04 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "dr_on", 1); + SetLocalInt(GetPCSpeaker(), "gr_xx2", 1); +} diff --git a/_module/nss/at_012.nss b/_module/nss/at_012.nss new file mode 100644 index 0000000..ac86038 --- /dev/null +++ b/_module/nss/at_012.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_012 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:41:15 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "dr_on", 0); + SetLocalInt(GetPCSpeaker(), "gr_xx2", 0); +} diff --git a/_module/nss/at_013.nss b/_module/nss/at_013.nss new file mode 100644 index 0000000..49cf4e4 --- /dev/null +++ b/_module/nss/at_013.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_013 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:41:33 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "pf_on", 1); + SetLocalInt(GetPCSpeaker(), "gr_xx2", 1); +} diff --git a/_module/nss/at_014.nss b/_module/nss/at_014.nss new file mode 100644 index 0000000..b0f6ac3 --- /dev/null +++ b/_module/nss/at_014.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_014 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:42:03 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "pf_on", 0); + SetLocalInt(GetPCSpeaker(), "gr_xx2", 0); +} diff --git a/_module/nss/at_015.nss b/_module/nss/at_015.nss new file mode 100644 index 0000000..9b34549 --- /dev/null +++ b/_module/nss/at_015.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_015 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:42:14 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "df_on", 1); + //SetLocalInt(GetModule(), "sw_hd", 1); +} diff --git a/_module/nss/at_016.nss b/_module/nss/at_016.nss new file mode 100644 index 0000000..b483e74 --- /dev/null +++ b/_module/nss/at_016.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_016 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:42:26 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "df_on", 0); + //SetLocalInt(GetModule(), "sw_hd", 0); +} diff --git a/_module/nss/at_017.nss b/_module/nss/at_017.nss new file mode 100644 index 0000000..9cad0b1 --- /dev/null +++ b/_module/nss/at_017.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_017 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:42:47 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "pm_on", 1); + //SetLocalInt(GetModule(), "sw_pm", 1); +} diff --git a/_module/nss/at_018.nss b/_module/nss/at_018.nss new file mode 100644 index 0000000..38e38b7 --- /dev/null +++ b/_module/nss/at_018.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_018 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:42:57 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "pm_on", 0); + //SetLocalInt(GetModule(), "sw_pm", 0); +} diff --git a/_module/nss/at_019.nss b/_module/nss/at_019.nss new file mode 100644 index 0000000..c0afbd2 --- /dev/null +++ b/_module/nss/at_019.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_019 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:43:11 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "bm_on", 1); + //SetLocalInt(GetModule(), "sw_bm", 1); +} diff --git a/_module/nss/at_020.nss b/_module/nss/at_020.nss new file mode 100644 index 0000000..8b55559 --- /dev/null +++ b/_module/nss/at_020.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_020 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:43:23 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "bm_on", 0); + //SetLocalInt(GetModule(), "sw_bm", 0); +} diff --git a/_module/nss/at_021.nss b/_module/nss/at_021.nss new file mode 100644 index 0000000..a3265c2 --- /dev/null +++ b/_module/nss/at_021.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_021 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:43:36 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "lm_on", 1); + // SetLocalInt(GetModule(), "sw_lm", 1); +} diff --git a/_module/nss/at_021a.nss b/_module/nss/at_021a.nss new file mode 100644 index 0000000..42799f9 --- /dev/null +++ b/_module/nss/at_021a.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_021 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:43:36 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "xx_on", 1); + // SetLocalInt(GetModule(), "sw_lm", 1); +} diff --git a/_module/nss/at_022.nss b/_module/nss/at_022.nss new file mode 100644 index 0000000..ca8eaeb --- /dev/null +++ b/_module/nss/at_022.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_022 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:43:53 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "lm_on", 0); + //SetLocalInt(GetModule(), "sw_lm", 0); +} diff --git a/_module/nss/at_022x.nss b/_module/nss/at_022x.nss new file mode 100644 index 0000000..8e0134a --- /dev/null +++ b/_module/nss/at_022x.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_022 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:43:53 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "xx_on", 0); + //SetLocalInt(GetModule(), "sw_lm", 0); +} diff --git a/_module/nss/at_023.nss b/_module/nss/at_023.nss new file mode 100644 index 0000000..33726d7 --- /dev/null +++ b/_module/nss/at_023.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_023 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:44:16 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "ll_on", 1); + //SetLocalInt(GetModule(), "sw_ll", 1); +} diff --git a/_module/nss/at_024.nss b/_module/nss/at_024.nss new file mode 100644 index 0000000..95cf6a6 --- /dev/null +++ b/_module/nss/at_024.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_024 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/11/2004 10:44:25 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "ll_on", 0); + //SetLocalInt(GetModule(), "sw_ll", 0); +} diff --git a/_module/nss/at_025.nss b/_module/nss/at_025.nss new file mode 100644 index 0000000..7eb0e0f --- /dev/null +++ b/_module/nss/at_025.nss @@ -0,0 +1,19 @@ +//:://///////////////////////////////////////////// +//:: FileName at_025 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 15/11/2004 4:32:43 PM +//::////////////////////////////////////////////// +#include "nw_i0_plot" + +void main() +{ + + // Either open the store with that tag or let the user know that no store exists. + object oStore = GetNearestObjectByTag("dyeman"); + if(GetObjectType(oStore) == OBJECT_TYPE_STORE) + gplotAppraiseOpenStore(oStore, GetPCSpeaker()); + else + ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK); +} diff --git a/_module/nss/at_026.nss b/_module/nss/at_026.nss new file mode 100644 index 0000000..abfa2c9 --- /dev/null +++ b/_module/nss/at_026.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName at_026 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 29/01/2005 11:49:27 PM +//::////////////////////////////////////////////// +#include "spawner" + +void main() +{ + // Set the variables + object oPC = GetPCSpeaker(); + SetLocalInt(GetModule(), "score_switch", 0); + PlaySound("gui_select"); + Sound(0.3, "sce_positive", oPC); +} diff --git a/_module/nss/at_027.nss b/_module/nss/at_027.nss new file mode 100644 index 0000000..7809812 --- /dev/null +++ b/_module/nss/at_027.nss @@ -0,0 +1,23 @@ +//:://///////////////////////////////////////////// +//:: FileName at_027 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 19/02/2005 3:24:43 PM +//::////////////////////////////////////////////// +void main() +{ + object oPC = GetPCSpeaker(); + + // Give the speaker the items + CreateItemOnObject("divine_talisman2", GetPCSpeaker(), 1); + object oItem3, oItem2; + oItem3 = GetItemPossessedBy(oPC, "divine_note"); + oItem2 = GetItemPossessedBy(oPC, "div_key"); + +if (GetIsObjectValid(oItem2)) + DestroyObject(oItem2); +if (GetIsObjectValid(oItem3)) + DestroyObject(oItem3); + +} diff --git a/_module/nss/at_027a.nss b/_module/nss/at_027a.nss new file mode 100644 index 0000000..3e35b0f --- /dev/null +++ b/_module/nss/at_027a.nss @@ -0,0 +1,23 @@ +//:://///////////////////////////////////////////// +//:: FileName at_027 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 19/02/2005 3:24:43 PM +//::////////////////////////////////////////////// +void main() +{ + object oPC = GetPCSpeaker(); + + // Give the speaker the items + CreateItemOnObject("dark_talisman2", GetPCSpeaker(), 1); + object oItem3, oItem2; + oItem3 = GetItemPossessedBy(oPC, "divine_note"); + oItem2 = GetItemPossessedBy(oPC, "div_key"); + +if (GetIsObjectValid(oItem2)) + DestroyObject(oItem2); +if (GetIsObjectValid(oItem3)) + DestroyObject(oItem3); + +} diff --git a/_module/nss/at_028.nss b/_module/nss/at_028.nss new file mode 100644 index 0000000..522ed2f --- /dev/null +++ b/_module/nss/at_028.nss @@ -0,0 +1,14 @@ +//:://///////////////////////////////////////////// +//:: FileName at_028 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 20/02/2005 12:47:11 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + object oPC = GetPCSpeaker(); + SetLocalInt(oPC, "haggle", 1); + //FloatingTextStringOnCreature("** Persuade check failed **", oPC); +} diff --git a/_module/nss/at_029.nss b/_module/nss/at_029.nss new file mode 100644 index 0000000..3d51b32 --- /dev/null +++ b/_module/nss/at_029.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_029 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 12/03/2005 2:35:42 PM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "meph_spoke", 1); + +} diff --git a/_module/nss/at_030.nss b/_module/nss/at_030.nss new file mode 100644 index 0000000..a1f8911 --- /dev/null +++ b/_module/nss/at_030.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_030 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 12/04/2005 11:44:03 AM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetModule(), "nordock", 1); + +} diff --git a/_module/nss/at_cryptexit_001.nss b/_module/nss/at_cryptexit_001.nss new file mode 100644 index 0000000..1d141d4 --- /dev/null +++ b/_module/nss/at_cryptexit_001.nss @@ -0,0 +1,10 @@ + +void main() +{ + object oClicker = GetClickingObject(); + object oTarget = GetTransitionTarget(OBJECT_SELF); + + SetAreaTransitionBMP(AREA_TRANSITION_RANDOM); + + AssignCommand(oClicker,JumpToObject(oTarget)); +} diff --git a/_module/nss/ats_at_trash_yes.nss b/_module/nss/ats_at_trash_yes.nss new file mode 100644 index 0000000..8c01f76 --- /dev/null +++ b/_module/nss/ats_at_trash_yes.nss @@ -0,0 +1,12 @@ +void main() +{ + object oTrashCan = OBJECT_SELF; + object oPlayer = GetPCSpeaker(); + + object oItemInTrash = GetFirstItemInInventory(oTrashCan); + while(GetIsObjectValid(oItemInTrash) == TRUE) + { + DestroyObject(oItemInTrash); + oItemInTrash = GetNextItemInInventory(oTrashCan); + } +} diff --git a/_module/nss/ats_inc_allowed.nss b/_module/nss/ats_inc_allowed.nss new file mode 100644 index 0000000..a1b29b1 --- /dev/null +++ b/_module/nss/ats_inc_allowed.nss @@ -0,0 +1,13 @@ +///////////////////////////////////////////////////// +// ATS_GetIsAllowed // +// Returns whether or not aplayer is allowed // +// access to Private things such as DM Tools. // +// You may change this function to allow // +// more people. // +// Returns: boolean - TRUE if player is allowed // +// FALSE if not allowed // +///////////////////////////////////////////////////// +int ATS_GetIsAllowed(object oPlayer) +{ + return GetIsDM(oPlayer); +} diff --git a/_module/nss/ats_inc_common.nss b/_module/nss/ats_inc_common.nss new file mode 100644 index 0000000..2fee328 --- /dev/null +++ b/_module/nss/ats_inc_common.nss @@ -0,0 +1,408 @@ +/**************************************************** + Common #include Script + ats_inc_common + + Last Updated: August 2, 2002 + + ***Ambrosia Tradeskill System*** + Created by Mojo(Allen Sun) + + This script contains basic functions needed by + most other script files. + +**************************************************/ +#include "ats_inc_debug" +#include "ats_inc_persist" +#include "ats_inc_allowed" + +///////////////////////////////////////////////////// +// ATS_GetResRefFromTag // +// Converts a tag into a resref assuming tag // +// has the same name as resref. // +// Returns: string - ResRef // +///////////////////////////////////////////////////// +string ATS_GetResRefFromTag(string sTag) +{ + return GetStringLowerCase(GetStringLeft(sTag, 16)); +} + +///////////////////////////////////////////////////// +// ATS_CreateItemOnPlayer // +// Wrapper for CreateItemOnObject() so it can // +// be used with DelayCommand() // +// Returns: None // +// Check local object variable: // +// "ats_returnvalue_created_item" for the // +// created object // +/////////////////////////////////////////////////// +void ATS_CreateItemOnPlayer +( +string sItemTag, // Tag of the item +object oPlayer, // Player to create item on +int iStackSize = 1, // Size of the item stack +int iDropToFloor = TRUE, // Creates the item on the floor if inventory is full +) +{ + string sItemResRef = ATS_GetResRefFromTag(sItemTag); + if ((GetStringRight(sItemTag,3)== "ARR") || (GetStringRight(sItemTag,3)== "arr")) + iStackSize = 20; +// Following lines by GilronS for stacking issues with the craftable Throwing Axes +// if (GetSubString(sItemTag, 6, 4) == "XXXX") +// iStackSize = 50; + if (GetStringUpperCase(GetSubString(sItemTag, 6, 4)) == "W036") + iStackSize = 50; + if (GetStringUpperCase(GetSubString(sItemTag, 6, 4)) == "W037") + iStackSize = 50; + if (GetStringUpperCase(GetSubString(sItemTag, 6, 4)) == "W038") + iStackSize = 50; + if (GetStringUpperCase(GetSubString(sItemTag, 6, 4)) == "W039") + iStackSize = 50; +// End Stacking Code for Throwing Axes + object oCreatedItem = CreateItemOnObject(sItemResRef, oPlayer, iStackSize); +// if(GetItemPossessor(oCreatedItem) == OBJECT_INVALID && iDropToFloor == TRUE) +// { +// oCreatedItem = CreateObject(OBJECT_TYPE_ITEM, sItemResRef, GetLocation(oPlayer)); +// } + SetLocalObject(oPlayer, "ats_returnvalue_created_item", oCreatedItem); + SetLocalObject(oCreatedItem, "ats_obj_possessor", GetItemPossessor(oCreatedItem)); + if(GetItemHasItemProperty(oCreatedItem, ITEM_PROPERTY_CAST_SPELL) == TRUE) + SetLocalInt(oCreatedItem, "ats_charges_fix", TRUE); +} + +///////////////////////////////////////////////////// +// ATS_CreateItemInContainer // +// Wrapper for CreateItemOnObject() so it can // +// be used with DelayCommand() // +// Returns: None // +// Check local object variable: // +// "ats_returnvalue_created_item" for the // +// created object // +///////////////////////////////////////////////////// +void ATS_CreateItemInContainer +( +string sItemTag, // Tag of the item +object oContainer, // Container to create the item in +int iStackSize = 1, // Size of the item stack +int iForceCreation = TRUE, // If container is full, the object is created on the owner +) +{ + string sItemResRef = ATS_GetResRefFromTag(sItemTag); + + object oCreatedItem = CreateItemOnObject(sItemResRef, oContainer, iStackSize); + if(GetItemPossessor(oCreatedItem) == OBJECT_INVALID && iForceCreation == TRUE) + { + oCreatedItem = CreateItemOnObject(sItemResRef, GetItemPossessor(oContainer), + iStackSize); + } + SetLocalObject(oContainer, "ats_returnvalue_created_item", oCreatedItem); + SetLocalObject(oCreatedItem, "ats_obj_possessor", GetItemPossessor(oCreatedItem)); + if(GetItemHasItemProperty(oCreatedItem, ITEM_PROPERTY_CAST_SPELL) == TRUE) + SetLocalInt(oCreatedItem, "ats_charges_fix", TRUE); +} +///////////////////////////////////////////////////// +// ATS_CreateObject // +// Wrapper for CreateObject() so it can // +// be used with DelayCommand() // +// Returns: None // +///////////////////////////////////////////////////// +void ATS_CreateObject +( +int iObjectType, // object type constant +string sTemplate, // object resref +location lLocation, // location of new object +int bUseAppearAnimation = FALSE // use animation +) +{ + object oObjectCreated = CreateObject(iObjectType, sTemplate, lLocation, bUseAppearAnimation); + if(GetItemHasItemProperty(oObjectCreated, ITEM_PROPERTY_CAST_SPELL) == TRUE) + SetLocalInt(oObjectCreated, "ats_charges_fix", TRUE); + SetLocalObject(oObjectCreated, "ats_obj_possessor", GetItemPossessor(oObjectCreated)); + +} + +string ATS_GetUniquePlayerID(object oPlayer) +{ + return ("ATS_PID_" + GetPCPlayerName(oPlayer) + GetName(oPlayer)); + +} + +///////////////////////////////////////////////////// +// ATS_GetTradeskill // +// Returns the skill value of a particular // +// tradeskill of a player // +// Returns: int - current skill value // +///////////////////////////////////////////////////// +int ATS_GetTradeskill +( +object oPlayer, // player to get tradeskill value from +string sTradeSkillType // name of the tradeskill +) +{ + string sVarName = "ats_skillvalue_" + sTradeSkillType; + return ATS_GetPersistentInt(oPlayer, sVarName); + +} + +///////////////////////////////////////////////////// +// ATS_GetTagBaseType // +// Gets an item's base tag which consists of // +// four characters within the tag. // +// Returns: String - Base Tag // +///////////////////////////////////////////////////// +string ATS_GetTagBaseType(object oTargetObject) +{ + string sObjectTag = GetTag(oTargetObject); + // Return the 4 character substring 6 characters into the tag + return GetSubString(sObjectTag, 6, 4); +} + +///////////////////////////////////////////////////// +// ATS_GetCraftTag // +// Gets an item's craft tag from an object // +// Returns: String - Craft Tag // +///////////////////////////////////////////////////// +string ATS_GetCraftTag(object oTargetObject) +{ + string sObjectTag = GetTag(oTargetObject); + return GetStringLeft(sObjectTag, 10); + +} + + +object ATS_FindItemInInventoryByTag(object oTarget, string sTag, int iNth = 0) +{ + int iCount = 0; + object oCurrentObject = OBJECT_INVALID; + + if(GetHasInventory(oTarget) == FALSE) + return oCurrentObject; + + oCurrentObject = GetFirstItemInInventory(oTarget); + + while(GetIsObjectValid(oCurrentObject) == TRUE) + { + if(GetTag(oCurrentObject) == sTag) + { + if(iCount == iNth) + return oCurrentObject; + else + ++iCount; + } + oCurrentObject = GetNextItemInInventory(oTarget); + } + return oCurrentObject; + +} + +object ATS_FindItemInInventoryByBaseTag(object oTarget, string sBaseTag, int iNth = 0) +{ + int iCount = 0; + object oCurrentObject = OBJECT_INVALID; + + if(GetHasInventory(oTarget) == FALSE) + return oCurrentObject; + + oCurrentObject = GetFirstItemInInventory(oTarget); + + while(GetIsObjectValid(oCurrentObject) == TRUE) + { + if(ATS_GetTagBaseType(oCurrentObject) == sBaseTag) + { + if(iCount == iNth) + return oCurrentObject; + else + ++iCount; + } + oCurrentObject = GetNextItemInInventory(oTarget); + } + return oCurrentObject; + +} +///////////////////////////////////////////////////// +// ATS_CapitalizeString // +// Capitalizes the first letter of a string // +// Returns: string - capitalized string // +///////////////////////////////////////////////////// +string ATS_CapitalizeString(string sStringToCap) +{ + string sTempString = GetStringLeft(sStringToCap, 1); + sTempString = GetStringUpperCase(sTempString); + sTempString = sTempString + GetStringRight(sStringToCap, GetStringLength(sStringToCap) - 1); + return sTempString; +} + +void ATS_RemoveAllInstances(string sTag) +{ + int iNum = 0; + object oObjectToDestroy = GetObjectByTag(sTag, iNum++); + + + while(oObjectToDestroy != OBJECT_INVALID) + { + DestroyObject(oObjectToDestroy); + oObjectToDestroy = GetObjectByTag(sTag, iNum++); + } + +} + +void ATS_RemoveAllInstancesOnPlayer(object oPlayer, string sTag) +{ + int iNum = 0; + object oObjectToDestroy = GetObjectByTag(sTag, iNum++); + + + while(oObjectToDestroy != OBJECT_INVALID) + { + if(GetItemPossessor(oObjectToDestroy) == oPlayer) + DestroyObject(oObjectToDestroy); + oObjectToDestroy = GetObjectByTag(sTag, iNum++); + } + +} + +string ATS_CraftToItemTag(string sCraftTag, string sQuality, string sMaterialType) +{ + return (GetStringLeft(sCraftTag, 10) + "_" + sQuality + "_" + sMaterialType); +} + +int ATS_IsItemNoDrop(object oItem) +{ + string sUpperTag = GetStringUpperCase(GetTag(oItem)); + if(FindSubString(sUpperTag, "_NOD") > 0 || FindSubString(sUpperTag, "NODROP") > 0) + return TRUE; + else if (GetLocalInt(oItem,"ats_nodrop")) // added by richterm to try and fix + return TRUE; // bags with NODROP items in them + else // the flag was set in ats_inc_nodrop but + return FALSE; // wass never checked +} + +int ATS_IsItemResource(object oItem) +{ + if(GetStringLeft(GetTag(oItem), 5) == "ATS_R") + return TRUE; + else + return FALSE; +} + +int ATS_GetItemDurability(object oItem) +{ + return GetLocalInt(oItem, "ats_durability"); +} + +void ATS_SetItemDurability(object oItem, int iDurability) +{ + SetLocalInt(oItem, "ats_durability", iDurability); +} + +void ATS_DecreaseItemDurability(object oItem, int iAmount) +{ + ATS_SetItemDurability(oItem, ATS_GetItemDurability(oItem) - iAmount); +} + +int ATS_GetItemMaxDurability(object oItem) +{ + string sItemTag = GetTag(oItem); + int iStringIndex = FindSubString(sItemTag, "_DUR"); + if(iStringIndex == -1) + return 0; + + string sParsedString = GetSubString(sItemTag, iStringIndex + 4, + GetStringLength(sItemTag) - iStringIndex - 4); + iStringIndex = FindSubString(sParsedString, "_"); + if(iStringIndex <= 0) + { + return StringToInt(sParsedString); + } + else + { + return StringToInt(GetStringLeft(sParsedString, iStringIndex)); + } + +} + + +///////////////////////////////////////////////////// +// ATS_BreakItem // +// Wrapper function to destroy an item and // +// display text that it was broken // +// Returns: none // +///////////////////////////////////////////////////// +void ATS_BreakItem +( +object oItemToBreak, // item to destroy +float fDelay = 0.5 // delay in seconds to destroy +) +{ + + string sArrayName = "durability_" + GetTag(oItemToBreak); + object oItemPossessor = GetItemPossessor(oItemToBreak); + string sItemName = GetName(oItemToBreak); + + DestroyObject(oItemToBreak, fDelay); + AssignCommand(GetModule(), DelayCommand(fDelay, FloatingTextStringOnCreature("Your " + sItemName + + " has broken.", oItemPossessor, FALSE))); + +} +///////////////////////////////////////////////////// +// ATS_StrTok // +// Mimics the C string function strtok() // +// Returns: string - string token // +// returns "" if end of string // +///////////////////////////////////////////////////// +string ATS_StrTok +( +string sString, // String to tokenize(send in "" to continue with previous + // string) +string sDelimeter // Delimiter string +) +{ + string sStringToTok; + if(sString == "") + sStringToTok = GetLocalString(GetModule(), "ats_strtok_string"); + else + sStringToTok = sString; + + int iTokenEndPos = FindSubString(sStringToTok, sDelimeter); + if(iTokenEndPos == -1 || sDelimeter == "") + { + SetLocalString(GetModule(), "ats_strtok_string", ""); + return sStringToTok; + } + else + { + int iStringLength = GetStringLength(sStringToTok); + int iDelimeterLength = GetStringLength(sDelimeter); + + SetLocalString(GetModule(), "ats_strtok_string", + GetStringRight(sStringToTok, iStringLength - iTokenEndPos - iDelimeterLength)); + return GetStringLeft(sStringToTok, iTokenEndPos); + } +} + +int ATS_GetIsVowel(string sChar) +{ + string sLowerChar = GetStringLowerCase(sChar); + if(sLowerChar == "a" || sLowerChar == "e" || sLowerChar == "i" || sLowerChar == "o" || sLowerChar == "u") + return TRUE; + else + return FALSE; +} + +// Function borrowed from NWN Spawn System by Palor +location ATS_GetRandomLocationNearObject(object oNearObject, int iMaxDistance) +{ + + vector vNewPos = GetPosition(oNearObject); + object oArea = GetArea(oNearObject); + float fX, fY; + float fMaxY; + float fRadius = IntToFloat(iMaxDistance); + fX = (Random(200)/100.0 - 1.0) * fRadius; + fMaxY = sqrt(fRadius*fRadius-fX*fX); + fY = (Random(200)/100.0 - 1.0) * fMaxY; + vNewPos += Vector(fX, fY, 0.0); + location lNewLoc = Location(oArea, vNewPos, VectorToAngle(-1.0 * vNewPos)); + return lNewLoc; +} + + diff --git a/_module/nss/ats_inc_debug.nss b/_module/nss/ats_inc_debug.nss new file mode 100644 index 0000000..e158f3a --- /dev/null +++ b/_module/nss/ats_inc_debug.nss @@ -0,0 +1,68 @@ +/**************************************************** + Debug Script + ats_inc_debug + + Last Updated: August 15 2002 + + ***Ambrosia Tradeskill System*** + Created by Mojo(Allen Sun) + + This script contains debug output functions which + can be turned on or off by a flag. +****************************************************/ + +int CINT_DEBUG_FLAG = FALSE; + +void DEBUG_PrintString(string sDebugString) +{ + if(CINT_DEBUG_FLAG == FALSE) + return; + SendMessageToAllDMs(sDebugString); + PrintString(sDebugString); +} + +void DEBUG_PrintInteger(int iDebugInt) +{ + if(CINT_DEBUG_FLAG == FALSE) + return; + SendMessageToAllDMs(IntToString(iDebugInt)); + PrintInteger(iDebugInt); +} + +void DEBUG_PrintFloat(float fDebugFloat) +{ + if(CINT_DEBUG_FLAG == FALSE) + return; + SendMessageToAllDMs(FloatToString(fDebugFloat)); + PrintFloat(fDebugFloat); +} +void DEBUG_PrintVector(vector vDebugVector) +{ + if(CINT_DEBUG_FLAG == FALSE) + return; + SendMessageToAllDMs("Vector.X: " + FloatToString(vDebugVector.x) + " " + + "Vector.Y: " + FloatToString(vDebugVector.y)); + PrintVector(vDebugVector, TRUE); +} + +void DEBUG_PrintObject(object oDebugObject) +{ + if(CINT_DEBUG_FLAG == FALSE) + return; + SendMessageToAllDMs(GetTag(oDebugObject)); + PrintObject(oDebugObject); +} + +void DEBUG_SendMessageToPC(object oPlayer, string sDebugString) +{ + if(CINT_DEBUG_FLAG == FALSE) + return; + SendMessageToPC(oPlayer, sDebugString); +} + +void DEBUG_SpeakString(string sSpeakString, int iTalkVolume = TALKVOLUME_TALK) +{ + if(CINT_DEBUG_FLAG == FALSE) + return; + SpeakString(sSpeakString, iTalkVolume); +} diff --git a/_module/nss/ats_inc_persist.nss b/_module/nss/ats_inc_persist.nss new file mode 100644 index 0000000..fffeda8 --- /dev/null +++ b/_module/nss/ats_inc_persist.nss @@ -0,0 +1,60 @@ +/**************************************************** + Persistent Data Wrapper Script + ats_inc_persist + + Last Updated: July 15, 2002 + + ***Ambrosia Tradeskill System*** + Created by Mojo(Allen Sun) + + This script contains wrapper functions for a + persistent data solution. Right now, it just + wraps the GetLocal and SetLocal functions. +***************************************************/ + +#include "rr_persist" + +int ATS_GetPersistentInt(object oObject, string sVarName) +{ + return GPI(oObject, sVarName); +} +float ATS_GetPersistentFloat(object oObject, string sVarName) +{ + return GPF(oObject, sVarName); +} +location ATS_GetPersistentLocation(object oObject, string sVarName) +{ + return GPLoc(oObject, sVarName); +} +string ATS_GetPersistentString(object oObject, string sVarName) +{ + return GPStr(oObject, sVarName); +} +object ATS_GetPersistentObject(object oObject, string sVarName) +{ + return GetLocalObject(oObject, sVarName); +} + +void ATS_SetPersistentInt(object oObject, string sVarName, int nValue) +{ + SPI(oObject, sVarName, nValue); +} +void ATS_SetPersistentFloat(object oObject, string sVarName, float fValue) +{ + SPF(oObject, sVarName, fValue); +} +void ATS_SetPersistentLocation(object oObject, string sVarName, location lValue) +{ + SPLoc(oObject, sVarName, lValue); +} +void ATS_SetPersistentString(object oObject, string sVarName, string sValue) +{ + SPStr(oObject, sVarName, sValue); +} + +void ATS_SetPersistentObject(object oObject, string sVarName, object oValue) +{ + SetLocalObject(oObject, sVarName, oValue); +} + + diff --git a/_module/nss/ats_tcan_onclose.nss b/_module/nss/ats_tcan_onclose.nss new file mode 100644 index 0000000..f931a78 --- /dev/null +++ b/_module/nss/ats_tcan_onclose.nss @@ -0,0 +1,7 @@ +#include "ats_inc_common" + +void main() +{ + ClearAllActions(); + SetLocalInt(OBJECT_SELF, "ats_opened", FALSE); +} diff --git a/_module/nss/ats_tcan_onopen.nss b/_module/nss/ats_tcan_onopen.nss new file mode 100644 index 0000000..ff77539 --- /dev/null +++ b/_module/nss/ats_tcan_onopen.nss @@ -0,0 +1,4 @@ +void main() +{ + SetLocalInt(OBJECT_SELF, "ats_opened", TRUE); +} diff --git a/_module/nss/ats_tcan_onused.nss b/_module/nss/ats_tcan_onused.nss new file mode 100644 index 0000000..39afae0 --- /dev/null +++ b/_module/nss/ats_tcan_onused.nss @@ -0,0 +1,24 @@ +void main() +{ + + int iTimesUsed = GetLocalInt(OBJECT_SELF, "ats_onused"); + ++iTimesUsed; + + if(iTimesUsed == 2) + { + if(GetLocalInt(OBJECT_SELF, "ats_opened") == TRUE) + { + iTimesUsed = 1; + SetLocalInt(OBJECT_SELF, "ats_opened", FALSE); + } + else + { + iTimesUsed = 0; + SetLocalInt(OBJECT_SELF, "ats_onused", 0 ); + ActionStartConversation(GetLastUsedBy(), "", TRUE); + } + } + SetLocalInt(OBJECT_SELF, "ats_onused", iTimesUsed ); + + +} diff --git a/_module/nss/att_imbue.nss b/_module/nss/att_imbue.nss new file mode 100644 index 0000000..35a498c --- /dev/null +++ b/_module/nss/att_imbue.nss @@ -0,0 +1,44 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Att(object oItem, int oDamage) +{ +itemproperty ipAdd; +int iAtt; +switch (oDamage) +{ +case 1: iAtt = 5; break; +case 2: iAtt = 8; break; +case 3: iAtt = 12; break; +} + +ipAdd = ItemPropertyAttackBonus(iAtt); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void AttackBonus (int oDamage) +{ +object oTarget; +object oItem; + +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_DUR_ELEMENTAL_SHIELD, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_ELECTRIC_EXPLOSION, OBJECT_SELF); +PCEffect(2.0,VFX_IMP_HARM, OBJECT_SELF); +DelayCommand(1.0, Att(GetFirstItemInInventory(OBJECT_SELF), oDamage)); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + +//void main () {} + + + diff --git a/_module/nss/autoclose.nss b/_module/nss/autoclose.nss new file mode 100644 index 0000000..4650937 --- /dev/null +++ b/_module/nss/autoclose.nss @@ -0,0 +1,10 @@ +void main() +{ + object oPC = GetLastOpenedBy(); + object oArea = GetArea(OBJECT_SELF); + if (GetIsPC(oPC)) + {MusicBackgroundStop(oArea);} + + DelayCommand(6.0f, ActionCloseDoor(OBJECT_SELF)); +} + diff --git a/_module/nss/aven_imbue.nss b/_module/nss/aven_imbue.nss new file mode 100644 index 0000000..698025d --- /dev/null +++ b/_module/nss/aven_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Holy (object oItem) +{ +itemproperty ipAdd; +SetLocalInt(oItem, "holyA_done", 1); +ipAdd = ItemPropertyHolyAvenger(); +IPSafeAddItemProperty(oItem, ipAdd); +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(0.5,VFX_FNF_WAIL_O_BANSHEES, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_AURA_HOLY, OBJECT_SELF); +PCEffect(3.0,VFX_IMP_PULSE_HOLY, OBJECT_SELF); +DelayCommand(1.0, Holy(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/b_angeldeath.nss b/_module/nss/b_angeldeath.nss new file mode 100644 index 0000000..10c676b --- /dev/null +++ b/_module/nss/b_angeldeath.nss @@ -0,0 +1,82 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::///////////////////////////////////War Demon / Guardian Angel Challenge +#include "nw_i0_generic" +#include "spawner" +#include "x0_i0_petrify" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "ch_pf", 0); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + int nInt2=GetLocalInt(oMod, "d2"); + int nInt4=GetLocalInt(oMod, "d4"); + int nInt2a=GetLocalInt(oMod, "d2a"); + int nInt3=GetLocalInt(oMod, "d3"); + int nInt5=GetLocalInt(oMod, "d5"); + //string oDebug = IntToString(nInt5); + //Message(8.0, oDebug, oPC); + PCEffect(0.0, VFX_IMP_DEATH_L, oTarget); + PCEffect(0.3, VFX_IMP_MAGIC_PROTECTION, oTarget); + + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + if ((nInt2!=1)&&(nInt3!=1)&&(nInt4!=1)&&(nInt5!=1)) + {BattleRest(oPC);} + SetLocalInt(oPC, "pitfienddead", 1); + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "hdrag2", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "zep_halfdrafn001", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + else + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + } +} diff --git a/_module/nss/b_angeldeath1.nss b/_module/nss/b_angeldeath1.nss new file mode 100644 index 0000000..be59f96 --- /dev/null +++ b/_module/nss/b_angeldeath1.nss @@ -0,0 +1,82 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//:://///////////////////////////////////Balrog / Divine Archer Challenge +#include "nw_i0_generic" +#include "spawner" +#include "x0_i0_petrify" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + int nInt2=GetLocalInt(oMod, "d2"); + int nInt4=GetLocalInt(oMod, "d4"); + int nInt2a=GetLocalInt(oMod, "d2a"); + int nInt5=GetLocalInt(oMod, "d5"); + int nInt3=GetLocalInt(oMod, "d3"); + //string oDebug = IntToString(nInt5); + //Message(8.0, oDebug, oPC); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + + PCEffect(0.0, VFX_IMP_DEATH_L, oTarget); + //PCEffect(0.3, VFX_IMP_MAGIC_PROTECTION, oTarget); + + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + if ((nInt2!=1)&&(nInt2a!=1)&&(nInt3!=1)&&(nInt4!=1)&&(nInt5!=1)) + {BattleRest(oPC);} + SetLocalInt(oPC, "balrogdead", 1); + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "dopple001", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "dopple", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + else + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + } +} + + diff --git a/_module/nss/b_balordeth1.nss b/_module/nss/b_balordeth1.nss new file mode 100644 index 0000000..3533b6a --- /dev/null +++ b/_module/nss/b_balordeth1.nss @@ -0,0 +1,140 @@ +//:://///////////////////////////////////////////// +//:: Balor On Death +//:: NW_S3_BALORDETH +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Fireball explosion does 50 damage to all within + 20ft +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Jan 9, 2002 +//::////////////////////////////////Kamaji / Shiva [Challenge] + +#include "prc_inc_spells" +#include "prc_add_spell_dc" +#include "spawner" +#include "x0_i0_petrify" +#include "poolrestore" +#include "loot" +#include "rank" + +void main() +{ + + object oPC = GetLastKiller(); + object oMod = GetModule(); + int oChest; + int oExploit = GetLocalInt(oMod, "xcheck"); + int nInt1=GetLocalInt(oMod, "d2"); + int nInt2=GetLocalInt(oMod, "d1"); + int nInt3=GetLocalInt(oMod, "d3"); + int nInt4=GetLocalInt(oMod, "d2a"); + int nInt5=GetLocalInt(oMod, "d5"); + int nInt6=GetLocalInt(oMod, "d4"); + int oKil = GetLocalInt(oPC, "iKilled"); + int iMode = GetLocalInt(oMod, "gamemode"); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + object oSpawner = GetObjectByTag("spawner"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + + SetLocalInt(oMod, "sw_mb", 0); + SetLocalInt(oMod, "ch_mb", 0); + + if (oExploit!=1) + { + LastHit(); + oKil = oKil +1; + SetLocalInt(oPC, "iKilled", oKil); + if (nInt2==1) + { + QuickRestore(oPC); + DelayCommand(2.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + + AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + SetLocalInt(oPC, "marilithdead", 1); + oKil = oKil +1; + SetLocalInt(oPC, "iKilled", oKil); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + SetLocalInt(oMod, "challenge",0); + if (iMode==1) + {AddJournalQuestEntry("boss2_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss2", 1, oPC, FALSE, FALSE);} + SetLocalInt(oMod, "d1_complete", 1); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + return; + } + + if ((nInt1==1)||(nInt4==1)||(nInt5==1)||(nInt6==1)||(nInt3==1)) + { + if (oExploit!=1) + { + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "boss002", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "boss1", 0)); + } + GetRank(oPC); + DeathStats(oPC); + if ((nInt3!=1)&&(nInt5!=1)&&(nInt6!=1)) + {BattleRest(oPC);} + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + } + + } + + + //Declare major variables + object oCaster = OBJECT_SELF; + int nMetaMagic = PRCGetMetaMagicFeat(); + int nDamage; + float fDelay; + effect eExplode = EffectVisualEffect(VFX_FNF_FIREBALL); + effect eVis = EffectVisualEffect(VFX_IMP_FLAME_M); + effect eDam; + //Get the spell target location as opposed to the spell target. + location lTarget = GetLocation(OBJECT_SELF); + //Limit Caster level for the purposes of damage + //Apply the fireball explosion at the location captured above. + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eExplode, lTarget); + //Declare the spell shape, size and the location. Capture the first target object in the shape. + object oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_HUGE, lTarget, TRUE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR); + //Cycle through the targets within the spell shape until an invalid object is captured. + while (GetIsObjectValid(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_FIREBALL)); + //Get the distance between the explosion and the target to calculate delay + fDelay = GetDistanceBetweenLocations(lTarget, GetLocation(oTarget))/20; + if (!PRCDoResistSpell(OBJECT_SELF, oTarget, FloatToInt(fDelay))) + { + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(50, oTarget, PRCGetSpellSaveDC(), SAVING_THROW_TYPE_FIRE); + //Set the damage effect + eDam = EffectDamage(nDamage, DAMAGE_TYPE_FIRE); + if(nDamage > 0) + { + // Apply effects to the currently selected target. + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + //This visual effect is applied to the target object not the location as above. This visual effect + //represents the flame that erupts on the target not on the ground. + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + //Select the next target within the spell shape. + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_HUGE, lTarget, TRUE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR); + } +} + diff --git a/_module/nss/b_deathdeath1.nss b/_module/nss/b_deathdeath1.nss new file mode 100644 index 0000000..97f63bd --- /dev/null +++ b/_module/nss/b_deathdeath1.nss @@ -0,0 +1,84 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//:://///////////////////////////////////Balrog / Divine Archer Challenge +#include "nw_i0_generic" +#include "spawner" +#include "x0_i0_petrify" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + int nInt2=GetLocalInt(oMod, "d2"); + int nInt4=GetLocalInt(oMod, "d4"); + int nInt2a=GetLocalInt(oMod, "d2a"); + int nInt5=GetLocalInt(oMod, "d5"); + int nInt3=GetLocalInt(oMod, "d3"); + //string oDebug = IntToString(nInt5); + //Message(8.0, oDebug, oPC); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + + int nInt; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + if ((nInt2!=1)&&(nInt2a!=1)&&(nInt3!=1)&&(nInt4!=1)&&(nInt5!=1)) + {BattleRest(oPC);} + SetLocalInt(oPC, "balrogdead", 1); + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "dopple001", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "dopple", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + else + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + } +} + + diff --git a/_module/nss/b_deathdeath2.nss b/_module/nss/b_deathdeath2.nss new file mode 100644 index 0000000..fe86265 --- /dev/null +++ b/_module/nss/b_deathdeath2.nss @@ -0,0 +1,83 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////Valdar Dragoon Challenge +#include "nw_i0_generic" +#include "spawner" +#include "x0_i0_petrify" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oTarget= OBJECT_SELF; + int oGameMode = GetLocalInt(oMod, "gamemode"); + int iKilled = GetLocalInt(oPC, "iKilled"); + + int nInt2=GetLocalInt(oMod, "d2"); + int nInt4=GetLocalInt(oMod, "d4"); + int nInt2a=GetLocalInt(oMod, "d2a"); + int nInt5=GetLocalInt(oMod, "d5"); + int nInt3=GetLocalInt(oMod, "d3"); + //string oDebug = IntToString(nInt5); + //Message(8.0, oDebug, oPC); + int nInt; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + if ((nInt2a!=1)&&(nInt3!=1)&&(nInt5!=1)) + {BattleRest(oPC);} + SetLocalInt(oPC, "hdfienddead", 1); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "pwar2", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "palewarrior", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + else + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + } + +} diff --git a/_module/nss/b_deathdeath3.nss b/_module/nss/b_deathdeath3.nss new file mode 100644 index 0000000..416cc6a --- /dev/null +++ b/_module/nss/b_deathdeath3.nss @@ -0,0 +1,81 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//:://///////////////////////////////////Bard Heratic Challenge +#include "nw_i0_generic" +#include "spawner" +#include "x0_i0_petrify" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + int nInt2=GetLocalInt(oMod, "d2"); + int nInt4=GetLocalInt(oMod, "d4"); + int nInt2a=GetLocalInt(oMod, "d2a"); + int nInt5=GetLocalInt(oMod, "d5"); + int nInt3=GetLocalInt(oMod, "d3"); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + //string oDebug = IntToString(nInt5); + //Message(8.0, oDebug, oPC); + int nInt; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + if ((nInt2!=1)&&(nInt2a!=1)&&(nInt4!=1)&&(nInt5!=1)) + {BattleRest(oPC);} + SetLocalInt(oPC, "paledead", 1); + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "beli2", 1)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "zep_marilithb001", 1)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "big_wp"); + } + else + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + } +} diff --git a/_module/nss/b_deathdeath4.nss b/_module/nss/b_deathdeath4.nss new file mode 100644 index 0000000..f8cdc2e --- /dev/null +++ b/_module/nss/b_deathdeath4.nss @@ -0,0 +1,81 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//:://////////////////////////////////Doom Reaver Challenge +#include "nw_i0_generic" +#include "spawner" +#include "x0_i0_petrify" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + int nInt2=GetLocalInt(oMod, "d2"); + int nInt4=GetLocalInt(oMod, "d4"); + int nInt2a=GetLocalInt(oMod, "d2a"); + int nInt5=GetLocalInt(oMod, "d5"); + int nInt3=GetLocalInt(oMod, "d3"); + //string oDebug = IntToString(nInt5); + //Message(8.0, oDebug, oPC); + int nInt; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + if ((nInt2a!=1)&&(nInt4!=1)&&(nInt5!=1)) + {BattleRest(oPC);} + SetLocalInt(oPC, "doppledead", 1); + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "pfiend2", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "zep_pitfiend001", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + else + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + } + +} diff --git a/_module/nss/b_firedeath1.nss b/_module/nss/b_firedeath1.nss new file mode 100644 index 0000000..24415dc --- /dev/null +++ b/_module/nss/b_firedeath1.nss @@ -0,0 +1,83 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::///////////////////////////////////War Demon / Guardian Angel Challenge +#include "nw_i0_generic" +#include "spawner" +#include "x0_i0_petrify" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "ch_pf", 0); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + int nInt2=GetLocalInt(oMod, "d2"); + int nInt4=GetLocalInt(oMod, "d4"); + int nInt2a=GetLocalInt(oMod, "d2a"); + int nInt3=GetLocalInt(oMod, "d3"); + int nInt5=GetLocalInt(oMod, "d5"); + //string oDebug = IntToString(nInt5); + //Message(8.0, oDebug, oPC); + int nInt; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), GetLocation(oTarget)); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + if ((nInt2!=1)&&(nInt3!=1)&&(nInt4!=1)&&(nInt5!=1)) + {BattleRest(oPC);} + SetLocalInt(oPC, "pitfienddead", 1); + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "hdrag2", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "zep_halfdrafn001", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + else + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + } +} diff --git a/_module/nss/b_firedeath3.nss b/_module/nss/b_firedeath3.nss new file mode 100644 index 0000000..dcf1630 --- /dev/null +++ b/_module/nss/b_firedeath3.nss @@ -0,0 +1,77 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////Wurm / Gold Dragon challenge +#include "nw_i0_generic" +#include "spawner" +#include "x0_i0_petrify" +#include "rank" + +void main() +{ + object oMod = GetModule(); + object oPC = GetLastKiller(); + int nInt5=GetLocalInt(oMod, "d5"); + //string oDebug = IntToString(nInt5); + //Message(8.0, oDebug, oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + + int nInt; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), GetLocation(oTarget)); + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + //BattleRest(oPC); + SetLocalInt(oPC, "wurmdead", 1); + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "balrog2", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "zep_balrog001", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + else + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + } +} diff --git a/_module/nss/b_golddeath.nss b/_module/nss/b_golddeath.nss new file mode 100644 index 0000000..b79fca3 --- /dev/null +++ b/_module/nss/b_golddeath.nss @@ -0,0 +1,76 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////Wurm / Gold Dragon challenge +#include "nw_i0_generic" +#include "spawner" +#include "x0_i0_petrify" +#include "rank" + +void main() +{ + object oMod = GetModule(); + object oPC = GetLastKiller(); + int nInt5=GetLocalInt(oMod, "d5"); + //string oDebug = IntToString(nInt5); + //Message(8.0, oDebug, oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + + PCEffect(0.0, VFX_IMP_DEATH, oTarget); + PCEffect(0.8, VFX_FNF_FIREBALL, oTarget); + + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + //BattleRest(oPC); + SetLocalInt(oPC, "wurmdead", 1); + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "balrog2", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "zep_balrog001", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + else + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + } +} diff --git a/_module/nss/b_souldeath.nss b/_module/nss/b_souldeath.nss new file mode 100644 index 0000000..d897754 --- /dev/null +++ b/_module/nss/b_souldeath.nss @@ -0,0 +1,82 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////Valdar Dragoon Challenge +#include "nw_i0_generic" +#include "spawner" +#include "x0_i0_petrify" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oTarget= OBJECT_SELF; + int oGameMode = GetLocalInt(oMod, "gamemode"); + int iKilled = GetLocalInt(oPC, "iKilled"); + + int nInt2=GetLocalInt(oMod, "d2"); + int nInt4=GetLocalInt(oMod, "d4"); + int nInt2a=GetLocalInt(oMod, "d2a"); + int nInt5=GetLocalInt(oMod, "d5"); + int nInt3=GetLocalInt(oMod, "d3"); + //string oDebug = IntToString(nInt5); + //Message(8.0, oDebug, oPC); + PCEffect(0.0, VFX_IMP_DEATH_L, oTarget); + PCEffect(0.3, VFX_IMP_MAGIC_PROTECTION, oTarget); + + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + if ((nInt2a!=1)&&(nInt3!=1)&&(nInt5!=1)) + {BattleRest(oPC);} + SetLocalInt(oPC, "hdfienddead", 1); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "pwar2", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "palewarrior", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + else + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + } + +} diff --git a/_module/nss/balls_off.nss b/_module/nss/balls_off.nss new file mode 100644 index 0000000..56036a7 --- /dev/null +++ b/_module/nss/balls_off.nss @@ -0,0 +1,19 @@ +void main() +{ +object oWP1 = GetObjectByTag("eff1"), + oWP2 = GetObjectByTag("eff2"), + oWP3 = GetObjectByTag("eff3"), + oWP4 = GetObjectByTag("eff4"), + oWP5 = GetObjectByTag("eff5"), + oWP6 = GetObjectByTag("eff6"), + oWP7 = GetObjectByTag("eff7"), + oWP8 = GetObjectByTag("eff8"); +AssignCommand(oWP1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP3, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP4, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP5, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP6, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP7, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP8, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +} diff --git a/_module/nss/balordeth1.nss b/_module/nss/balordeth1.nss new file mode 100644 index 0000000..c6e6622 --- /dev/null +++ b/_module/nss/balordeth1.nss @@ -0,0 +1,113 @@ +//:://///////////////////////////////////////////// +//:: Balor On Death +//:: NW_S3_BALORDETH +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Fireball explosion does 50 damage to all within + 20ft +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Jan 9, 2002 +//::////////////////////////////////////Shiva / Kamaji [Deathmatch] +#include "loot" +#include "prc_inc_spells" +#include "prc_add_spell_dc" +#include "spawner" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + + SetLocalInt(oMod, "sw_bm", 0); + SetLocalInt(oMod, "ch_bm", 0); + SetLocalInt(oMod, "gr_xx", 0); + int oKil = GetLocalInt(oPC, "iKilled"); + oKil = oKil +1; + SetLocalInt(oPC, "iKilled", oKil); + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + SetLocalInt(oPC, "marilithdead", 1); + GetRank(oPC); + DeathStats(oPC); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 10000); + } + } +int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + + } + + + + + + //Declare major variables + object oCaster = OBJECT_SELF; + int nMetaMagic = PRCGetMetaMagicFeat(); + int nDamage; + float fDelay; + effect eExplode = EffectVisualEffect(VFX_FNF_FIREBALL); + effect eVis = EffectVisualEffect(VFX_IMP_FLAME_M); + effect eDam; + //Get the spell target location as opposed to the spell target. + location lTarget = GetLocation(OBJECT_SELF); + //Limit Caster level for the purposes of damage + //Apply the fireball explosion at the location captured above. + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eExplode, lTarget); + //Declare the spell shape, size and the location. Capture the first target object in the shape. + object oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_HUGE, lTarget, TRUE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR); + //Cycle through the targets within the spell shape until an invalid object is captured. + while (GetIsObjectValid(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_FIREBALL)); + //Get the distance between the explosion and the target to calculate delay + fDelay = GetDistanceBetweenLocations(lTarget, GetLocation(oTarget))/20; + if (!PRCDoResistSpell(OBJECT_SELF, oTarget, FloatToInt(fDelay))) + { + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = PRCGetReflexAdjustedDamage(50, oTarget, PRCGetSpellSaveDC(), SAVING_THROW_TYPE_FIRE); + //Set the damage effect + eDam = EffectDamage(nDamage, DAMAGE_TYPE_FIRE); + if(nDamage > 0) + { + // Apply effects to the currently selected target. + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + //This visual effect is applied to the target object not the location as above. This visual effect + //represents the flame that erupts on the target not on the ground. + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + //Select the next target within the spell shape. + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_HUGE, lTarget, TRUE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR); + } +} + diff --git a/_module/nss/bank_inc.nss b/_module/nss/bank_inc.nss new file mode 100644 index 0000000..1b906b5 --- /dev/null +++ b/_module/nss/bank_inc.nss @@ -0,0 +1,140 @@ +#include "apts_inc_ptok" +#include "ats_inc_common" + +//int BANK_PRIME_HASH = 20963; +int BANK_PRIME_HASH = 196613; +int BANK_VAULT_SIZE = 15; + +void InitHash(object oStorableItem) +{ + int iHashNum = APTS_HashString(GetTag(oStorableItem), BANK_PRIME_HASH); + PrintString(GetTag(oStorableItem)+" , "+IntToString(iHashNum)); + if(GetLocalString(GetModule(), "BANK_STORABLE_" + IntToString(iHashNum)) == "") + SetLocalString(GetModule(), "BANK_STORABLE_" + IntToString(iHashNum), GetTag(oStorableItem)); + else + PrintString("Hash collision: " + GetTag(oStorableItem)); +} + +void InitializeBankDemo() +{ +// PrintString("Initializing Bank"); +// object oItemBase = GetObjectByTag("BANK_ITEM_BASE"); + +// object oStorableItem = GetFirstItemInInventory(oItemBase); +// while(GetIsObjectValid(oStorableItem)) +// { +// DelayCommand(0.0, InitHash(oStorableItem)); +// oStorableItem = GetNextItemInInventory(oItemBase); +// } +} + +void AddPersistentItem(object oPlayer, object oVault, object oItem) +{ + int i; + string sDataString; + int iQuantity; + int iNumToStore; + int iVaultCount = GetTokenInt(oPlayer, "vault_itemcount"); + int iItemHash; + + // Vault is full + if(iVaultCount >= BANK_VAULT_SIZE) + { + AssignCommand(oPlayer, ActionDoCommand(SetCommandable(FALSE, oPlayer))); + AssignCommand(oPlayer, ActionTakeItem(oItem, oVault)); + AssignCommand(oPlayer, ActionDoCommand(SetCommandable(TRUE, oPlayer))); + FloatingTextStringOnCreature("You cannot place anymore items into your vault.", oPlayer); + return; + } + if(ATS_IsItemNoDrop(oItem)) + return; + + AssignCommand(GetNearestObjectByTag("Banker"), SpeakString("", TALKVOLUME_SILENT_TALK)); + + for(i = 1; i <= BANK_VAULT_SIZE; ++i) + { + // Slot is empty + if(GetTokenInt(oPlayer, "vault_item_" + IntToString(i)) == 0) + { + iNumToStore = 0; + PrintString(GetTag(oItem)); + iItemHash = APTS_HashString(GetTag(oItem), BANK_PRIME_HASH); + if(GetLocalString(GetModule(), "BANK_STORABLE_" + IntToString(iItemHash)) == "") + { + AssignCommand(GetNearestObjectByTag("Banker"), SpeakString("This item seems to be unique. I cannot guarantee the safety of that item.")); + break; + } + sDataString = IntToString(iItemHash); + iQuantity = GetNumStackedItems(oItem); + if(iQuantity < 10) + sDataString += "0"; + sDataString += IntToString(iQuantity); + iNumToStore = StringToInt(sDataString); + break; + } + } + + SetTokenInt(oPlayer, "vault_item_" + IntToString(i), iNumToStore); + SetTokenInt(oPlayer, "vault_itemcount", iVaultCount + 1); +} + +void RemovePersistentItem(object oPlayer, object oItem) +{ + int i; + string sDataString; + int iQuantity; + int iNumToStore; + int iVaultCount = GetTokenInt(oPlayer, "vault_itemcount"); + int iItemHash = APTS_HashString(GetTag(oItem), BANK_PRIME_HASH); + + sDataString = IntToString(iItemHash); + iQuantity = GetNumStackedItems(oItem); + if(iQuantity < 10) + sDataString += "0"; + sDataString += IntToString(iQuantity); + iNumToStore = StringToInt(sDataString); + if(!GetIdentified(oItem)) + iNumToStore = -iNumToStore; + + for(i = 1; i <= BANK_VAULT_SIZE; ++i) + { + if(GetTokenInt(oPlayer, "vault_item_" + IntToString(i)) == iNumToStore) + { + DeleteTokenInt(oPlayer, "vault_item_" + IntToString(i)); + break; + } + } + + SetTokenInt(oPlayer, "vault_itemcount", iVaultCount - 1); +} + + +void MoveItemsToVault(object oMover, object oVault, int bDestroyMover = FALSE, int bTriggerVault = FALSE) +{ + object oItem = GetFirstItemInInventory(oMover); + while(GetIsObjectValid(oItem)) + { + AssignCommand(oMover, ActionGiveItem(oItem, oVault)); + oItem = GetNextItemInInventory(oMover); + } + if(bTriggerVault) + { + object oPC = GetLocalObject(oMover, "pc_obj"); + AssignCommand(oMover, ActionDoCommand(AssignCommand(oPC, DoPlaceableObjectAction(oVault, PLACEABLE_ACTION_USE)))); + } + if(bDestroyMover) + AssignCommand(oMover, ActionDoCommand(DestroyObject(oMover))); + +} +void GrabItemsFromVault(object oMover, object oVault, object oPC, int bJumpToPC = FALSE) +{ + object oItem = GetFirstItemInInventory(oVault); + while(GetIsObjectValid(oItem)) + { + AssignCommand(oMover, ActionTakeItem(oItem, oVault)); + oItem = GetNextItemInInventory(oVault); + } + if(bJumpToPC) + AssignCommand(oMover, ActionJumpToObject(oPC)); + +} diff --git a/_module/nss/barb_slot_imbue.nss b/_module/nss/barb_slot_imbue.nss new file mode 100644 index 0000000..8feeb76 --- /dev/null +++ b/_module/nss/barb_slot_imbue.nss @@ -0,0 +1,6 @@ +#include "spellslot_imbue" + +void main() +{ +SpellSlot(IP_CONST_CLASS_BARBARIAN); +} diff --git a/_module/nss/bard_slot_imbue.nss b/_module/nss/bard_slot_imbue.nss new file mode 100644 index 0000000..d693b40 --- /dev/null +++ b/_module/nss/bard_slot_imbue.nss @@ -0,0 +1,6 @@ +#include "spellslot_imbue" + +void main() +{ +SpellSlot(IP_CONST_CLASS_BARD); +} diff --git a/_module/nss/battleon.nss b/_module/nss/battleon.nss new file mode 100644 index 0000000..1d0e14a --- /dev/null +++ b/_module/nss/battleon.nss @@ -0,0 +1,69 @@ +#include "x0_i0_petrify" +#include "crowd" + +void main() +{ +object oMod = GetModule(); +location lTarget; +object oTarget; +object oSpawn; +effect eLight = EffectVisualEffect(VFX_DUR_LIGHT_BLUE_20); +int oS0 = GetLocalInt(oMod, "challenge"); +int oS1 = GetLocalInt(oMod, "sw_hw"); +int oS2 = GetLocalInt(oMod, "sw_dr"); +int oS3 = GetLocalInt(oMod, "sw_bl"); +int oS4 = GetLocalInt(oMod, "sw_pf"); +int oS5 = GetLocalInt(oMod, "sw_df"); +int oS6 = GetLocalInt(oMod, "sw_pm"); +int oS7 = GetLocalInt(oMod, "sw_bm"); +int oS8 = GetLocalInt(oMod, "sw_lm"); +int oS9 = GetLocalInt(oMod, "sw_ll"); +int oTime = GetLocalInt(oMod, "btime"); +int oTime2 = GetLocalInt(oMod, "btime2"); +if ((oS1!=1)&&(oS2!=1)&&(oS3!=1)&&(oS4!=1)&&(oS5!=1)&&(oS6!=1)&& + (oS1!=7)&&(oS8!=1)&&(oS9!=1)&&(oS0!=1)&&(oTime!=1)) + { + oTarget = GetObjectByTag("fire1"); + RemoveEffectOfType(oTarget, GetEffectType(eLight)); + DelayCommand(0.2, DestroyObject(oTarget)); + oTarget = GetObjectByTag("fire2"); + RemoveEffectOfType(oTarget, GetEffectType(eLight)); + DelayCommand(0.2, DestroyObject(oTarget)); + oTarget = GetObjectByTag("firesound1"); + DestroyObject(oTarget); + oTarget = GetObjectByTag("firesound2"); + DestroyObject(oTarget); + DestroyObject(oTarget); + CrowdPlay(2); + SetLocalInt(oMod, "btime", 1); + SetLocalInt(oMod, "btime2", 0); + } + if (((oS1==1)||(oS2==1)||(oS3==1)||(oS4==1)||(oS5==1)||(oS6==1)|| + (oS1==7)||(oS8==1)||(oS9==1)||(oS0==1))&&(oTime2!=1)) + { + oTarget = GetWaypointByTag("wpfire1"); + lTarget = GetLocation(oTarget); + oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "fire1", lTarget); + oTarget = oSpawn; + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLight, oTarget); + DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_FLAME_M), GetLocation(oTarget))); + oTarget = GetWaypointByTag("wpfire2"); + lTarget = GetLocation(oTarget); + oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "fire2", lTarget); + oTarget = oSpawn; + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLight, oTarget); + DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_FLAME_M), GetLocation(oTarget))); + oTarget = GetWaypointByTag("wpfire1"); + lTarget = GetLocation(oTarget); + oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "firesound1", lTarget); + oTarget = oSpawn; + DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_FLAME_M), GetLocation(oTarget))); + oTarget = GetWaypointByTag("wpfire2"); + lTarget = GetLocation(oTarget); + oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "firesound2", lTarget); + CrowdPlay(1); + SetLocalInt(oMod, "btime2", 1); + SetLocalInt(oMod, "btime", 0); + } +} + diff --git a/_module/nss/bdone_1.nss b/_module/nss/bdone_1.nss new file mode 100644 index 0000000..1df2f69 --- /dev/null +++ b/_module/nss/bdone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/bdone_12.nss b/_module/nss/bdone_12.nss new file mode 100644 index 0000000..69c4069 --- /dev/null +++ b/_module/nss/bdone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/bet_confirm.nss b/_module/nss/bet_confirm.nss new file mode 100644 index 0000000..4422e70 --- /dev/null +++ b/_module/nss/bet_confirm.nss @@ -0,0 +1,12 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iWager = GetLocalInt(oPC, "wager"); +int iBets = GetLocalInt(oPC, "bets_placed"); +iBets++; +SetLocalInt(oPC, "bets_placed", iBets); +TakeGoldFromCreature(iWager, oPC, TRUE); +SetLocalInt(oPC, "bet_confirmed", 1); +SetLocalInt(oPC, "conv_switch", 1); +ExecuteScript("holy_war_war", OBJECT_SELF); +} diff --git a/_module/nss/bet_confirm1.nss b/_module/nss/bet_confirm1.nss new file mode 100644 index 0000000..641f5f6 --- /dev/null +++ b/_module/nss/bet_confirm1.nss @@ -0,0 +1,12 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iWager = GetLocalInt(oPC, "wager"); +int iBets = GetLocalInt(oPC, "bets_placed"); +iBets++; +SetLocalInt(oPC, "bets_placed", iBets); +TakeGoldFromCreature(iWager, oPC, TRUE); +SetLocalInt(oPC, "bet_confirmed", 1); +SetLocalInt(oPC, "conv_switch", 1); +ExecuteScript("holy_war_batt", OBJECT_SELF); +} diff --git a/_module/nss/bet_confirm2.nss b/_module/nss/bet_confirm2.nss new file mode 100644 index 0000000..3858697 --- /dev/null +++ b/_module/nss/bet_confirm2.nss @@ -0,0 +1,12 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iWager = GetLocalInt(oPC, "wager"); +int iBets = GetLocalInt(oPC, "bets_placed"); +iBets++; +SetLocalInt(oPC, "bets_placed", iBets); +TakeGoldFromCreature(iWager, oPC, TRUE); +SetLocalInt(oPC, "bet_confirmed", 1); +SetLocalInt(oPC, "conv_switch", 1); +ExecuteScript("holy_war_team", OBJECT_SELF); +} diff --git a/_module/nss/bet_confirm4.nss b/_module/nss/bet_confirm4.nss new file mode 100644 index 0000000..3ebd1a0 --- /dev/null +++ b/_module/nss/bet_confirm4.nss @@ -0,0 +1,12 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iWager = GetLocalInt(oPC, "wager"); +int iBets = GetLocalInt(oPC, "bets_placed"); +iBets++; +SetLocalInt(oPC, "bets_placed", iBets); +TakeGoldFromCreature(iWager, oPC, TRUE); +SetLocalInt(oPC, "bet_confirmed", 1); +SetLocalInt(oPC, "conv_switch", 1); +ExecuteScript("holy_war_duel", OBJECT_SELF); +} diff --git a/_module/nss/bet_type.nss b/_module/nss/bet_type.nss new file mode 100644 index 0000000..210b7a6 --- /dev/null +++ b/_module/nss/bet_type.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "team_bet", 3); +} diff --git a/_module/nss/bet_type2.nss b/_module/nss/bet_type2.nss new file mode 100644 index 0000000..63b24df --- /dev/null +++ b/_module/nss/bet_type2.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bet_type", 0); +} diff --git a/_module/nss/bl_imbue25.nss b/_module/nss/bl_imbue25.nss new file mode 100644 index 0000000..336a0c5 --- /dev/null +++ b/_module/nss/bl_imbue25.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bldone_1", 1); +DamRes(1,2); +} diff --git a/_module/nss/bl_imbue252.nss b/_module/nss/bl_imbue252.nss new file mode 100644 index 0000000..b20b77a --- /dev/null +++ b/_module/nss/bl_imbue252.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bldone_12", 1); +DamRes2(1,2); +} diff --git a/_module/nss/bldred_imbue_2.nss b/_module/nss/bldred_imbue_2.nss new file mode 100644 index 0000000..87e3635 --- /dev/null +++ b/_module/nss/bldred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bldone_2", 1); +DamRes(1, 3); +} diff --git a/_module/nss/bldred_imbue_22.nss b/_module/nss/bldred_imbue_22.nss new file mode 100644 index 0000000..5538575 --- /dev/null +++ b/_module/nss/bldred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bldone_22", 1); +DamRes2(1, 3); +} diff --git a/_module/nss/bldred_imbue_3.nss b/_module/nss/bldred_imbue_3.nss new file mode 100644 index 0000000..d48a2c4 --- /dev/null +++ b/_module/nss/bldred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bldone_3", 1); +DamRes(1,4); +} diff --git a/_module/nss/bldred_imbue_32.nss b/_module/nss/bldred_imbue_32.nss new file mode 100644 index 0000000..085f399 --- /dev/null +++ b/_module/nss/bldred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "blmax_reduction2", 1); +SetLocalInt(oPC, "bldone_32", 1); +DamRes2(1,4); +} diff --git a/_module/nss/bldred_imbue_4.nss b/_module/nss/bldred_imbue_4.nss new file mode 100644 index 0000000..587e3d1 --- /dev/null +++ b/_module/nss/bldred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bldone_4", 1); +DamRes(1,5); +} diff --git a/_module/nss/bldred_imbue_5.nss b/_module/nss/bldred_imbue_5.nss new file mode 100644 index 0000000..d7ad01c --- /dev/null +++ b/_module/nss/bldred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bldone_5", 1); +SetLocalInt(oPC, "blmax_reduction", 1); +DamRes(1,6); +} diff --git a/_module/nss/bleeding_config.nss b/_module/nss/bleeding_config.nss new file mode 100644 index 0000000..540d974 --- /dev/null +++ b/_module/nss/bleeding_config.nss @@ -0,0 +1,40 @@ +// bleeding_config by Brian "spilth" Kelly +// For Neverwinter Nights - Bleeding Tutorial + +// *** Configuration Variables - These are meant to be changed *** + +int iStabilizationChance = 0; + +// GUI Options When Disabled (0 HP) +string sDisabledGUIMessage = "You've been disabled. You can either wait for another player to help or respawn if nobody else is around."; +int bAllowRespawnWhenDisabled = TRUE; +int bAllowWaitForHelpWhenDisabled = TRUE; + +// GUI Options When Stable (-1 to -9 and not bleeding) +string sStableGUIMessage = "You've stabilized! You can either wait for another player to help or respawn if nobody else is around."; +int bAllowRespawnWhenStable = TRUE; +int bAllowWaitForHelpWhenStable = TRUE; + +// GUI Options When Dead (-10 or lower) +string sDeathGUIMessage = "You've died! Here are your options..."; +int bAllowRespawnWhenDead = TRUE; +int bAllowWaitForHelpWhenDead = TRUE; + +// *** Constants - DO NOT CHANGE THESE! *** +int PC_HEALTH_ALIVE = 0; // HP > 0 +int PC_HEALTH_DISABLED = 1; // HP = 0 +int PC_HEALTH_DYING = 2; // -10 < HP < 0 & Bleeding +int PC_HEALTH_STABLE = 3; // -10 < HP < 0 & Stabilized +int PC_HEALTH_DEAD = 4; // HP <= -10 + +// A tool to help us test +void SetPCHitPoints(object oPC, int iTargetHitPoints) { + if (GetIsPC(oPC)) { + int iDamage = GetCurrentHitPoints(oPC) - iTargetHitPoints; + effect eDamage = EffectDamage(iDamage, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_ENERGY); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eDamage, oPC); + + } + +} +//void main(){} diff --git a/_module/nss/blmax_reached.nss b/_module/nss/blmax_reached.nss new file mode 100644 index 0000000..2e03476 --- /dev/null +++ b/_module/nss/blmax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "blmax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/blmax_reached1.nss b/_module/nss/blmax_reached1.nss new file mode 100644 index 0000000..8e83845 --- /dev/null +++ b/_module/nss/blmax_reached1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "blmax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/blmax_reached12.nss b/_module/nss/blmax_reached12.nss new file mode 100644 index 0000000..df8edd5 --- /dev/null +++ b/_module/nss/blmax_reached12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "blmax_reduction2") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/blmax_reached2.nss b/_module/nss/blmax_reached2.nss new file mode 100644 index 0000000..b44f772 --- /dev/null +++ b/_module/nss/blmax_reached2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "blmax_reduction2") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/blred1_1.nss b/_module/nss/blred1_1.nss new file mode 100644 index 0000000..b9f8765 --- /dev/null +++ b/_module/nss/blred1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "bldone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bldone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/blred1_12.nss b/_module/nss/blred1_12.nss new file mode 100644 index 0000000..597c785 --- /dev/null +++ b/_module/nss/blred1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "bldone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bldone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/blred_10.nss b/_module/nss/blred_10.nss new file mode 100644 index 0000000..18b80d5 --- /dev/null +++ b/_module/nss/blred_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/blred_11.nss b/_module/nss/blred_11.nss new file mode 100644 index 0000000..f87a0b8 --- /dev/null +++ b/_module/nss/blred_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bldone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/blred_12.nss b/_module/nss/blred_12.nss new file mode 100644 index 0000000..fd56242 --- /dev/null +++ b/_module/nss/blred_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bldone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/blred_2.nss b/_module/nss/blred_2.nss new file mode 100644 index 0000000..d256523 --- /dev/null +++ b/_module/nss/blred_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bldone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/blred_22.nss b/_module/nss/blred_22.nss new file mode 100644 index 0000000..024ff94 --- /dev/null +++ b/_module/nss/blred_22.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bldone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/blred_3.nss b/_module/nss/blred_3.nss new file mode 100644 index 0000000..24e9f73 --- /dev/null +++ b/_module/nss/blred_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/blred_32.nss b/_module/nss/blred_32.nss new file mode 100644 index 0000000..afc764e --- /dev/null +++ b/_module/nss/blred_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/blred_4.nss b/_module/nss/blred_4.nss new file mode 100644 index 0000000..b837c9e --- /dev/null +++ b/_module/nss/blred_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bldone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/blred_42.nss b/_module/nss/blred_42.nss new file mode 100644 index 0000000..d2dccc0 --- /dev/null +++ b/_module/nss/blred_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bldone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/blred_6.nss b/_module/nss/blred_6.nss new file mode 100644 index 0000000..8019a03 --- /dev/null +++ b/_module/nss/blred_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bldone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/blred_62.nss b/_module/nss/blred_62.nss new file mode 100644 index 0000000..d3a8d34 --- /dev/null +++ b/_module/nss/blred_62.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bldone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/blred_7.nss b/_module/nss/blred_7.nss new file mode 100644 index 0000000..1154cbf --- /dev/null +++ b/_module/nss/blred_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/blred_8.nss b/_module/nss/blred_8.nss new file mode 100644 index 0000000..69b5364 --- /dev/null +++ b/_module/nss/blred_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bldone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/blred_9.nss b/_module/nss/blred_9.nss new file mode 100644 index 0000000..e48754a --- /dev/null +++ b/_module/nss/blred_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bldone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/blud_imbue.nss b/_module/nss/blud_imbue.nss new file mode 100644 index 0000000..640ae06 --- /dev/null +++ b/_module/nss/blud_imbue.nss @@ -0,0 +1,8 @@ +#include "imbue_include" +void main() +{ +SetLocalInt(GetPCSpeaker(), "bfire_ldb", 1); +ImbueWeapon(VFX_FNF_GAS_EXPLOSION_EVIL, IP_CONST_DAMAGETYPE_BLUDGEONING); +} + + diff --git a/_module/nss/blud_imbue_arm.nss b/_module/nss/blud_imbue_arm.nss new file mode 100644 index 0000000..a0a6977 --- /dev/null +++ b/_module/nss/blud_imbue_arm.nss @@ -0,0 +1,7 @@ +#include "imbue_include" +void main() +{ +ImbueArmour(VFX_FNF_GREATER_RUIN, IP_CONST_DAMAGETYPE_BLUDGEONING); +} + + diff --git a/_module/nss/bodd_gold.nss b/_module/nss/bodd_gold.nss new file mode 100644 index 0000000..ec05c99 --- /dev/null +++ b/_module/nss/bodd_gold.nss @@ -0,0 +1,13 @@ +void main() +{ +object oMod = GetModule(); +int oX1 = GetLocalInt(oMod, "xcheck"); +int oC1 = GetLocalInt(oMod, "challenge"); +if ((oX1!=1)&&(oC1!=1)) +{ +object oTarget = OBJECT_SELF; +string sItemTemplate1 = "nw_it_gold001"; // gold +int nStackSize = 20000; // Create 20000 gold; +CreateItemOnObject(sItemTemplate1, oTarget, nStackSize); +} +} diff --git a/_module/nss/boot_shop.nss b/_module/nss/boot_shop.nss new file mode 100644 index 0000000..07e84e9 --- /dev/null +++ b/_module/nss/boot_shop.nss @@ -0,0 +1,26 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; + +if (GetItemPossessedBy(oPC, "nordock_token")!=OBJECT_INVALID) +oTarget = GetObjectByTag("n_boot_shop"); +else +oTarget = GetObjectByTag("boot_shop"); + +PlaySound("as_sw_genericop1"); +OpenStore(oTarget, oPC, 0, 0); + +} + diff --git a/_module/nss/boss_gold.nss b/_module/nss/boss_gold.nss new file mode 100644 index 0000000..4784a7b --- /dev/null +++ b/_module/nss/boss_gold.nss @@ -0,0 +1,13 @@ +void main() +{ +object oMod = GetModule(); +int oX1 = GetLocalInt(oMod, "xcheck"); +int oC1 = GetLocalInt(oMod, "challenge"); +if ((oX1!=1)&&(oC1!=1)) +{ +object oTarget = OBJECT_SELF; +string sItemTemplate1 = "nw_it_gold001"; // gold +int nStackSize = 15000; // Create 20000 gold; +CreateItemOnObject(sItemTemplate1, oTarget, nStackSize); +} +} diff --git a/_module/nss/bossdeath.nss b/_module/nss/bossdeath.nss new file mode 100644 index 0000000..7516f5a --- /dev/null +++ b/_module/nss/bossdeath.nss @@ -0,0 +1,147 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//:://////////////////////////////////// Lucifers mistress / Gate Keeper +#include "spawner" +#include "x0_i0_petrify" +#include "loot" +#include "rank" + +void main() +{ + + + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + object oSpawner = GetObjectByTag("spawner"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + int oChest; + int iKilled = GetLocalInt(oPC, "iKilled"); + int oLife = GetLocalInt(oPC, "lives"); + int nInt2=GetLocalInt(oMod, "d2"); + int nInt3=GetLocalInt(oMod, "d4"); + int nInt5=GetLocalInt(oMod, "d5"); + int nInt4=GetLocalInt(oMod, "d2a"); + int nInt6=GetLocalInt(oMod, "d3"); + int oExploit = GetLocalInt(oMod, "xcheck"); + int iMode = GetLocalInt(oMod, "gamemode"); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_lm", 0); + SetLocalInt(oMod, "ch_lm", 0); + int nInt; + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + if ((nInt2!=1)&&(nInt3!=1)&&(nInt4!=1)&&(nInt5!=1)&&(nInt6!=1)) + { + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + FloatingTextStringOnCreature("Victory", oPC); + + SetLocalInt(oPC, "bossdead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 12000); + } + } + + if(nInt2==1) + { + QuickRestore(oPC); + ++iKilled; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + SetLocalInt(oMod, "d2_complete", 1); + if (iMode==1) + {AddJournalQuestEntry("boss2_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss2", 1, oPC, FALSE, FALSE);} + DelayCommand(6.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(6.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + + } + + if ((nInt4==1)||(nInt5==1)||(nInt6==1)||(nInt3==1)) + { + ++iKilled; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + ++oLife; + SetLocalInt(oPC, "lives", oLife); + Message(2.4, "Bonus Life Granted", oPC); + PCEffect(3.5, VFX_IMP_SUPER_HEROISM, oPC); + DelayCommand(2.5, AssignCommand(oPC, ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); + if ((nInt3!=1)&&(nInt5!=1)&&(nInt6!=1)) + {BattleRest(oPC);} + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "thor", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "lord", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + } + + AssignCommand(oPC, PlaySound("vs_nzeliepm_dead")); + object oTarget= OBJECT_SELF; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_FIRESTORM), GetLocation(oTarget)); + //if (nInt != OBJECT_TYPE_WAYPOINT) + //ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES), oTarget); + //else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + //EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES), GetLocation(oTarget)); + + ExecuteScript("nw_c2_default7", OBJECT_SELF); +} diff --git a/_module/nss/bossdeath2.nss b/_module/nss/bossdeath2.nss new file mode 100644 index 0000000..28f01b9 --- /dev/null +++ b/_module/nss/bossdeath2.nss @@ -0,0 +1,171 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// +#include "x0_i0_petrify" +#include "spawner" +#include "loot" +#include "rank" + +void main() +{ + + + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + int nInt3=GetLocalInt(oMod, "d5"); + int nInt4=GetLocalInt(oMod, "d2a"); + int oExploit = GetLocalInt(oMod, "xcheck"); + int nInt; + int iKilled = GetLocalInt(oPC, "iKilled"); + int oChest; + int iMode = GetLocalInt(oMod, "gamemode"); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "ch_ll", 0); + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + + if ((nInt3!=1)&&(nInt4!=1)) + { + SetLocalInt(oPC, "lorddead", 1); + SetLocalInt(oMod, "challenge",0); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + FloatingTextStringOnCreature("Victory", oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + SetLocalInt(oPC, "bossdead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 15000); + } + + } + if(nInt3==1) + { + QuickRestore(oPC); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + FloatingTextStringOnCreature("Victory", oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + SetLocalInt(oMod, "d5_complete", 1); + SetLocalInt(oMod, "challenge",0); + DelayCommand(6.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(6.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + DelayCommand(7.0, FloatingTextStringOnCreature("Congratulations!", oPC)); + DelayCommand(9.0, FloatingTextStringOnCreature("You are Almighty!", oPC)); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + if (iMode==1) + {AddJournalQuestEntry("boss6_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss6", 1, oPC, FALSE, FALSE);} + } + if(nInt4==1) + { + QuickRestore(oPC); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + FloatingTextStringOnCreature("Victory", oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + SetLocalInt(oMod, "d2a_complete", 1); + DelayCommand(6.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(6.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + DelayCommand(7.0, FloatingTextStringOnCreature("Congratulations!", oPC)); + DelayCommand(9.0, FloatingTextStringOnCreature("You truly are a Warrior Lord!", oPC)); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge",0); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + if (iMode==1) + {AddJournalQuestEntry("boss3_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss3", 1, oPC, FALSE, FALSE);} + } + + } + if (oExploit==1) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + } + + + + + object oSpawner = GetObjectByTag("spawner"); + AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + object oTarget= OBJECT_SELF; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_FIRESTORM), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES), GetLocation(oTarget)); + AssignCommand(oPC, PlaySound("vs_nzorxxxm_vict")); + ExecuteScript("nw_c2_default7", OBJECT_SELF); +} + diff --git a/_module/nss/bossdeath2a.nss b/_module/nss/bossdeath2a.nss new file mode 100644 index 0000000..e70e70c --- /dev/null +++ b/_module/nss/bossdeath2a.nss @@ -0,0 +1,154 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::///////////////////////////////////Thor Death +#include "x0_i0_petrify" +#include "spawner" +#include "loot" +#include "rank" + +void main() +{ + + + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + int nInt3=GetLocalInt(oMod, "d5"); + int nInt4=GetLocalInt(oMod, "d2a"); + int oExploit = GetLocalInt(oMod, "xcheck"); + int nInt; + int iKilled = GetLocalInt(oPC, "iKilled"); + int oChest; + int iMode = GetLocalInt(oMod, "gamemode"); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "ch_ll", 0); + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + + if ((nInt3!=1)&&(nInt4!=1)) + { + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + FloatingTextStringOnCreature("Victory", oPC); + SetLocalInt(oPC, "bossdead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 15000); + } + } + if(nInt3==1) + { + QuickRestore(oPC); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + SetLocalInt(oMod, "d5_complete", 1); + DelayCommand(6.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(6.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + if (iMode==1) + {AddJournalQuestEntry("boss6_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss6", 1, oPC, FALSE, FALSE);} + } + if(nInt4==1) + { + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + SetLocalInt(oMod, "d2a_complete", 1); + DelayCommand(6.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(6.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + if (iMode==1) + {AddJournalQuestEntry("boss3_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss3", 1, oPC, FALSE, FALSE);} + } + } + if (oExploit==1) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + } + SetLocalInt(oMod, "challenge",0); + + + + + object oSpawner = GetObjectByTag("spawner"); + AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + object oTarget= OBJECT_SELF; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_FIRESTORM), GetLocation(oTarget)); + //if (nInt != OBJECT_TYPE_WAYPOINT) + //ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES), oTarget); + //else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + //EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES), GetLocation(oTarget)); + AssignCommand(oPC, PlaySound("vs_nzorxxxm_vict")); + ExecuteScript("nw_c2_default7", OBJECT_SELF); +} + diff --git a/_module/nss/bossdeath2c.nss b/_module/nss/bossdeath2c.nss new file mode 100644 index 0000000..ccaa359 --- /dev/null +++ b/_module/nss/bossdeath2c.nss @@ -0,0 +1,192 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////Baal / Thor [challenge] +#include "x0_i0_petrify" +#include "spawner" +#include "loot" +#include "rank" + +void main() +{ + + + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + int nInt2=GetLocalInt(oMod, "d4"); + int nInt3=GetLocalInt(oMod, "d5"); + int nInt4=GetLocalInt(oMod, "d2a"); + int nInt5=GetLocalInt(oMod, "d3"); + int oExploit = GetLocalInt(oMod, "xcheck"); + int iMode = GetLocalInt(oMod, "gamemode"); + //string oDebug = IntToString(nInt3); + //Message(8.0, oDebug, oPC); + int nInt; + int iKilled = GetLocalInt(oPC, "iKilled"); + int oChest; + int oLife = GetLocalInt(oPC, "lives"); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "ch_ll", 0); + + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + if ((nInt2!=1)&&(nInt3!=1)&&(nInt4!=1)&&(nInt5!=1)) + { + SetLocalInt(oPC, "lorddead", 1); + SetLocalInt(oMod, "challenge",0); + + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + FloatingTextStringOnCreature("Victory", oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 15000); + + } + + if ((GetItemPossessedBy(oPC, "divine_talisman")== OBJECT_INVALID)&& + (GetItemPossessedBy(oPC, "dark_talisman")== OBJECT_INVALID)&& + (GetItemPossessedBy(oPC, "divine_talisman2")== OBJECT_INVALID)&& + (GetItemPossessedBy(oPC, "dark_talisman2")== OBJECT_INVALID)&& + (GetItemPossessedBy(oPC, "div_key")== OBJECT_INVALID)&& + (GetLocalInt(oMod, "hwar_on")!=1)) + { + CreateItemOnObject("div_key", OBJECT_SELF, 1); + } + + } + if(nInt2==1) + { + QuickRestore(oPC); + SetLocalInt(oPC, "lorddead", 1); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + SetLocalInt(oMod, "d4_complete", 1); + if (iMode==1) + {AddJournalQuestEntry("boss5_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss5", 1, oPC, FALSE, FALSE);} + SetLocalInt(oMod, "challenge", 0); + DelayCommand(5.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(5.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + //DelayCommand(7.0, FloatingTextStringOnCreature("Congratulations!", oPC)); + //DelayCommand(9.0, FloatingTextStringOnCreature("Can you survive the ultimate challenge!", oPC)); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + if (iMode==1) + {AddJournalQuestEntry("boss6_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss6", 1, oPC, FALSE, FALSE);} + } + if ((nInt4==1)&&(GetLocalInt(oMod, "d2a_complete")!=1)) + { + QuickRestore(oPC); + SetLocalInt(oMod, "challenge",0); + SetLocalInt(oPC, "lorddead", 1); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + SetLocalInt(oMod, "d2a_complete", 1); + AddJournalQuestEntry("boss3", 1, oPC, FALSE, FALSE); + DelayCommand(6.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(6.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + if (iMode==1) + {AddJournalQuestEntry("boss3_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss3", 1, oPC, FALSE, FALSE);} + } + if ((nInt5==1)||(nInt3==1)) + { + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + ++oLife; + SetLocalInt(oPC, "lives", oLife); + Message(2.4, "Bonus Life Granted", oPC); + PCEffect(3.5, VFX_IMP_SUPER_HEROISM, oPC); + DelayCommand(2.5, AssignCommand(oPC, ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); + if (nInt3!=1) + {BattleRest(oPC);} + + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "angel", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "lucifer", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + } + + object oSpawner = GetObjectByTag("spawner"); + AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + object oTarget= OBJECT_SELF; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_FIRESTORM), GetLocation(oTarget)); + //if (nInt != OBJECT_TYPE_WAYPOINT) + //ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES), oTarget); + //else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + //EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES), GetLocation(oTarget)); + AssignCommand(oPC, PlaySound("vs_nzorxxxm_vict")); + ExecuteScript("nw_c2_default7", OBJECT_SELF); +} + diff --git a/_module/nss/bossdeath3.nss b/_module/nss/bossdeath3.nss new file mode 100644 index 0000000..25bbad6 --- /dev/null +++ b/_module/nss/bossdeath3.nss @@ -0,0 +1,143 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////Lucifer Death [challenge mode] +#include "spawner" +#include "x0_i0_petrify" +#include "loot" +#include "rank" + +void main() +{ + + + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oSpawner = GetObjectByTag("spawner"); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + int oChest4; + int oChest5; + int oChest6; + int iKilled = GetLocalInt(oPC, "iKilled"); + int oExploit = GetLocalInt(oMod, "xcheck"); + int nInt3=GetLocalInt(oMod, "d3"); + int nInt4=GetLocalInt(oMod, "d4"); + int nInt5=GetLocalInt(oMod, "d5"); + int nInt; + int iMode = GetLocalInt(oMod, "gamemode"); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "challenge", 0); + + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + oChest4 = GetLocalInt(oPC, "chest4"); + oChest5 = GetLocalInt(oPC, "chest5"); + oChest6 = GetLocalInt(oPC, "chest6"); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + + if ((nInt3!=1)&&(nInt5!=1)) + { + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 20000); + } + } + if ((nInt3==1)||(nInt4==1)||(nInt5==1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + } + + if (nInt3==1) + { + QuickRestore(oPC); + SetLocalInt(oMod, "d3_complete", 1); + if (iMode==1) + {AddJournalQuestEntry("boss4_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss4", 1, oPC, FALSE, FALSE);} + DelayCommand(6.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(6.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + } + if (nInt5==1) + { + QuickRestore(oPC); + SetLocalInt(oMod, "d5_complete", 1); + if (iMode==1) + {AddJournalQuestEntry("boss6_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss6", 1, oPC, FALSE, FALSE);} + DelayCommand(6.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(6.0, FloatingTextStringOnCreature("S U P R E M E W I N N E R", oPC)); + + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + } + } + if (iMode==1) + {AddJournalQuestEntry("tyriel", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("lucifer", 1, oPC, FALSE, FALSE);} + SetLocalInt(oPC, "luciferdead", 1); + + //AssignCommand(oPC, PlaySound("vs_nzeliepm_dead")); + + SetLocked(GetObjectByTag("arena_gate"), FALSE); + object oTarget= OBJECT_SELF; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_FIRESTORM), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES), GetLocation(oTarget)); + ExecuteScript("nw_c2_default7", OBJECT_SELF); + +} diff --git a/_module/nss/bow_check.nss b/_module/nss/bow_check.nss new file mode 100644 index 0000000..0aa04b7 --- /dev/null +++ b/_module/nss/bow_check.nss @@ -0,0 +1,25 @@ +//:://///////////////////////////////////////////// +//:: x2_con_sw_haverh +//:: Copyright (c) 2003 Bioware Corp. +//::////////////////////////////////////////////// +/* + Only returns true if you have a valid + item in your right hand. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: September 2003 +//::////////////////////////////////////////////// + +int StartingConditional() +{ + object oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, GetPCSpeaker()); + if ((GetBaseItemType(oItem) == BASE_ITEM_LONGBOW)|| + (GetBaseItemType(oItem) == BASE_ITEM_SHORTBOW)|| + (GetBaseItemType(oItem) == BASE_ITEM_HEAVYCROSSBOW)|| + (GetBaseItemType(oItem) == BASE_ITEM_LIGHTCROSSBOW)) + { + return TRUE; + } + return FALSE; +} diff --git a/_module/nss/bow_shop.nss b/_module/nss/bow_shop.nss new file mode 100644 index 0000000..e35d640 --- /dev/null +++ b/_module/nss/bow_shop.nss @@ -0,0 +1,20 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +oTarget = GetObjectByTag("bow_shop"); +PlaySound("it_bow_xbows_lrg"); +OpenStore(oTarget, oPC, 0, 0); +} + diff --git a/_module/nss/bracer_ac.nss b/_module/nss/bracer_ac.nss new file mode 100644 index 0000000..0127f65 --- /dev/null +++ b/_module/nss/bracer_ac.nss @@ -0,0 +1,6 @@ +#include "ac_imbue" + +void main () +{ +ArmourBonus(d3()); +} diff --git a/_module/nss/braz_act.nss b/_module/nss/braz_act.nss new file mode 100644 index 0000000..95773ac --- /dev/null +++ b/_module/nss/braz_act.nss @@ -0,0 +1,4 @@ +void main() +{ +PlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +} diff --git a/_module/nss/bred_0.nss b/_module/nss/bred_0.nss new file mode 100644 index 0000000..d9027ac --- /dev/null +++ b/_module/nss/bred_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/bred_02.nss b/_module/nss/bred_02.nss new file mode 100644 index 0000000..9d280e9 --- /dev/null +++ b/_module/nss/bred_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bldone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/bred_1.nss b/_module/nss/bred_1.nss new file mode 100644 index 0000000..8b988ec --- /dev/null +++ b/_module/nss/bred_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "bldone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/bred_12.nss b/_module/nss/bred_12.nss new file mode 100644 index 0000000..85dfd08 --- /dev/null +++ b/_module/nss/bred_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "bldone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/btt_imbue25.nss b/_module/nss/btt_imbue25.nss new file mode 100644 index 0000000..3ad54d7 --- /dev/null +++ b/_module/nss/btt_imbue25.nss @@ -0,0 +1,8 @@ +#include "ac_imbue2" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bttdone_1", 1); +DodgeBonus(1); +} diff --git a/_module/nss/bttdone_1.nss b/_module/nss/bttdone_1.nss new file mode 100644 index 0000000..18042c8 --- /dev/null +++ b/_module/nss/bttdone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/bttdred_imbue_2.nss b/_module/nss/bttdred_imbue_2.nss new file mode 100644 index 0000000..80291ae --- /dev/null +++ b/_module/nss/bttdred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "ac_imbue2" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bttdone_2", 1); +DodgeBonus(2); +} diff --git a/_module/nss/bttdred_imbue_3.nss b/_module/nss/bttdred_imbue_3.nss new file mode 100644 index 0000000..77b676a --- /dev/null +++ b/_module/nss/bttdred_imbue_3.nss @@ -0,0 +1,9 @@ +#include "ac_imbue2" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bttdone_3", 1); +SetLocalInt(oPC, "bttmax_reduction", 1); +DodgeBonus(3); +} diff --git a/_module/nss/bttdred_imbue_4.nss b/_module/nss/bttdred_imbue_4.nss new file mode 100644 index 0000000..f7d41b2 --- /dev/null +++ b/_module/nss/bttdred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "ac_imbue2" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bttdone_4", 1); +DodgeBonus(4); +} diff --git a/_module/nss/bttdred_imbue_5.nss b/_module/nss/bttdred_imbue_5.nss new file mode 100644 index 0000000..a90f118 --- /dev/null +++ b/_module/nss/bttdred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "ac_imbue2" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "bttdone_5", 1); +SetLocalInt(oPC, "bttmax_reduction", 1); +DodgeBonus(5); +} diff --git a/_module/nss/btted_1.nss b/_module/nss/btted_1.nss new file mode 100644 index 0000000..c628a61 --- /dev/null +++ b/_module/nss/btted_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/bttmax_reached.nss b/_module/nss/bttmax_reached.nss new file mode 100644 index 0000000..6cfb55e --- /dev/null +++ b/_module/nss/bttmax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttmax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/bttmax_reached2.nss b/_module/nss/bttmax_reached2.nss new file mode 100644 index 0000000..fa4c14b --- /dev/null +++ b/_module/nss/bttmax_reached2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttmax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/bttred1_1.nss b/_module/nss/bttred1_1.nss new file mode 100644 index 0000000..b7e1b9c --- /dev/null +++ b/_module/nss/bttred1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/bttred_0.nss b/_module/nss/bttred_0.nss new file mode 100644 index 0000000..3b54013 --- /dev/null +++ b/_module/nss/bttred_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/bttred_10.nss b/_module/nss/bttred_10.nss new file mode 100644 index 0000000..41a7915 --- /dev/null +++ b/_module/nss/bttred_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/bttred_11.nss b/_module/nss/bttred_11.nss new file mode 100644 index 0000000..d5396e3 --- /dev/null +++ b/_module/nss/bttred_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/bttred_12.nss b/_module/nss/bttred_12.nss new file mode 100644 index 0000000..770fc56 --- /dev/null +++ b/_module/nss/bttred_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/bttred_2.nss b/_module/nss/bttred_2.nss new file mode 100644 index 0000000..cee9d8d --- /dev/null +++ b/_module/nss/bttred_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/bttred_3.nss b/_module/nss/bttred_3.nss new file mode 100644 index 0000000..270e1d7 --- /dev/null +++ b/_module/nss/bttred_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/bttred_4.nss b/_module/nss/bttred_4.nss new file mode 100644 index 0000000..99da366 --- /dev/null +++ b/_module/nss/bttred_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/bttred_6.nss b/_module/nss/bttred_6.nss new file mode 100644 index 0000000..183ab26 --- /dev/null +++ b/_module/nss/bttred_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/bttred_7.nss b/_module/nss/bttred_7.nss new file mode 100644 index 0000000..ddb8b1e --- /dev/null +++ b/_module/nss/bttred_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/bttred_8.nss b/_module/nss/bttred_8.nss new file mode 100644 index 0000000..bb3dd28 --- /dev/null +++ b/_module/nss/bttred_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/bttred_9.nss b/_module/nss/bttred_9.nss new file mode 100644 index 0000000..bbdcab6 --- /dev/null +++ b/_module/nss/bttred_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "bttdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/buff_talk.nss b/_module/nss/buff_talk.nss new file mode 100644 index 0000000..1493ddb --- /dev/null +++ b/_module/nss/buff_talk.nss @@ -0,0 +1,45 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ +object oPC = GetLastUsedBy(); +if (!GetIsPC(oPC)) return; +object oTarget; +object oMod = GetModule(); +object oCrystal1 = GetObjectByTag("crystal1"); +object oCrystal2 = GetObjectByTag("crystal2"); +object oCrystal3 = GetObjectByTag("crystal3"); +int lState = GetLocalInt(oMod, "lever_state"); +if (lState!=1) +{ +DelayCommand(0.0, PlaySound("sce_positive")); +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Power Crystals activated", oPC)); +//ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(1.0, AssignCommand(oCrystal1, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE))); +DelayCommand(1.0, AssignCommand(oCrystal2, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE))); +DelayCommand(1.0, AssignCommand(oCrystal3, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE))); +SetLocalInt(oMod, "lever_state", 1); +RecomputeStaticLighting(GetArea(OBJECT_SELF)); +} +else +{ +//ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +DelayCommand(0.0, PlaySound("sce_negative")); +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Power Crystals deactivated", oPC)); +DelayCommand(1.0, AssignCommand(oCrystal1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +DelayCommand(1.0, AssignCommand(oCrystal2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +DelayCommand(1.0, AssignCommand(oCrystal3, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +SetLocalInt(oMod, "lever_state", 0); +RecomputeStaticLighting(GetArea(OBJECT_SELF)); +} +} + + diff --git a/_module/nss/buff_vote.nss b/_module/nss/buff_vote.nss new file mode 100644 index 0000000..883c9f1 --- /dev/null +++ b/_module/nss/buff_vote.nss @@ -0,0 +1,17 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ +object oPC = GetLastUsedBy(); + +object oTarget = GetObjectByTag("rune1"); +AssignCommand(oTarget, ActionStartConversation(oPC, "crystals_vote")); +} + + diff --git a/_module/nss/camera_tune.nss b/_module/nss/camera_tune.nss new file mode 100644 index 0000000..fd24eba --- /dev/null +++ b/_module/nss/camera_tune.nss @@ -0,0 +1,36 @@ +#include "in_g_cutscene" + +void main() +{ +object oPC = GetPCSpeaker(); + +GestaltStartCutscene(oPC, "",TRUE,TRUE,TRUE,TRUE,2); +GestaltCameraFade(0.0, oPC, FADE_IN,FADE_SPEED_SLOW); +SetLocalFloat(oPC,"fCameraDirection",180.0); +SetLocalFloat(oPC,"fCameraRange",15.0); +SetLocalFloat(oPC,"fCameraPitch",60.0); + + +GestaltCameraMove (0.0, + 180.0,15.0,60.0, + 320.0, 18.0,60.0, + 10.0,30.0,oPC); + + GestaltCameraMove (10.0, + 320.0,18.0,60.0, + 325.0,20.0,60.0, + 8.0,30.0,oPC); + +GestaltCameraMove (18.0, + 325.0,20.0,60.0, + 330.0,15.0,50.0, + 2.0,30.0,oPC); + +GestaltCameraMove (20.0, + 330.0,15.0,65.0, + 340.0,12.0,70.0, + 5.0,30.0,oPC); + +GestaltCameraFade (40.0, oPC, FADE_CROSS, FADE_SPEED_MEDIUM, 2.0); +GestaltStopCutscene (42.0, oPC); +} diff --git a/_module/nss/castgmweapon.nss b/_module/nss/castgmweapon.nss new file mode 100644 index 0000000..d2d207b --- /dev/null +++ b/_module/nss/castgmweapon.nss @@ -0,0 +1,24 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + + TakeGoldFromCreature(500, GetPCSpeaker(), TRUE); + +object oPC = GetPCSpeaker(); + +object oCaster; +oCaster = OBJECT_SELF; + +object oTarget; +oTarget = oPC; + +AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_GREATER_MAGIC_WEAPON, oTarget, METAMAGIC_ANY, TRUE, 40, PROJECTILE_PATH_TYPE_DEFAULT, FALSE)); + +} + diff --git a/_module/nss/castgrestoration.nss b/_module/nss/castgrestoration.nss new file mode 100644 index 0000000..27e63e6 --- /dev/null +++ b/_module/nss/castgrestoration.nss @@ -0,0 +1,22 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); + +object oCaster; +oCaster = OBJECT_SELF; + +object oTarget; +oTarget = oPC; + +AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_GREATER_RESTORATION, oTarget, METAMAGIC_ANY, TRUE, 40, PROJECTILE_PATH_TYPE_DEFAULT, FALSE)); + +} + diff --git a/_module/nss/castgspellmantle.nss b/_module/nss/castgspellmantle.nss new file mode 100644 index 0000000..f4f54e0 --- /dev/null +++ b/_module/nss/castgspellmantle.nss @@ -0,0 +1,26 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + + TakeGoldFromCreature(1000, GetPCSpeaker(), TRUE); + +object oPC = GetPCSpeaker(); + +object oCaster; +oCaster = OBJECT_SELF; + +object oTarget; +oTarget = oPC; + +AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_GREATER_SPELL_MANTLE, oTarget, METAMAGIC_ANY, TRUE, 40, PROJECTILE_PATH_TYPE_DEFAULT, FALSE)); + +} + + + diff --git a/_module/nss/castheal.nss b/_module/nss/castheal.nss new file mode 100644 index 0000000..abb4ce6 --- /dev/null +++ b/_module/nss/castheal.nss @@ -0,0 +1,22 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); + +object oCaster; +oCaster = OBJECT_SELF; + +object oTarget; +oTarget = oPC; + +AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_HEAL, oTarget, METAMAGIC_ANY, TRUE, 40, PROJECTILE_PATH_TYPE_DEFAULT, FALSE)); + +} + diff --git a/_module/nss/castshadshield.nss b/_module/nss/castshadshield.nss new file mode 100644 index 0000000..857d957 --- /dev/null +++ b/_module/nss/castshadshield.nss @@ -0,0 +1,26 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + + TakeGoldFromCreature(500, GetPCSpeaker(), TRUE); + +object oPC = GetPCSpeaker(); + +object oCaster; +oCaster = OBJECT_SELF; + +object oTarget; +oTarget = oPC; + +AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_MAGIC_VESTMENT, oTarget, METAMAGIC_ANY, TRUE, 40, PROJECTILE_PATH_TYPE_DEFAULT, FALSE)); + +} + + + diff --git a/_module/nss/cbet_type.nss b/_module/nss/cbet_type.nss new file mode 100644 index 0000000..a1661c5 --- /dev/null +++ b/_module/nss/cbet_type.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "team_bet", 4); +} diff --git a/_module/nss/ccast_imbue.nss b/_module/nss/ccast_imbue.nss new file mode 100644 index 0000000..43b7214 --- /dev/null +++ b/_module/nss/ccast_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_COMBAT_CASTING); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/ccast_imbue2.nss b/_module/nss/ccast_imbue2.nss new file mode 100644 index 0000000..265e3c3 --- /dev/null +++ b/_module/nss/ccast_imbue2.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Turn(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_EXTRA_TURNING); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Turn(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/cchamp_bet.nss b/_module/nss/cchamp_bet.nss new file mode 100644 index 0000000..1dd75b7 --- /dev/null +++ b/_module/nss/cchamp_bet.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Gold Dragon"); +SetLocalInt(oPC, "iOdds2", 50); +SetLocalInt(oPC, "pChampion", 23); +} diff --git a/_module/nss/cchamp_bet1.nss b/_module/nss/cchamp_bet1.nss new file mode 100644 index 0000000..d933b88 --- /dev/null +++ b/_module/nss/cchamp_bet1.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Divine Archer"); +SetLocalInt(oPC, "iOdds2", 45); +SetLocalInt(oPC, "pChampion", 15); +} diff --git a/_module/nss/cchamp_bet2.nss b/_module/nss/cchamp_bet2.nss new file mode 100644 index 0000000..901c105 --- /dev/null +++ b/_module/nss/cchamp_bet2.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Horodrim Archmage"); +SetLocalInt(oPC, "iOdds2", 7); +SetLocalInt(oPC, "pChampion", 16); +} diff --git a/_module/nss/cchamp_bet3.nss b/_module/nss/cchamp_bet3.nss new file mode 100644 index 0000000..046ecdf --- /dev/null +++ b/_module/nss/cchamp_bet3.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Guardian Angel"); +SetLocalInt(oPC, "iOdds2", 20); +SetLocalInt(oPC, "pChampion", 17); +} diff --git a/_module/nss/cchamp_bet4.nss b/_module/nss/cchamp_bet4.nss new file mode 100644 index 0000000..b91996f --- /dev/null +++ b/_module/nss/cchamp_bet4.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Soul Warrior"); +SetLocalInt(oPC, "iOdds2", 15); +SetLocalInt(oPC, "pChampion", 18); +} diff --git a/_module/nss/cchamp_bet5.nss b/_module/nss/cchamp_bet5.nss new file mode 100644 index 0000000..87925ab --- /dev/null +++ b/_module/nss/cchamp_bet5.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Shiva the Destroyer"); +SetLocalInt(oPC, "iOdds2", 8); +SetLocalInt(oPC, "pChampion", 20); +} diff --git a/_module/nss/cchamp_bet6.nss b/_module/nss/cchamp_bet6.nss new file mode 100644 index 0000000..ad8b384 --- /dev/null +++ b/_module/nss/cchamp_bet6.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Elk King"); +SetLocalInt(oPC, "iOdds2", 5); +SetLocalInt(oPC, "pChampion", 21); +} diff --git a/_module/nss/cchamp_bet7.nss b/_module/nss/cchamp_bet7.nss new file mode 100644 index 0000000..fcdd856 --- /dev/null +++ b/_module/nss/cchamp_bet7.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Shogun Lord"); +SetLocalInt(oPC, "iOdds2", 3); +SetLocalInt(oPC, "pChampion", 19); +} diff --git a/_module/nss/cchamp_bet8.nss b/_module/nss/cchamp_bet8.nss new file mode 100644 index 0000000..eee596f --- /dev/null +++ b/_module/nss/cchamp_bet8.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Thor: God of Thunder"); +SetLocalInt(oPC, "iOdds2", 2); +SetLocalInt(oPC, "pChampion", 22); +} diff --git a/_module/nss/cchamp_bet9.nss b/_module/nss/cchamp_bet9.nss new file mode 100644 index 0000000..be4db6e --- /dev/null +++ b/_module/nss/cchamp_bet9.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Arch Angel Tyriel"); +SetLocalInt(oPC, "iOdds2", 2); +} diff --git a/_module/nss/cdchamp_bet1.nss b/_module/nss/cdchamp_bet1.nss new file mode 100644 index 0000000..e11cf63 --- /dev/null +++ b/_module/nss/cdchamp_bet1.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Death Wurm"); +SetLocalInt(oPC, "iOdds2", 60); +SetLocalInt(oPC, "pChampion", 2); +} diff --git a/_module/nss/cdchamp_bet10.nss b/_module/nss/cdchamp_bet10.nss new file mode 100644 index 0000000..ed59b0a --- /dev/null +++ b/_module/nss/cdchamp_bet10.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Baal: Lord of Destruction"); +SetLocalInt(oPC, "iOdds2", 3); +SetLocalInt(oPC, "pChampion", 10); +} diff --git a/_module/nss/cdchamp_bet11.nss b/_module/nss/cdchamp_bet11.nss new file mode 100644 index 0000000..cd8ce9e --- /dev/null +++ b/_module/nss/cdchamp_bet11.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Fallen Disciple"); +SetLocalInt(oPC, "iOdds2", 2); +SetLocalInt(oPC, "pChampion", 13); +} diff --git a/_module/nss/cdchamp_bet2.nss b/_module/nss/cdchamp_bet2.nss new file mode 100644 index 0000000..e9e1ea2 --- /dev/null +++ b/_module/nss/cdchamp_bet2.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Dark Archer"); +SetLocalInt(oPC, "iOdds2", 50); +SetLocalInt(oPC, "pChampion", 12); +} diff --git a/_module/nss/cdchamp_bet3.nss b/_module/nss/cdchamp_bet3.nss new file mode 100644 index 0000000..2b664a9 --- /dev/null +++ b/_module/nss/cdchamp_bet3.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Balrog Lord"); +SetLocalInt(oPC, "iOdds2", 30); +SetLocalInt(oPC, "pChampion", 7); +} diff --git a/_module/nss/cdchamp_bet4.nss b/_module/nss/cdchamp_bet4.nss new file mode 100644 index 0000000..b43b3f4 --- /dev/null +++ b/_module/nss/cdchamp_bet4.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Doom Reaver"); +SetLocalInt(oPC, "iOdds2", 20); +SetLocalInt(oPC, "pChampion", 8); +} diff --git a/_module/nss/cdchamp_bet5.nss b/_module/nss/cdchamp_bet5.nss new file mode 100644 index 0000000..fafc1aa --- /dev/null +++ b/_module/nss/cdchamp_bet5.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "War Demon"); +SetLocalInt(oPC, "iOdds2", 15); +SetLocalInt(oPC, "pChampion", 6); +} diff --git a/_module/nss/cdchamp_bet6.nss b/_module/nss/cdchamp_bet6.nss new file mode 100644 index 0000000..bd83cb7 --- /dev/null +++ b/_module/nss/cdchamp_bet6.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Valdar Dragoon"); +SetLocalInt(oPC, "iOdds2", 10); +SetLocalInt(oPC, "pChampion", 3); +} diff --git a/_module/nss/cdchamp_bet7.nss b/_module/nss/cdchamp_bet7.nss new file mode 100644 index 0000000..977f8f3 --- /dev/null +++ b/_module/nss/cdchamp_bet7.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Kamaji Berserker"); +SetLocalInt(oPC, "iOdds2", 8); +SetLocalInt(oPC, "pChampion", 4); +} diff --git a/_module/nss/cdchamp_bet8.nss b/_module/nss/cdchamp_bet8.nss new file mode 100644 index 0000000..26104f3 --- /dev/null +++ b/_module/nss/cdchamp_bet8.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Bard Heretic"); +SetLocalInt(oPC, "iOdds2", 2); +SetLocalInt(oPC, "pChampion", 5); +} diff --git a/_module/nss/cdchamp_bet9.nss b/_module/nss/cdchamp_bet9.nss new file mode 100644 index 0000000..67d3a6c --- /dev/null +++ b/_module/nss/cdchamp_bet9.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Lucifer's Mistress"); +SetLocalInt(oPC, "iOdds2", 4); +SetLocalInt(oPC, "pChampion", 9); +} diff --git a/_module/nss/ce.nss b/_module/nss/ce.nss new file mode 100644 index 0000000..37cb881 --- /dev/null +++ b/_module/nss/ce.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC=GetPCSpeaker(); +ActionCastFakeSpellAtObject(SPELL_EVARDS_BLACK_TENTACLES,oPC); +DelayCommand(2.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_PWSTUN),oPC)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_CHAOTIC,85)); +DelayCommand(2.7,AdjustAlignment(oPC,ALIGNMENT_CHAOTIC,15)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_EVIL,85)); +DelayCommand(2.7,AdjustAlignment(oPC,ALIGNMENT_EVIL,15)); +} diff --git a/_module/nss/cg.nss b/_module/nss/cg.nss new file mode 100644 index 0000000..da67e11 --- /dev/null +++ b/_module/nss/cg.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC=GetPCSpeaker(); +ActionCastFakeSpellAtObject(SPELL_HEAL,oPC); +DelayCommand(2.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_PWSTUN),oPC)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_CHAOTIC,85)); +DelayCommand(2.7,AdjustAlignment(oPC,ALIGNMENT_CHAOTIC,15)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_GOOD,85)); +DelayCommand(2.7,AdjustAlignment(oPC,ALIGNMENT_GOOD,15)); +} diff --git a/_module/nss/ch_bet_confirm.nss b/_module/nss/ch_bet_confirm.nss new file mode 100644 index 0000000..04a572b --- /dev/null +++ b/_module/nss/ch_bet_confirm.nss @@ -0,0 +1,12 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iWager = GetLocalInt(oPC, "wager"); +int iBets = GetLocalInt(oPC, "bets_placed"); +iBets++; +SetLocalInt(oPC, "bets_placed", iBets); +TakeGoldFromCreature(iWager, oPC, TRUE); +SetLocalInt(oPC, "bet_confirmed", 1); +SetLocalInt(oPC, "conv_switch", 1); +ExecuteScript("holy_war", OBJECT_SELF); +} diff --git a/_module/nss/ch_bet_confirm2.nss b/_module/nss/ch_bet_confirm2.nss new file mode 100644 index 0000000..7924eb0 --- /dev/null +++ b/_module/nss/ch_bet_confirm2.nss @@ -0,0 +1,15 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iWager = GetLocalInt(oPC, "wager"); +int iBets = GetLocalInt(oPC, "bets_placed"); +int iOdds = GetLocalInt(oPC, "iOdds2"); +iOdds = iOdds *3; +SetLocalInt(oPC, "iOdds2", iOdds); +iBets++; +SetLocalInt(oPC, "bets_placed", iBets); +TakeGoldFromCreature(iWager, oPC, TRUE); +SetLocalInt(oPC, "bet_confirmed", 1); +SetLocalInt(oPC, "conv_switch", 1); +ExecuteScript("holy_war_batt", OBJECT_SELF); +} diff --git a/_module/nss/ch_bet_confirm3.nss b/_module/nss/ch_bet_confirm3.nss new file mode 100644 index 0000000..094628f --- /dev/null +++ b/_module/nss/ch_bet_confirm3.nss @@ -0,0 +1,15 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iWager = GetLocalInt(oPC, "wager"); +int iBets = GetLocalInt(oPC, "bets_placed"); +iBets++; +int iOdds = GetLocalInt(oPC, "iOdds2"); +iOdds = iOdds *5; +SetLocalInt(oPC, "iOdds2", iOdds); +SetLocalInt(oPC, "bets_placed", iBets); +TakeGoldFromCreature(iWager, oPC, TRUE); +SetLocalInt(oPC, "bet_confirmed", 1); +SetLocalInt(oPC, "conv_switch", 1); +ExecuteScript("holy_war_team", OBJECT_SELF); +} diff --git a/_module/nss/ch_bet_confirm4.nss b/_module/nss/ch_bet_confirm4.nss new file mode 100644 index 0000000..d25114d --- /dev/null +++ b/_module/nss/ch_bet_confirm4.nss @@ -0,0 +1,15 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iWager = GetLocalInt(oPC, "wager"); +int iBets = GetLocalInt(oPC, "bets_placed"); +iBets++; +int iOdds = GetLocalInt(oPC, "iOdds2"); +iOdds = iOdds *10; +SetLocalInt(oPC, "iOdds2", iOdds); +SetLocalInt(oPC, "bets_placed", iBets); +TakeGoldFromCreature(iWager, oPC, TRUE); +SetLocalInt(oPC, "bet_confirmed", 1); +SetLocalInt(oPC, "conv_switch", 1); +ExecuteScript("holy_war_duel", OBJECT_SELF); +} diff --git a/_module/nss/cha_bet_confirm.nss b/_module/nss/cha_bet_confirm.nss new file mode 100644 index 0000000..4432fb7 --- /dev/null +++ b/_module/nss/cha_bet_confirm.nss @@ -0,0 +1,12 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iWager = GetLocalInt(oPC, "wager"); +int iBets = GetLocalInt(oPC, "bets_placed"); +iBets++; +SetLocalInt(oPC, "bets_placed", iBets); +SetLocalInt(oPC, "conv_switch", 1); +TakeGoldFromCreature(iWager, oPC, TRUE); +SetLocalInt(oPC, "bet_confirmed", 1); +ExecuteScript("holy_war_champ", OBJECT_SELF); +} diff --git a/_module/nss/cha_evi_align.nss b/_module/nss/cha_evi_align.nss new file mode 100644 index 0000000..b4cec10 --- /dev/null +++ b/_module/nss/cha_evi_align.nss @@ -0,0 +1,10 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + + if (!(GetAlignmentGoodEvil(oPC) == ALIGNMENT_EVIL && + GetAlignmentLawChaos(oPC) == ALIGNMENT_CHAOTIC)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/cha_goo_align.nss b/_module/nss/cha_goo_align.nss new file mode 100644 index 0000000..33bd7ea --- /dev/null +++ b/_module/nss/cha_goo_align.nss @@ -0,0 +1,10 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + + if (!(GetAlignmentGoodEvil(oPC) == ALIGNMENT_GOOD && + GetAlignmentLawChaos(oPC) == ALIGNMENT_CHAOTIC)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/cha_imbue.nss b/_module/nss/cha_imbue.nss new file mode 100644 index 0000000..0fd870f --- /dev/null +++ b/_module/nss/cha_imbue.nss @@ -0,0 +1,6 @@ +#include "ability_imbue" + +void main() +{ +AbilityImbue(IP_CONST_ABILITY_CHA); +} diff --git a/_module/nss/cha_neu_align.nss b/_module/nss/cha_neu_align.nss new file mode 100644 index 0000000..77ee990 --- /dev/null +++ b/_module/nss/cha_neu_align.nss @@ -0,0 +1,10 @@ +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + + if (!(GetAlignmentGoodEvil(oPC) == ALIGNMENT_NEUTRAL && + GetAlignmentLawChaos(oPC) == ALIGNMENT_CHAOTIC)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/champ_bet.nss b/_module/nss/champ_bet.nss new file mode 100644 index 0000000..b70cfaa --- /dev/null +++ b/_module/nss/champ_bet.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Gold Dragon"); +SetLocalInt(oPC, "iOdds", 12); +} diff --git a/_module/nss/champ_bet1.nss b/_module/nss/champ_bet1.nss new file mode 100644 index 0000000..933243b --- /dev/null +++ b/_module/nss/champ_bet1.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Divine Archer"); +SetLocalInt(oPC, "iOdds", 11); +} diff --git a/_module/nss/champ_bet2.nss b/_module/nss/champ_bet2.nss new file mode 100644 index 0000000..fc702b8 --- /dev/null +++ b/_module/nss/champ_bet2.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Horodrim Archmage"); +SetLocalInt(oPC, "iOdds", 5); +} diff --git a/_module/nss/champ_bet3.nss b/_module/nss/champ_bet3.nss new file mode 100644 index 0000000..6b9c50c --- /dev/null +++ b/_module/nss/champ_bet3.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Guardian Angel"); +SetLocalInt(oPC, "iOdds", 9); +} diff --git a/_module/nss/champ_bet4.nss b/_module/nss/champ_bet4.nss new file mode 100644 index 0000000..9f0ddc4 --- /dev/null +++ b/_module/nss/champ_bet4.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Soul Warrior"); +SetLocalInt(oPC, "iOdds", 7); +} diff --git a/_module/nss/champ_bet5.nss b/_module/nss/champ_bet5.nss new file mode 100644 index 0000000..8254cfc --- /dev/null +++ b/_module/nss/champ_bet5.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Shive the Destroyer"); +SetLocalInt(oPC, "iOdds", 4); +} diff --git a/_module/nss/champ_bet6.nss b/_module/nss/champ_bet6.nss new file mode 100644 index 0000000..9d1084f --- /dev/null +++ b/_module/nss/champ_bet6.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Elk King"); +SetLocalInt(oPC, "iOdds", 6); +} diff --git a/_module/nss/champ_bet7.nss b/_module/nss/champ_bet7.nss new file mode 100644 index 0000000..926fee1 --- /dev/null +++ b/_module/nss/champ_bet7.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Shogun Lord"); +SetLocalInt(oPC, "iOdds", 5); +} diff --git a/_module/nss/champ_bet8.nss b/_module/nss/champ_bet8.nss new file mode 100644 index 0000000..12eb0f0 --- /dev/null +++ b/_module/nss/champ_bet8.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Thor: God of Thunder"); +SetLocalInt(oPC, "iOdds", 3); +} diff --git a/_module/nss/champ_bet9.nss b/_module/nss/champ_bet9.nss new file mode 100644 index 0000000..32b111d --- /dev/null +++ b/_module/nss/champ_bet9.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Arch Angel Tyriel"); +SetLocalInt(oPC, "iOdds", 3); +} diff --git a/_module/nss/champside1.nss b/_module/nss/champside1.nss new file mode 100644 index 0000000..f680a9b --- /dev/null +++ b/_module/nss/champside1.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "champ_side", 1); +} diff --git a/_module/nss/champside2.nss b/_module/nss/champside2.nss new file mode 100644 index 0000000..d005a47 --- /dev/null +++ b/_module/nss/champside2.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "champ_side", 2); +} diff --git a/_module/nss/charport.nss b/_module/nss/charport.nss new file mode 100644 index 0000000..e8cff70 --- /dev/null +++ b/_module/nss/charport.nss @@ -0,0 +1,35 @@ +#include "in_g_cutscene" + +void PortIn(float fDelay, object oChar, object oWP1, object oWP2, object oWP3, int iSwitch) +{ + +int iMode = GetLocalInt(GetModule(), "gamemode"); + +effect e1Effect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); +effect e2Effect = EffectVisualEffect(VFX_FNF_PWSTUN); +effect e3Effect = EffectVisualEffect(VFX_IMP_ELEMENTAL_PROTECTION); + +if (iSwitch==1) + { + if (iMode==1) + { + GestaltAnimate(fDelay+2.8, oChar, ANIMATION_FIREFORGET_TAUNT); + } + else + { + GestaltAnimate(fDelay+2.8, oChar, ANIMATION_FIREFORGET_VICTORY2); + } +} + +DelayCommand(fDelay+4.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + e1Effect, GetLocation(oWP1))); +DelayCommand(fDelay+4.1, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + e2Effect, GetLocation(oWP1))); +DelayCommand(fDelay+4.2, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + e3Effect, GetLocation(oWP1))); + +GestaltActionJump(fDelay+4.5, oChar, oWP2); +GestaltFace(fDelay+5.0, oChar, 0.0, 2, oWP3); +} + +//void main() {} diff --git a/_module/nss/chest_clear.nss b/_module/nss/chest_clear.nss new file mode 100644 index 0000000..9ab1e2f --- /dev/null +++ b/_module/nss/chest_clear.nss @@ -0,0 +1,50 @@ +#include "spawner" +void main() +{ +object oPC = GetLastOpenedBy(); +object oMod = GetModule(); +object oItem; +object oArea = GetArea(OBJECT_SELF); +location iLocation; +int oCount = 0; +int oComplete2 = GetLocalInt(oMod, "d2_complete"); +int oComplete2a = GetLocalInt(oMod, "d2a_complete"); +int oComplete5 = GetLocalInt(oMod, "d5_complete"); +MusicBackgroundStop(oArea); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + ++oCount; + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCount==0) + { + iLocation = GetLocation(OBJECT_SELF); + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_MYSTICAL_EXPLOSION), + GetLocation(OBJECT_SELF)); + DestroyObject(OBJECT_SELF, 0.2); + SetLocalInt(oMod, "chest1", 1); + if (oComplete2==1) + {SetLocalInt(oMod, "chest2", 1);} + if (oComplete2a==1) + {SetLocalInt(oMod, "chest3", 1);} + if (oComplete5==1) + {SetLocalInt(oMod, "chest4", 1);} + SetLocalInt(oMod, "chest_here", 0); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + SetLocalInt(oPC, "gate_locked", 0); + SetLocalInt(oMod, "challenge", 0); + SetLocalInt(oMod, "d1", 0); + SetLocalInt(oMod, "d2", 0); + SetLocalInt(oMod, "d2a", 0); + SetLocalInt(oMod, "d3", 0); + SetLocalInt(oMod, "d4", 0); + SetLocalInt(oMod, "d5", 0); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must loot this chest before you can continue", oPC); + } +} diff --git a/_module/nss/chest_clear1.nss b/_module/nss/chest_clear1.nss new file mode 100644 index 0000000..d0ff6b7 --- /dev/null +++ b/_module/nss/chest_clear1.nss @@ -0,0 +1,32 @@ +#include "spawner" +void main() +{ +object oPC = GetLastOpenedBy(); +object oMod = GetModule(); +object oItem = GetFirstItemInInventory(OBJECT_SELF); +int oCount2 = GetLocalInt(oPC, "ch_count"); +int oCountdown = GetLocalInt(oMod, "countdown"); +int oChest1 = GetLocalInt(oMod, "chest1"); +int oChest2 = GetLocalInt(oMod, "chest2"); +int oChest3 = GetLocalInt(oMod, "chest3"); +int oChest4 = GetLocalInt(oMod, "chest4"); +int oComplete2 = GetLocalInt(oMod, "d2_complete"); +int oComplete2a = GetLocalInt(oMod, "d2a_complete"); +int oComplete5 = GetLocalInt(oMod, "d5_complete"); +string oTag; + +location iLocation = GetLocation(OBJECT_SELF); + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_MYSTICAL_EXPLOSION), + GetLocation(OBJECT_SELF)); + DestroyObject(OBJECT_SELF, 0.0); + SetLocalInt(oMod, "chest1", 1); + if (oComplete2==1) + {SetLocalInt(oMod, "chest2", 1);} + if (oComplete2a==1) + {SetLocalInt(oMod, "chest3", 1);} + if (oComplete5==1) + {SetLocalInt(oMod, "chest4", 1);} + SetLocalInt(oMod, "chest_here", 0); + +} diff --git a/_module/nss/chest_clear2.nss b/_module/nss/chest_clear2.nss new file mode 100644 index 0000000..c78bd1d --- /dev/null +++ b/_module/nss/chest_clear2.nss @@ -0,0 +1,94 @@ +#include "spawner" +void main() +{ +object oPC = GetLastOpenedBy(); +object oMod = GetModule(); +object oItem = GetFirstItemInInventory(OBJECT_SELF); +int oCount2 = GetLocalInt(oPC, "ch_count"); +int oCountdown = GetLocalInt(oMod, "countdown"); +string oTag; +if (oCountdown!=1) +{ +while (GetIsObjectValid(oItem)) + { + ++oCount2; + oTag = GetTag(oItem); + if (oTag=="pearl") + { + SetLocalInt(oMod, "pearl_there", 1); + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + int oThere = GetLocalInt(oMod, "pearl_there"); + if (oThere==0) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + oTag = GetTag(oItem); + if ((oTag!="pearl")&&(oTag!="katanakey")) + { + DestroyObject(oItem); + } + + oItem = GetNextItemInInventory(OBJECT_SELF); + } + location iLocation = GetLocation(OBJECT_SELF); + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_MYSTICAL_EXPLOSION), + GetLocation(OBJECT_SELF)); + DestroyObject(OBJECT_SELF, 0.0); + SetLocalInt(oMod, "star_chest1", 1); + SetLocalInt(oMod, "chest_here", 0); + return; + } + if (oCount2==0) + { + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_MYSTICAL_EXPLOSION), + GetLocation(OBJECT_SELF)); + DestroyObject(OBJECT_SELF, 0.0); + SetLocalInt(oMod, "chest_here", 0); + SetLocalInt(oMod, "star_chest1", 1); + return; + } + SetLocalInt(oMod, "countdown", 1); + Message(0.0, "You have 10 seconds to take the Token", oPC); + Message(1.0, "You have 9 seconds to take the Token", oPC); + Message(2.0, "You have 8 seconds to take the Token", oPC); + Message(3.0, "You have 7 seconds to take the Token", oPC); + Message(4.0, "You have 6 seconds to take the Token", oPC); + Message(5.0, "You have 5 seconds to take the Token", oPC); + Message(6.0, "You have 4 seconds to take the Token", oPC); + Message(7.0, "You have 3 seconds to take the Token", oPC); + Message(8.0, "You have 2 seconds to take the Token", oPC); + Message(9.0, "You have 1 seconds to take the Token", oPC); + + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + oTag = GetTag(oItem); + if ((oTag!="pearl")&&(oTag!="katanakey")) + { + DestroyObject(oItem); + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + DelayCommand(10.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_MYSTICAL_EXPLOSION), + GetLocation(OBJECT_SELF))); + DestroyObject(OBJECT_SELF, 10.5); + SetLocalInt(oMod, "star_chest1", 1); + SetLocalInt(oMod, "chest_here", 0); + } + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + oTag = GetTag(oItem); + if ((oTag!="pearl")&&(oTag!="katanakey")) + { + DestroyObject(oItem); + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } +} diff --git a/_module/nss/chest_clear_orig.nss b/_module/nss/chest_clear_orig.nss new file mode 100644 index 0000000..45d30bb --- /dev/null +++ b/_module/nss/chest_clear_orig.nss @@ -0,0 +1,119 @@ +#include "spawner" +void main() +{ +object oPC = GetLastOpenedBy(); +object oMod = GetModule(); +object oItem = GetFirstItemInInventory(OBJECT_SELF); +int oCount2 = GetLocalInt(oPC, "ch_count"); +int oCountdown = GetLocalInt(oMod, "countdown"); +int oChest1 = GetLocalInt(oMod, "chest1"); +int oChest2 = GetLocalInt(oMod, "chest2"); +int oChest3 = GetLocalInt(oMod, "chest3"); +int oChest4 = GetLocalInt(oMod, "chest4"); +int oComplete2 = GetLocalInt(oMod, "d2_complete"); +int oComplete2a = GetLocalInt(oMod, "d2a_complete"); +int oComplete5 = GetLocalInt(oMod, "d5_complete"); +string oTag; +if (oCountdown!=1) +{ +while (GetIsObjectValid(oItem)) + { + ++oCount2; + oTag = GetTag(oItem); + if (oTag=="pearl") + { + SetLocalInt(oMod, "pearl_there", 1); + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + int oThere = GetLocalInt(oMod, "pearl_there"); + if (oThere==0) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + oTag = GetTag(oItem); + if (oTag!="pearl") + { + DestroyObject(oItem); + } + + oItem = GetNextItemInInventory(OBJECT_SELF); + } + location iLocation = GetLocation(OBJECT_SELF); + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_MYSTICAL_EXPLOSION), + GetLocation(OBJECT_SELF)); + DestroyObject(OBJECT_SELF, 0.0); + SetLocalInt(oMod, "chest1", 1); + if (oComplete2==1) + {SetLocalInt(oMod, "chest2", 1);} + if (oComplete2a==1) + {SetLocalInt(oMod, "chest3", 1);} + if (oComplete5==1) + {SetLocalInt(oMod, "chest4", 1);} + SetLocalInt(oMod, "chest_here", 0); + return; + } + if (oCount2==0) + { + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_MYSTICAL_EXPLOSION), + GetLocation(OBJECT_SELF)); + DestroyObject(OBJECT_SELF, 0.0); + SetLocalInt(oMod, "chest_here", 0); + SetLocalInt(oMod, "chest1", 1); + if (oComplete2==1) + {SetLocalInt(oMod, "chest2", 1);} + if (oComplete2a==1) + {SetLocalInt(oMod, "chest3", 1);} + if (oComplete5==1) + {SetLocalInt(oMod, "chest4", 1);} + return; + } + SetLocalInt(oMod, "countdown", 1); + Message(0.0, "You have 10 seconds to take the Token", oPC); + Message(1.0, "You have 9 seconds to take the Token", oPC); + Message(2.0, "You have 8 seconds to take the Token", oPC); + Message(3.0, "You have 7 seconds to take the Token", oPC); + Message(4.0, "You have 6 seconds to take the Token", oPC); + Message(5.0, "You have 5 seconds to take the Token", oPC); + Message(6.0, "You have 4 seconds to take the Token", oPC); + Message(7.0, "You have 3 seconds to take the Token", oPC); + Message(8.0, "You have 2 seconds to take the Token", oPC); + Message(9.0, "You have 1 seconds to take the Token", oPC); + + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + oTag = GetTag(oItem); + if (oTag!="coin1") + { + DestroyObject(oItem); + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + DelayCommand(10.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_MYSTICAL_EXPLOSION), + GetLocation(OBJECT_SELF))); + DestroyObject(OBJECT_SELF, 10.5); + SetLocalInt(oMod, "chest1", 1); + if (oComplete2==1) + {SetLocalInt(oMod, "chest2", 1);} + if (oComplete2a==1) + {SetLocalInt(oMod, "chest3", 1);} + if (oComplete5==1) + {SetLocalInt(oMod, "chest4", 1);} + SetLocalInt(oMod, "chest_here", 0); + } + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + oTag = GetTag(oItem); + if (oTag!="pearl") + { + DestroyObject(oItem); + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } +} diff --git a/_module/nss/chk_bp0.nss b/_module/nss/chk_bp0.nss new file mode 100644 index 0000000..825910b --- /dev/null +++ b/_module/nss/chk_bp0.nss @@ -0,0 +1,9 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + object oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); + int iResult; + + iResult = (!GetIsObjectValid(oItem)); + return iResult; +} diff --git a/_module/nss/chk_bp1.nss b/_module/nss/chk_bp1.nss new file mode 100644 index 0000000..5f872a3 --- /dev/null +++ b/_module/nss/chk_bp1.nss @@ -0,0 +1,15 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + object oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); + itemproperty ipAb = GetFirstItemProperty(oItem); + while (GetIsItemPropertyValid(ipAb)) + { + if (GetItemPropertySubType(ipAb)==18 && GetItemPropertyParam1Value(ipAb)==0) + return TRUE; + + ipAb = GetNextItemProperty(oItem); + } + + return FALSE; +} diff --git a/_module/nss/chk_bp2.nss b/_module/nss/chk_bp2.nss new file mode 100644 index 0000000..0eb13f4 --- /dev/null +++ b/_module/nss/chk_bp2.nss @@ -0,0 +1,9 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + object oPearl = GetItemPossessedBy(oPC, "pearl"); + int iResult; + + iResult = (!GetIsObjectValid(oPearl)); + return iResult; +} diff --git a/_module/nss/class_check_arc.nss b/_module/nss/class_check_arc.nss new file mode 100644 index 0000000..8b4f8ce --- /dev/null +++ b/_module/nss/class_check_arc.nss @@ -0,0 +1,22 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if ((GetLevelByClass(CLASS_TYPE_BARD, oPC)==0)&& + (GetLevelByClass(CLASS_TYPE_CLERIC, oPC)==0)&& + (GetLevelByClass(CLASS_TYPE_DRUID, oPC)==0)&& + (GetLevelByClass(CLASS_TYPE_PALADIN, oPC)==0)&& + (GetLevelByClass(CLASS_TYPE_RANGER, oPC)==0)&& + (GetLevelByClass(CLASS_TYPE_SORCERER, oPC)==0)&& + (GetLevelByClass(CLASS_TYPE_WIZARD, oPC)==0)) +return FALSE; + +return TRUE; +} + diff --git a/_module/nss/clean_arena.nss b/_module/nss/clean_arena.nss new file mode 100644 index 0000000..fdbfc40 --- /dev/null +++ b/_module/nss/clean_arena.nss @@ -0,0 +1,85 @@ +#include "cleanup" + +/*void TrashObject(object oObject) +{ + + + object oItem = GetFirstItemInInventory(oObject); + while (GetIsObjectValid(oItem)) + { + DestroyObject(oItem); + oItem = GetNextItemInInventory(oObject); + } + DestroyObject(oObject); +} +void CleanArea(object oPC) +{ + int iObjectType; + object oObject = GetFirstObjectInArea(GetArea(oPC)); + while (oObject != OBJECT_INVALID) + { + + if(GetObjectType(oObject) == OBJECT_TYPE_PLACEABLE && GetTag(oObject) == "BodyBag") + + { + if ((GetTag(oObject)!="starfall")&&(GetIsPC(oObject)==FALSE)) + { + TrashObject(oObject); + } + } + oObject = GetNextObjectInArea(GetArea(oPC)); + } +} +*/ +void main() +{ + +object oPC = GetLastUsedBy(); +object oMod = GetModule(); + +int nInt = GetLocalInt(oMod, "challenge"); +int nInt2 = GetLocalInt(oMod, "duel_on"); +int oProg = GetLocalInt(oMod, "in_progress"); +int oChest = GetLocalInt(oMod, "chest_here"); +int oGameMode = GetLocalInt(oMod, "gamemode"); +if (oChest!=1) +{ + if ((nInt!=1)&&(nInt2!=1)&&(oProg!=1)) + { + AssignCommand(oPC, PlaySound("sce_positive")); + ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); + ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); + DelayCommand(1.0, FloatingTextStringOnCreature("Area Cleaned", oPC)); + CleanArea(oPC); + } + else + { + + if (nInt2!=1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You can't use this during a super challenge.", oPC); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You can't use this during a battle.", oPC); + } + + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You can't clean the area until the reward chest has been looted.", oPC); + } +} + + + + + + + + + diff --git a/_module/nss/cleanup.nss b/_module/nss/cleanup.nss new file mode 100644 index 0000000..b7ff949 --- /dev/null +++ b/_module/nss/cleanup.nss @@ -0,0 +1,94 @@ +/* areacleanup script +checks the area that it was called for for the presence of pc's, +if there aren't any then it systematically cleans up the area +of extra encounters and loot +*/ +void debug(string dstring) +{ + int isdebug = 0; + if (isdebug == 1) + SendMessageToPC(GetFirstPC(), dstring); +} + +void TrashObject(object oObject) +{ + debug(GetTag(oObject) + " is in trashobject"); + //if(GetStringLowerCase(GetName(oObject)) == "remains") + //{ + //object oItem = GetFirstItemInInventory(oObject); + //while (oItem !=OBJECT_INVALID) + // { + // DestroyObject(oItem); + // oItem = GetNextItemInInventory(oObject); + // } + // } + if (GetObjectType(oObject) == OBJECT_TYPE_PLACEABLE) { + object oItem = GetFirstItemInInventory(oObject); + while (GetIsObjectValid(oItem)) + { + debug(GetTag(oItem) + " is in trashobject"); + TrashObject(oItem); + oItem = GetNextItemInInventory(oObject); + } + } + else if ((GetResRef(oObject)!="div_key")&&(GetResRef(oObject)!="divine_note")) + { + debug(GetTag(oObject) + " failed to pass as inventory type placeable is getting destroyed"); + AssignCommand(oObject, SetIsDestroyable(TRUE, FALSE, FALSE)); + DestroyObject(oObject); + } +} + +void CleanArea(object oPlayer) +{ +object oPC; +oPC = GetFirstPC(); +object tPC = oPC; +debug("We're starting area cleanup"); +while (oPC != OBJECT_INVALID) +{ +if (OBJECT_SELF == GetArea(oPC)) +return; +else oPC = GetNextPC(); +} +object oObject = GetFirstObjectInArea(OBJECT_SELF); +while (oObject != OBJECT_INVALID) + { + debug(GetTag(oObject)); + if (GetIsEncounterCreature(oObject) && FindSubString(GetTag(oObject), "_BOSS") > -1) + { + if ((GetTag(oObject)!="starfall")&&(GetTag(oObject)!="reaper")&&(GetIsPC(oObject)==FALSE)) + { + DestroyObject(oObject); + } + } + if (GetObjectType(oObject) == OBJECT_TYPE_CREATURE && GetIsEnemy(oPlayer, oObject)) + { + object oItem=GetFirstItemInInventory(oObject); + while (oItem!=OBJECT_INVALID) + { + DestroyObject(oItem); + oItem = GetNextItemInInventory(oObject); + } + TrashObject(oObject); + } + int iObjectType = GetObjectType(oObject); + if(iObjectType == OBJECT_TYPE_ITEM) + { + TrashObject(oObject); + } + // else if(iObjectType == OBJECT_TYPE_PLACEABLE && GetName(oObject) == "Remains") + // { + // TrashObject(oObject); + // } + if(GetStringLowerCase(GetName(oObject)) == "remains") + { + TrashObject(oObject); + } + + + oObject = GetNextObjectInArea(OBJECT_SELF); + } + +} +//void main(){} diff --git a/_module/nss/clear_app.nss b/_module/nss/clear_app.nss new file mode 100644 index 0000000..a4672fe --- /dev/null +++ b/_module/nss/clear_app.nss @@ -0,0 +1,9 @@ +void main() +{ +object oH = GetPCSpeaker(); +DeleteLocalString(oH, "THOUSAND"); +DeleteLocalString(oH, "HUNDRED"); +DeleteLocalString(oH, "TEN"); +DeleteLocalString(oH, "ONE"); +DeleteLocalInt(oH, "INVALID_APP"); +} diff --git a/_module/nss/clear_group.nss b/_module/nss/clear_group.nss new file mode 100644 index 0000000..a6c9fd3 --- /dev/null +++ b/_module/nss/clear_group.nss @@ -0,0 +1,24 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sw_hw", 0); +SetLocalInt(oPC, "sw_dr", 0); +SetLocalInt(oPC, "sw_bl", 0); +SetLocalInt(oPC, "sw_pf", 0); +SetLocalInt(oPC, "sw_df", 0); +SetLocalInt(oPC, "sw_pm", 0); +SetLocalInt(oPC, "sw_bm", 0); +SetLocalInt(oPC, "sw_lm", 0); +SetLocalInt(oPC, "sw_ll", 0); +SetLocalInt(oPC, "sw_xx", 0); +SetLocalInt(oPC, "hw_on", 0); +SetLocalInt(oPC, "dr_on", 0); +SetLocalInt(oPC, "bl_on", 0); +SetLocalInt(oPC, "pf_on", 0); +SetLocalInt(oPC, "df_on", 0); +SetLocalInt(oPC, "pm_on", 0); +SetLocalInt(oPC, "bm_on", 0); +SetLocalInt(oPC, "lm_on", 0); +SetLocalInt(oPC, "ll_on", 0); +SetLocalInt(oPC, "xx_on", 0); +} diff --git a/_module/nss/cleave_imbue.nss b/_module/nss/cleave_imbue.nss new file mode 100644 index 0000000..57a7420 --- /dev/null +++ b/_module/nss/cleave_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_CLEAVE); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/cler_slot_imbue.nss b/_module/nss/cler_slot_imbue.nss new file mode 100644 index 0000000..f37f915 --- /dev/null +++ b/_module/nss/cler_slot_imbue.nss @@ -0,0 +1,6 @@ +#include "spellslot_imbue" + +void main() +{ +SpellSlot(IP_CONST_CLASS_CLERIC); +} diff --git a/_module/nss/cloak_shop.nss b/_module/nss/cloak_shop.nss new file mode 100644 index 0000000..de5d0bf --- /dev/null +++ b/_module/nss/cloak_shop.nss @@ -0,0 +1,24 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +if (GetItemPossessedBy(oPC, "nordock_token")!=OBJECT_INVALID) +oTarget = GetObjectByTag("n_cloak"); +else +oTarget = GetObjectByTag("cloak_shop"); +PlaySound("it_materialcloth"); +OpenStore(oTarget, oPC, 0, 0); + +} + diff --git a/_module/nss/clone_heartbeat.nss b/_module/nss/clone_heartbeat.nss new file mode 100644 index 0000000..a3be139 --- /dev/null +++ b/_module/nss/clone_heartbeat.nss @@ -0,0 +1,11 @@ +void main() +{ + if(GetIsInCombat()) + { + ExecuteScript("custom_combatend",OBJECT_SELF); + } + + ExecuteScript("custom_heartbeat",OBJECT_SELF); + + DelayCommand(RoundsToSeconds(1),ExecuteScript("clone_heartbeat",OBJECT_SELF)); +} diff --git a/_module/nss/clone_lib.nss b/_module/nss/clone_lib.nss new file mode 100644 index 0000000..1a3d332 --- /dev/null +++ b/_module/nss/clone_lib.nss @@ -0,0 +1,475 @@ +#include "custom_set_lib" +struct perceivedEvent +{ + int isValid; + + object lastPerceived; + int lastPerceptionHeard; + int lastPerceptionInaudible; + int lastPerceptionSeen; + int lastPerceptionVanished; +}; + +struct disturbedEvent +{ + int isValid; + + object lastDisturbed; + object inventoryDisturbItem; + int inventoryDisturbType; + +}; + +struct attackedEvent +{ + int isValid; + object lastAttacker; +}; + +struct damagedEvent +{ + int isValid; + object lastdamager; + int totalDamageDealt; + int damageAcid; + int damageBludgeoning; + int damageCold; + int damageDivine; + int damageElectrical; + int damageFire; + int damageMagical; + int damageNegative; + int damagePiercing; + int damagePositive; + int damageSlashing; + int damageSonic; +}; + +struct blockedEvent +{ + int isValid; + object blockingDoor; +}; + +//:://///////////////////////////////////////////// +//:: GetLastPerceivedEvent +//::////////////////////////////////////////////// +// +// Retrieves the last perception event data from target. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct perceivedEvent GetLastPerceivedEvent(object target = OBJECT_SELF); + +//:://///////////////////////////////////////////// +//:: SetLastPerceivedEvent +//::////////////////////////////////////////////// +// +// Stores the perception event data for the caller. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +void SetLastPerceivedEvent(struct perceivedEvent evt); + +//:://///////////////////////////////////////////// +//:: PerceivedEvent +//::////////////////////////////////////////////// +// +// Returns the data available for a caller perception event. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct perceivedEvent PerceivedEvent(); + +//:://///////////////////////////////////////////// +//:: GetLastDisturbedEvent +//::////////////////////////////////////////////// +// +// Retrieves the last inventory dirsturbed event data from target. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct disturbedEvent GetLastDisturbedEvent(object target = OBJECT_SELF); + +//:://///////////////////////////////////////////// +//:: SetLastDisturbedEvent +//::////////////////////////////////////////////// +// +// Stores the inventory dirsturbed event data for the caller. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +void SetLastDisturbedEvent(struct disturbedEvent evt); + +//:://///////////////////////////////////////////// +//:: DisturbedEvent +//::////////////////////////////////////////////// +// +// Returns the data available for a caller inventory dirsturbed event. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct disturbedEvent DisturbedEvent(); + +//:://///////////////////////////////////////////// +//:: GetLastAttackedEvent +//::////////////////////////////////////////////// +// +// Retrieves the last on attacked event data from target. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct attackedEvent GetLastAttackedEvent(object target = OBJECT_SELF); + +//:://///////////////////////////////////////////// +//:: SetLastAttackedEvent +//::////////////////////////////////////////////// +// +// Stores the on attacked event data on the caller. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +void SetLastAttackedEvent(struct attackedEvent evt); + +//:://///////////////////////////////////////////// +//:: AttackedEvent +//::////////////////////////////////////////////// +// +// Returns the available on attacked event data. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct attackedEvent AttackedEvent(); + +//:://///////////////////////////////////////////// +//:: CreatePCClone +//::////////////////////////////////////////////// +// +// Creates a clone of PC at cloneLocation. The clone will +// use the set of script corresponding to scriptset. +// If spawn is TRUE then CustomSet_respawn is called. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +object CreatePCClone(object PC,location cloneLocation,int scriptset = CustomSet_DefaultSet,int spawn = TRUE); + +//:://///////////////////////////////////////////// +//:: GetLastDamagedEvent +//::////////////////////////////////////////////// +// +// Retrieves the last on damaged event data from target. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct damagedEvent GetLastDamagedEvent(object target = OBJECT_SELF); + +//:://///////////////////////////////////////////// +//:: SetLastDamagedEvent +//::////////////////////////////////////////////// +// +// Stores the on damaged event data on the caller. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +void SetLastDamagedEvent(struct damagedEvent evt); + +//:://///////////////////////////////////////////// +//:: DamagedEvent +//::////////////////////////////////////////////// +// +// Returns the data available for a caller on damaged event. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct damagedEvent DamagedEvent(); + +//:://///////////////////////////////////////////// +//:: GetLastBlockedEvent +//::////////////////////////////////////////////// +// +// Retrieves the last on blocked event data from target. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct blockedEvent GetLastBlockedEvent(object target = OBJECT_SELF); + +//:://///////////////////////////////////////////// +//:: SetLastBlockedEvent +//::////////////////////////////////////////////// +// +// Stores the on blocked event data on the caller. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +void SetLastBlockedEvent(struct blockedEvent evt); + +//:://///////////////////////////////////////////// +//:: BlockedEvent +//::////////////////////////////////////////////// +// +// Returns the data available for a caller on blocked event. +// +//::////////////////////////////////////////////// +//:: Created By: Alexandre Brunel +//:: Created On: 04/11/2004 +//::////////////////////////////////////////////// +struct blockedEvent BlockedEvent(); + +void SetDialog(string dialog,object target= OBJECT_SELF); +string GetDialog(object target= OBJECT_SELF); + + +struct perceivedEvent GetLastPerceivedEvent(object target = OBJECT_SELF) +{ + struct perceivedEvent retval; + + retval.isValid = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceivedIsValid"); + + retval.lastPerceived = GetLocalObject(target,"PC_CLONE_SYSTEM_GetLastPerceived"); + retval.lastPerceptionInaudible = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceptionInaudible"); + retval.lastPerceptionSeen = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceptionSeen"); + retval.lastPerceptionVanished = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceptionVanished"); + + return retval; +} +void SetLastPerceivedEvent(struct perceivedEvent evt) +{ + object target = OBJECT_SELF; + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceivedIsValid",evt.isValid); + + SetLocalObject(target,"PC_CLONE_SYSTEM_GetLastPerceived",evt.lastPerceived); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceptionInaudible",evt.lastPerceptionInaudible); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceptionSeen",evt.lastPerceptionSeen); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastPerceptionVanished",evt.lastPerceptionVanished); +} +struct perceivedEvent PerceivedEvent() +{ + struct perceivedEvent retval; + + retval.lastPerceived = GetLastPerceived(); + + retval.isValid = GetIsObjectValid(retval.lastPerceived); + + retval.lastPerceptionInaudible = GetLastPerceptionInaudible(); + retval.lastPerceptionSeen = GetLastPerceptionSeen(); + retval.lastPerceptionVanished = GetLastPerceptionVanished(); + + return retval; +} +struct disturbedEvent GetLastDisturbedEvent(object target = OBJECT_SELF) +{ + struct disturbedEvent retval; + + retval.isValid = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastDisturbedValid"); + + retval.lastDisturbed = GetLocalObject(target,"PC_CLONE_SYSTEM_GetLastDisturbed"); + retval.inventoryDisturbItem = GetLocalObject(target,"PC_CLONE_SYSTEM_InventoryDisturbItem"); + retval.inventoryDisturbType = GetLocalInt(target,"PC_CLONE_SYSTEM_inventoryDisturbType"); + + return retval; +} +void SetLastDisturbedEvent(struct disturbedEvent evt) +{ + object target = OBJECT_SELF; + + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastDisturbedValid",evt.isValid); + + SetLocalObject(target,"PC_CLONE_SYSTEM_GetLastDisturbed",evt.lastDisturbed); + SetLocalObject(target,"PC_CLONE_SYSTEM_InventoryDisturbItem",evt.inventoryDisturbItem); + SetLocalInt(target,"PC_CLONE_SYSTEM_inventoryDisturbType",evt.inventoryDisturbType); +} +struct disturbedEvent DisturbedEvent() +{ + struct disturbedEvent retval; + + retval.lastDisturbed = GetLastDisturbed(); + + retval.inventoryDisturbItem = GetInventoryDisturbItem(); + + retval.isValid = GetIsObjectValid(retval.lastDisturbed) && GetIsObjectValid(retval.inventoryDisturbItem); + + retval.inventoryDisturbType = GetInventoryDisturbType(); + + return retval; +} +struct attackedEvent GetLastAttackedEvent(object target = OBJECT_SELF) +{ + struct attackedEvent retval; + + retval.isValid = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastAttackerValid"); + retval.lastAttacker = GetLocalObject(target,"PC_CLONE_SYSTEM_GetLastAttacker"); + + return retval; +} +void SetLastAttackedEvent(struct attackedEvent evt) +{ + object target = OBJECT_SELF; + + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastAttackerValid",evt.isValid); + SetLocalObject(target,"PC_CLONE_SYSTEM_GetLastAttacker",evt.lastAttacker); +} +struct attackedEvent AttackedEvent() +{ + struct attackedEvent retval; + + retval.lastAttacker = GetLastAttacker(); + + retval.isValid = GetIsObjectValid(retval.lastAttacker); + + return retval; +} + +object CreatePCClone(object PC,location cloneLocation,int scriptset = CustomSet_DefaultSet,int spawn = TRUE) +{ + + object copy = CopyObject(PC,cloneLocation); + + SetLocalInt(copy,"PC_CLONE_SYSTEM",TRUE); + + SetLocalInt(copy,CustomSetScriptSet,scriptset); + + + if(spawn) + { + CustomSet_respawn(copy); + } + + AssignCommand(copy,DelayCommand(RoundsToSeconds(1),ExecuteScript("clone_heartbeat",copy))); + + return copy; +} + +struct damagedEvent GetLastDamagedEvent(object target = OBJECT_SELF) +{ + struct damagedEvent retval; + + retval.isValid = GetLocalInt(target,"PC_CLONE_SYSTEM_GetLastDamagerValid"); + retval.lastdamager = GetLocalObject(target,"PC_CLONE_SYSTEM_GetLastDamager"); + retval.totalDamageDealt = GetLocalInt(target,"PC_CLONE_SYSTEM_GetTotalDamageDealt"); + + retval.damageAcid = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_ACID)); + retval.damageBludgeoning = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_BLUDGEONING)); + retval.damageCold = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_COLD)); + retval.damageDivine = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_DIVINE)); + retval.damageElectrical = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_ELECTRICAL)); + retval.damageFire = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_FIRE)); + retval.damageMagical = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_MAGICAL)); + retval.damageNegative = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_NEGATIVE)); + retval.damagePiercing = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_PIERCING)); + retval.damagePositive = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_POSITIVE)); + retval.damageSlashing = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_SLASHING)); + retval.damageSonic = GetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_SONIC)); + + return retval; + +} +void SetLastDamagedEvent(struct damagedEvent evt) +{ + object target = OBJECT_SELF; + + SetLocalInt(target,"PC_CLONE_SYSTEM_GetLastDamagerValid",evt.isValid); + SetLocalObject(target,"PC_CLONE_SYSTEM_GetLastDamager",evt.lastdamager); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetTotalDamageDealt",evt.totalDamageDealt); + + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_ACID),evt.damageAcid); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_BLUDGEONING),evt.damageBludgeoning); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_COLD),evt.damageCold); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_DIVINE),evt.damageDivine); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_ELECTRICAL),evt.damageElectrical); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_FIRE),evt.damageFire); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_MAGICAL),evt.damageMagical); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_NEGATIVE),evt.damageNegative); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_PIERCING),evt.damagePiercing); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_POSITIVE),evt.damagePositive); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_SLASHING),evt.damageSlashing); + SetLocalInt(target,"PC_CLONE_SYSTEM_GetDamageDealtByType"+IntToString(DAMAGE_TYPE_SONIC),evt.damageSonic); +} +struct damagedEvent DamagedEvent() +{ + struct damagedEvent retval; + + + retval.lastdamager = GetLastDamager(); + + retval.isValid = GetIsObjectValid(retval.lastdamager); + + retval.totalDamageDealt = GetTotalDamageDealt(); + + retval.damageAcid = GetDamageDealtByType(DAMAGE_TYPE_ACID); + retval.damageBludgeoning = GetDamageDealtByType(DAMAGE_TYPE_BLUDGEONING); + retval.damageCold = GetDamageDealtByType(DAMAGE_TYPE_COLD); + retval.damageDivine = GetDamageDealtByType(DAMAGE_TYPE_DIVINE); + retval.damageElectrical = GetDamageDealtByType(DAMAGE_TYPE_ELECTRICAL); + retval.damageFire = GetDamageDealtByType(DAMAGE_TYPE_FIRE); + retval.damageMagical = GetDamageDealtByType(DAMAGE_TYPE_MAGICAL); + retval.damageNegative = GetDamageDealtByType(DAMAGE_TYPE_NEGATIVE); + retval.damagePiercing = GetDamageDealtByType(DAMAGE_TYPE_PIERCING); + retval.damagePositive = GetDamageDealtByType(DAMAGE_TYPE_POSITIVE); + retval.damageSlashing = GetDamageDealtByType(DAMAGE_TYPE_SLASHING); + retval.damageSonic = GetDamageDealtByType(DAMAGE_TYPE_SONIC); + + return retval; +} +struct blockedEvent GetLastBlockedEvent(object target = OBJECT_SELF) +{ + struct blockedEvent retval; + + retval.isValid = GetLocalInt(target,"PC_CLONE_SYSTEM_GetBlockingDoorIsValid"); + retval.blockingDoor = GetLocalObject(target,"PC_CLONE_SYSTEM_GetBlockingDoor"); + + return retval; +} +void SetLastBlockedEvent(struct blockedEvent evt) +{ + SetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM_GetBlockingDoorIsValid",evt.isValid); + SetLocalObject(OBJECT_SELF,"PC_CLONE_SYSTEM_GetBlockingDoor",evt.blockingDoor); +} +struct blockedEvent BlockedEvent() +{ + struct blockedEvent retval; + + retval.blockingDoor = GetBlockingDoor(); + + retval.isValid = GetIsObjectValid(retval.blockingDoor); + + return retval; +} + +void SetDialog(string dialog,object target= OBJECT_SELF) +{ + SetLocalString(target,"PC_CLONE_SYSTEM_DLG",dialog); +} +string GetDialog(object target= OBJECT_SELF) +{ + return GetLocalString(target,"PC_CLONE_SYSTEM_DLG"); +} diff --git a/_module/nss/clonepc.nss b/_module/nss/clonepc.nss new file mode 100644 index 0000000..e5d0f21 --- /dev/null +++ b/_module/nss/clonepc.nss @@ -0,0 +1,22 @@ +#include "clone_lib" +#include "nw_i0_generic" +#include "spawner" +#include "prc_inc_util" + +void main() +{ +object oPC = GetPCSpeaker(); +object oTarget = GetWaypointByTag("monster_wp"); +object oMonster; +location lLocation = GetLocation(oTarget); +PCEffect(0.0,VFX_FNF_DISPEL_DISJUNCTION, oPC); +PRCForceRest(oPC); +DoEffect(0.0, VFX_FNF_PWKILL, "monster_wp"); +CreatePCClone(oPC,lLocation, CustomSet_X2_DefaultSet, TRUE); +oMonster = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC); +ChangeToStandardFaction(oMonster, STANDARD_FACTION_HOSTILE); +AdjustReputation(oPC, oMonster, -100); +SetIsTemporaryEnemy(oPC, oMonster); +AssignCommand(oMonster, DetermineCombatRound(oPC)); +AssignCommand(oMonster, ActionAttack(oPC)); +} diff --git a/_module/nss/close.nss b/_module/nss/close.nss new file mode 100644 index 0000000..73cf726 --- /dev/null +++ b/_module/nss/close.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetLastClosedBy(); +AssignCommand(oPC, PlaySound("as_sw_genericcl1")); +} diff --git a/_module/nss/closedoor.nss b/_module/nss/closedoor.nss new file mode 100644 index 0000000..a97ae02 --- /dev/null +++ b/_module/nss/closedoor.nss @@ -0,0 +1,4 @@ +void main() +{ +ActionOpenDoor(OBJECT_SELF); +} diff --git a/_module/nss/cm_ondeath4.nss b/_module/nss/cm_ondeath4.nss new file mode 100644 index 0000000..fd27e09 --- /dev/null +++ b/_module/nss/cm_ondeath4.nss @@ -0,0 +1,339 @@ +#include "raise" +#include "x0_i0_petrify" +#include "eradicate" +#include "spawner" +#include "bleeding_config" +#include "nw_i0_plot" + +void LastWord(object oMonster) +{ +int iDice; +int iVoice; +iDice = d8(); +switch (iDice) + { + case 1: {iVoice = VOICE_CHAT_CHEER;}break; + case 2: {iVoice = VOICE_CHAT_NO;}break; + case 3: {iVoice = VOICE_CHAT_TASKCOMPLETE;}break; + case 4: {iVoice = VOICE_CHAT_THREATEN;}break; + case 5: {iVoice = VOICE_CHAT_YES;}break; + case 6: {iVoice = VOICE_CHAT_LAUGH;}break; + case 7: {iVoice = VOICE_CHAT_TAUNT;}break; + case 8: {iVoice = VOICE_CHAT_BORED;}break; + } +AssignCommand(oMonster, PlayVoiceChat(iVoice)); +} + +void DeitySave(object oPC, int iInsurance) +{ + +string sDeity = GetDeity(oPC); +if (iInsurance==1){SendMessageToPC(oPC, "You used your life insurance.");} +else {SendMessageToPC(oPC, sDeity+" hears your prayers.");} +ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectResurrection(),oPC); +ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectHeal(GetMaxHitPoints(oPC)), oPC); +RemoveEffects(oPC); +object oTarget = oPC; +int nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWSTUN), oTarget); +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_RESTORATION_GREATER), GetLocation(oTarget)); +} + + + +void DeathMSG(object oPC, object oKiller) +{ +int iDice; +object oPlayer; +string sAnnounce; +string sVictim = GetName(oPC); +string sKiller = GetName(oKiller); + +// generate a random death message + +iDice = d8(); +switch(iDice) + { + case 1: {sAnnounce = sKiller+" sends "+sVictim+" into early retirement!";}break; + case 2: {sAnnounce = sKiller+" paints the pavement red with "+sVictim+"!";}break; + case 3: {sAnnounce = sKiller+" dices "+sVictim+" into small pieces!";}break; + case 4: {sAnnounce = sKiller+"'s face is the last thing that "+sVictim+" sees!";}break; + case 5: {sAnnounce = sVictim+" doesn't survive "+sKiller+"'s brutal attack!";}break; + case 6: {sAnnounce = sKiller+" decapitates "+sVictim+"!";}break; + case 7: {sAnnounce = sKiller+" cuts "+sVictim+" clean in half!";}break; + case 8: {sAnnounce = sKiller+" helps "+sVictim+" to the pavement!";}break; + } + +// send message to all players + +oPlayer = GetFirstPC(); +while (GetIsObjectValid(oPlayer)) + { + SendMessageToPC(oPC, sAnnounce); + oPlayer = GetNextPC(); + } +} + +void main() +{ +object oMod = GetModule(); +object oPC = GetLastPlayerDied(); +object oKiller = GetLastKiller(); +object oMonster; +object oTarget; +location oLoc; +int oGameMode = GetLocalInt(oMod, "gamemode"); +int oDuel = GetLocalInt(oMod, "duel_on"); +int oLives = GetLocalInt(oPC, "lives"); +int iDied = GetLocalInt (oPC,"iDied"); +int oPlayers = GetLocalInt(oMod, "num_players"); +int oChallenge = GetLocalInt(oMod, "challenge"); +int iKilled = GetLocalInt (oKiller,"iKilled"); +int iKilled2 = GetLocalInt (oPC,"iKilled"); +int oHolyWar = GetLocalInt(oMod, "hwar_on"); +int iTurnFlag = GetLocalInt(oMod, "turn_flag"); +int iHWPCdeathTot = GetLocalInt(oPC, "iHWPCdeathTot"); +string sDeity = GetDeity(oPC); +object oItem; +int iMode = GetLocalInt(oMod, "gamemode"); +object iCard = GetItemPossessedBy(oPC, "insurance"); +if (iCard!=OBJECT_INVALID) + { + oItem = GetFirstItemInInventory(oPC); + while (GetIsObjectValid(oItem)) + { + if (oItem==GetObjectByTag("insurance")) + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(oPC); + } + SetLocalInt(oPC, "haggle", 0); + DeitySave(oPC, 1); + return; + } +int iAdj = GetLocalInt(oPC, "deity_adjust"); +//if (d20()>=8){DeitySave(oPC);return;} +if ((sDeity!="")&&(d100()>=94-iAdj)){DeitySave(oPC, 0);return;} +else if (sDeity!=""){SendMessageToPC(oPC, sDeity+" does not hear your prayers.");} +else {SendMessageToPC(oPC, "You have no god to pray to.");} + + + + +string sRes = GetResRef(oPC); +sRes+="_HWd"; + +int iHWdeath = GetLocalInt(oMod, sRes); + +string sStfall; +SetLocalInt(oPC, "PlayerHealth", PC_HEALTH_DEAD); + +if (oGameMode==1) +{ +sStfall="You have been defeated by the mighty Mephisto!"; +} +else +{ +sStfall="You have been defeated by the mighty Starfall!"; +} + + +string sChallText; +string sNormText = "You are dead! You have died "; +++iDied; +sNormText += IntToString(iDied); +sNormText += " times and killed "; +sNormText += IntToString(iKilled2); +sNormText += " times. You may exit or respawn"; +SetLocalInt(oPC,"iDied",iDied); + +if (oDuel==1) + { + int iMax = GetMaxHitPoints(GetObjectByTag("starfall")); + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectHeal(iMax),GetObjectByTag("starfall")); + SetIsTemporaryFriend(oPC, GetObjectByTag("starfall")); + oTarget = GetObjectByTag("starfall"); + oLoc = GetLocation(oTarget); + + if (oGameMode==1) + { + DelayCommand(1.0, AssignCommand(oTarget, ActionPlayAnimation(ANIMATION_FIREFORGET_TAUNT))); + DelayCommand(2.0, AssignCommand(oPC, PlaySound("vs_nx2mephm_vict"))); + } + else + { + AssignCommand(oTarget, ActionPlayAnimation(ANIMATION_FIREFORGET_BOW)); + AssignCommand(oTarget, ActionPlayAnimation(ANIMATION_LOOPING_TALK_LAUGHING, 1.0f)); + DelayCommand(3.0, AssignCommand(oPC, PlaySound("vs_nx2daelm_haha"))); + } + DelayCommand(4.5, AssignCommand(oTarget, ClearAllActions())); + if (oGameMode==1) + { + DelayCommand(5.0, AssignCommand + (oTarget, ActionPlayAnimation(ANIMATION_FIREFORGET_BOW))); + DelayCommand(5.1, AssignCommand(oPC, PlaySound("vs_nx2mephm_haha"))); + } + else + { + DelayCommand(5.0, AssignCommand + (oTarget, ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); + } + + DelayCommand(6.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_IMP_REMOVE_CONDITION), oLoc)); + DelayCommand(7.0, AssignCommand + (oTarget, JumpToLocation(GetLocation(GetObjectByTag ("starfall_wp"))))); + DelayCommand(9.0, Cast(SPELL_GREATER_RESTORATION, oTarget)); + DelayCommand(9.5, RemoveEffectOfType(oTarget, EFFECT_TYPE_CONCEALMENT)); + DelayCommand(10.0, PopUpDeathGUIPanel(oPC, TRUE, TRUE, 0, sStfall)); + return; + } + + +if (GetIsPC(oKiller) == TRUE) + { + ++iKilled; + SetLocalInt(oKiller,"iKilled",iKilled); + } +if (oHolyWar==1) + { + iHWdeath = GetLocalInt(oMod, sRes); + ++iHWdeath; + ++iHWPCdeathTot; + SetLocalInt(oPC, "iHWPCdeathTot", iHWPCdeathTot); + SetLocalInt(oMod, sRes, iHWdeath); + if (iTurnFlag==1) + { + DeathMSG(oPC, oKiller); + DelayCommand(3.0, PopUpDeathGUIPanel(oPC, TRUE, TRUE, 0, "Your allies were less than satisfied with your effort during the battle. As a result, they've turned on you and killed you.")); + return; + } + else + { + + DeathMSG(oPC, oKiller); + DelayCommand(3.0, PopUpDeathGUIPanel(oPC, TRUE, TRUE, 0, "You have fallen in the holy war! You feel your lifeforce defiantly returning...have you become immortal?")); + return; + } + } +if (oChallenge==1) + { + //if ((oChallenge==1)&&(oPlayers>=1)) + // { + + // } + // else + // { + if (oLives>0) + { + --oLives; + sChallText = "You have "; + sChallText += IntToString(oLives); + if (oLives==1) {sChallText += " life left. You may exit or respawn";} + else if (oLives==0){sChallText = "Warning: This is your last life. You may exit or respawn";} + else {sChallText += " lives left. You may exit or respawn";} + oMonster = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC); + DelayCommand(1.5, AssignCommand(oMonster, + ActionPlayAnimation(ANIMATION_FIREFORGET_TAUNT))); + DelayCommand(4.0, PopUpDeathGUIPanel(oPC, TRUE, TRUE, 0, sChallText)); + SetLocalInt(oPC,"lives",oLives); + return; + } + if (oLives==0) + { + SetLocalInt(oMod, "d1", 0); + SetLocalInt(oMod, "d2", 0); + SetLocalInt(oMod, "d2a", 0); + SetLocalInt(oMod, "d3", 0); + SetLocalInt(oMod, "d4", 0); + SetLocalInt(oMod, "d5", 0); + SetLocalInt(oMod, "sw_hw", 0); + SetLocalInt(oMod, "sw_dr", 0); + SetLocalInt(oMod, "sw_bl", 0); + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "sw_df", 0); + SetLocalInt(oMod, "sw_pm", 0); + SetLocalInt(oMod, "sw_bm", 0); + SetLocalInt(oMod, "sw_lm", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oMod, "ch_hw", 0); + SetLocalInt(oMod, "ch_dr", 0); + SetLocalInt(oMod, "ch_bl", 0); + SetLocalInt(oMod, "ch_pf", 0); + SetLocalInt(oMod, "ch_df", 0); + SetLocalInt(oMod, "ch_pm", 0); + SetLocalInt(oMod, "ch_bm", 0); + SetLocalInt(oMod, "ch_lm", 0); + SetLocalInt(oMod, "ch_ll", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "challenge", 0); + AddJournalQuestEntry("death", 1, oPC, FALSE, FALSE); + SetLocalInt(oMod, "xcheck", 1); + AssignCommand(oPC, PlaySound("sps_darkness")); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect2 = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + object oBulb = GetObjectByTag("spawner"); + AssignCommand(oBulb, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect2)); + RemoveEffectOfType(oP2, GetEffectType(eEffect2)); + RemoveEffectOfType(oP3, GetEffectType(eEffect2)); + RemoveEffectOfType(oP4, GetEffectType(eEffect2)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + oMonster = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC); + DelayCommand(1.5, AssignCommand(oMonster, + ActionPlayAnimation(ANIMATION_FIREFORGET_TAUNT))); + FloatingTextStringOnCreature("Defeat", oPC); + DelayCommand(7.0, Limbo(oPC)); + DelayCommand(5.0, FloatingTextStringOnCreature("You have failed the Arena Challenge!", oPC)); + if (GetAlignmentGoodEvil(oPC)== ALIGNMENT_GOOD) + { + DelayCommand(13.0, PopUpDeathGUIPanel(oPC, TRUE, TRUE, 0, + "Your defeat affords you an opportunity to learn. You vow to return more powerful to restore your honour!")); + return; + } + else if (GetAlignmentGoodEvil(oPC)== ALIGNMENT_EVIL) + { + DelayCommand(13.0, PopUpDeathGUIPanel(oPC, TRUE, TRUE, 0, + "Losing is for the weak. You vow to return more powerful and turn their glory into suffering!")); + return; + } + else + { + DelayCommand(13.0, PopUpDeathGUIPanel(oPC, TRUE, TRUE, 0, + "You take the defeat in your stride and hope that you can improve next time!")); + } + } + } +else + { + if (GetLocalInt(oMod, "num_players")>=2) + { + FloatingTextStringOnCreature("Defeat", oPC); + DelayCommand(3.0, PopUpDeathGUIPanel(oPC, TRUE, TRUE, 0, sNormText)); + } + else + { + oMonster = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC); + DelayCommand(1.5, AssignCommand(oMonster, + ActionPlayAnimation(ANIMATION_FIREFORGET_TAUNT))); + DelayCommand(2.5, LastWord(oMonster)); + FloatingTextStringOnCreature("Defeat", oPC); + DelayCommand(8.0, Limbo(oPC)); + DelayCommand(12.0, PopUpDeathGUIPanel(oPC, TRUE, TRUE, 0, sNormText)); + return; + } + } +} + + + diff --git a/_module/nss/cm_onheartbeat.nss b/_module/nss/cm_onheartbeat.nss new file mode 100644 index 0000000..911616c --- /dev/null +++ b/_module/nss/cm_onheartbeat.nss @@ -0,0 +1,131 @@ +// Module : OnHeartbeat by Brian "spilth" Kelly +// For Neverwinter Nights - Bleeding Tutorial + +#include "bleeding_config" + +// Dying check inspired by Mitchell M. Evans (gonecamping@cox.net) + +void main() { + + // See if the module thinks anybody is dying + object oModule = GetModule(); + + // Integer Debugger + object oPC = GetFirstPC(); + + // Debugging + + //FloatingTextStringOnCreature(IntToString(GetLocalInt(oPC, "team_bet")), oPC); + //FloatingTextStringOnCreature(IntToString(GetLocalInt(oModule, "hwar_on")), oPC); + //FloatingTextStringOnCreature(IntToString(GetLocalInt(oPC, "join_switch")), oPC); + //FloatingTextStringOnCreature(IntToString(GetLocalInt(oModule, "turn_flag")), oPC); + //FloatingTextStringOnCreature(IntToString(GetLocalInt(oModule, "duel_on")), oPC); + + + + int bEverybodyAlive = GetLocalInt(oModule, "EverybodyAlive"); + + // Only bother looping through players if there are disabled, dying, stable or dead players + if (!bEverybodyAlive) { + object oPC = GetFirstPC(); + int iPlayerHealth = PC_HEALTH_ALIVE; + + // Assume everybody really is alive + int bEverybodyReallyAlive = TRUE; + + // Loop through the players and check their health + while (GetIsObjectValid(oPC)) { + iPlayerHealth = GetLocalInt(oPC, "PlayerHealth"); + + if (iPlayerHealth != PC_HEALTH_ALIVE && iPlayerHealth != PC_HEALTH_DEAD) { + + // Double check their hit points + if (GetCurrentHitPoints(oPC) <= 0) { + // They're really not alive + + // See if they've been healed + if (GetCurrentHitPoints(oPC) > GetLocalInt(oPC,"LastHitPoints")) { + SetLocalInt(oPC, "PlayerHealth", PC_HEALTH_STABLE); + iPlayerHealth = PC_HEALTH_STABLE; + } + + if (iPlayerHealth == PC_HEALTH_DYING) { + bEverybodyReallyAlive = FALSE; + + // Make a stabilization check + if (d100() <= iStabilizationChance) { + // They stabilized + SetLocalInt(oPC, "PlayerHealth", PC_HEALTH_STABLE); + + // See if they want to wait for help + PopUpDeathGUIPanel(oPC, bAllowRespawnWhenStable, bAllowRespawnWhenStable, 0, sStableGUIMessage); + + } else { + // Make a random groan + switch (d6()) { + case 1: + PlayVoiceChat (VOICE_CHAT_PAIN1, oPC); + break; + + case 2: + PlayVoiceChat (VOICE_CHAT_PAIN2, oPC); + break; + + case 3: + PlayVoiceChat (VOICE_CHAT_PAIN3, oPC); + break; + + case 4: + PlayVoiceChat (VOICE_CHAT_HEALME, oPC); + break; + + case 5: + PlayVoiceChat (VOICE_CHAT_NEARDEATH, oPC); + break; + + case 6: + PlayVoiceChat (VOICE_CHAT_HELP, oPC); + break; + + } + + // They bleed! + effect eDamage = EffectDamage(1, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_FIVE); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eDamage, oPC); + + // Save their hit points in case they disconnect + SetLocalInt(oPC, "LastHitPoints", GetCurrentHitPoints(oPC)); + + } // End Stabilization If + + } else if (iPlayerHealth == PC_HEALTH_STABLE) { + bEverybodyReallyAlive = FALSE; + PopUpDeathGUIPanel(oPC, bAllowRespawnWhenStable, bAllowWaitForHelpWhenStable, 0, sStableGUIMessage); + + } else if (iPlayerHealth == PC_HEALTH_DISABLED) { + bEverybodyReallyAlive = FALSE; + PopUpDeathGUIPanel(oPC, bAllowRespawnWhenDisabled, bAllowWaitForHelpWhenDisabled, 0, sDisabledGUIMessage); + + } + + } else { + // Must've been healed or something... + SetLocalInt(oPC, "PlayerHealth", PC_HEALTH_ALIVE); + + } // End HitPoints <= 0 If + + } + + oPC = GetNextPC(); + + } // End while + + if (bEverybodyReallyAlive) { + // We didn't find any dead players, so assume everybody is alive + SetLocalInt(oModule, "EverybodyAlive", TRUE); + } + + } // End if + +} + diff --git a/_module/nss/cm_onmodload.nss b/_module/nss/cm_onmodload.nss new file mode 100644 index 0000000..31b9dd9 --- /dev/null +++ b/_module/nss/cm_onmodload.nss @@ -0,0 +1,23 @@ +// Module : OnModuleLoad by Brian "spilth" Kelly +// For Neverwinter Nights - Bleeding Tutorial +#include "spawner" +void main() { + // Everybody is assumed to be living when the module loads + object oModule = GetModule(); + object oPC = GetFirstPC(); + int oAlign = GetAlignmentGoodEvil(oPC); + SetLocalInt(oModule, "cutscene_flag", 1); + DelayCommand(2.0, SetPlotFlag(GetObjectByTag("starfall"), TRUE)); + if (oAlign==ALIGNMENT_EVIL) + { + SetLocalInt(oModule, "gamemode",1); + spawner (oPC, "mephisto", 2); + } + else + { + SetLocalInt(oModule, "gamemode",0); + spawner (oPC, "starfall", 2); + } + +} + diff --git a/_module/nss/cm_onplayerdyin1.nss b/_module/nss/cm_onplayerdyin1.nss new file mode 100644 index 0000000..d6f35d5 --- /dev/null +++ b/_module/nss/cm_onplayerdyin1.nss @@ -0,0 +1,43 @@ +// Module : OnPlayerDying by Brian "spilth" Kelly +// For Neverwinter Nights - Bleeding Tutorial + +#include "bleeding_config" + +void main() { + object oPC = GetLastPlayerDying(); + + // Let the module know somebody is not alive + object oModule = GetModule(); + if (GetLocalInt(oPC,"arena")) + { + SetLocalInt(oPC, "PlayerHealth", PC_HEALTH_DEAD); + } + else + { + + SetLocalInt(oModule, "EverybodyAlive", FALSE); + + // Check if they stablized, disconnected and then reconnected... + if (GetLocalInt(oPC, "PlayerHealth") != PC_HEALTH_STABLE) { + int iCurrentHitPoints = GetCurrentHitPoints(oPC); + + // How bad is it doc? + if (iCurrentHitPoints == 0) { + SetLocalInt(oPC, "PlayerHealth", PC_HEALTH_DYING); + + } else { + // Flag them as dying. We make them bleed in the module's OnHeartbeat script + SetLocalInt(oPC, "PlayerHealth", PC_HEALTH_DYING); + + } + + // Save their hit points in case they disconnect + SetLocalInt(oPC, "LastHitPoints", iCurrentHitPoints); + + } else { + // Do nothing. Heartbeat will take care of prompting the player + + } + } +} + diff --git a/_module/nss/cn.nss b/_module/nss/cn.nss new file mode 100644 index 0000000..e378766 --- /dev/null +++ b/_module/nss/cn.nss @@ -0,0 +1,9 @@ +void main() +{ +object oPC=GetPCSpeaker(); +ActionCastFakeSpellAtObject(SPELL_STORM_OF_VENGEANCE,oPC); +DelayCommand(2.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_PWSTUN),oPC)); +DelayCommand(2.5,AdjustAlignment(oPC,ALIGNMENT_NEUTRAL,50)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_CHAOTIC,35)); +DelayCommand(2.7,AdjustAlignment(oPC,ALIGNMENT_CHAOTIC,15)); +} diff --git a/_module/nss/co_imbue25.nss b/_module/nss/co_imbue25.nss new file mode 100644 index 0000000..4abe24d --- /dev/null +++ b/_module/nss/co_imbue25.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "codone_1", 1); +DamRes(3,2); +} diff --git a/_module/nss/co_imbue252.nss b/_module/nss/co_imbue252.nss new file mode 100644 index 0000000..084c493 --- /dev/null +++ b/_module/nss/co_imbue252.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "codone_12", 1); +DamRes2(3,2); +} diff --git a/_module/nss/codone_1.nss b/_module/nss/codone_1.nss new file mode 100644 index 0000000..6a361e5 --- /dev/null +++ b/_module/nss/codone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/codone_12.nss b/_module/nss/codone_12.nss new file mode 100644 index 0000000..c80dc80 --- /dev/null +++ b/_module/nss/codone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/codred_imbue_2.nss b/_module/nss/codred_imbue_2.nss new file mode 100644 index 0000000..f19b1a1 --- /dev/null +++ b/_module/nss/codred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "codone_2", 1); +DamRes(3,3); +} diff --git a/_module/nss/codred_imbue_22.nss b/_module/nss/codred_imbue_22.nss new file mode 100644 index 0000000..92230e0 --- /dev/null +++ b/_module/nss/codred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "codone_22", 1); +DamRes2(3,3); +} diff --git a/_module/nss/codred_imbue_3.nss b/_module/nss/codred_imbue_3.nss new file mode 100644 index 0000000..43ed255 --- /dev/null +++ b/_module/nss/codred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "codone_3", 1); +DamRes(3,4); +} diff --git a/_module/nss/codred_imbue_32.nss b/_module/nss/codred_imbue_32.nss new file mode 100644 index 0000000..d011ac6 --- /dev/null +++ b/_module/nss/codred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "comax_reduction2", 1); +SetLocalInt(oPC, "codone_32", 1); +DamRes2(3,4); +} diff --git a/_module/nss/codred_imbue_4.nss b/_module/nss/codred_imbue_4.nss new file mode 100644 index 0000000..65ec4b1 --- /dev/null +++ b/_module/nss/codred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "codone_4", 1); +DamRes(3,5); +} diff --git a/_module/nss/codred_imbue_5.nss b/_module/nss/codred_imbue_5.nss new file mode 100644 index 0000000..7b1e6d0 --- /dev/null +++ b/_module/nss/codred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "codone_5", 1); +SetLocalInt(oPC, "comax_reduction", 1); +DamRes(3,6); +} diff --git a/_module/nss/coed_1.nss b/_module/nss/coed_1.nss new file mode 100644 index 0000000..b0f285c --- /dev/null +++ b/_module/nss/coed_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "codone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/coed_12.nss b/_module/nss/coed_12.nss new file mode 100644 index 0000000..03822ad --- /dev/null +++ b/_module/nss/coed_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "codone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cold_imbue.nss b/_module/nss/cold_imbue.nss new file mode 100644 index 0000000..8dbebb9 --- /dev/null +++ b/_module/nss/cold_imbue.nss @@ -0,0 +1,8 @@ +#include "imbue_include" +void main() +{ +SetLocalInt(GetPCSpeaker(), "cfire_ldb", 1); +ImbueWeapon(VFX_IMP_PULSE_COLD, IP_CONST_DAMAGETYPE_COLD); +} + + diff --git a/_module/nss/cold_imbue_arm.nss b/_module/nss/cold_imbue_arm.nss new file mode 100644 index 0000000..ce98d58 --- /dev/null +++ b/_module/nss/cold_imbue_arm.nss @@ -0,0 +1,7 @@ +#include "imbue_include" +void main() +{ +ImbueArmour(VFX_IMP_PULSE_COLD, IP_CONST_DAMAGETYPE_COLD); +} + + diff --git a/_module/nss/collect_win.nss b/_module/nss/collect_win.nss new file mode 100644 index 0000000..d1529e7 --- /dev/null +++ b/_module/nss/collect_win.nss @@ -0,0 +1,8 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iWinnings = GetLocalInt(oPC, "winnings"); +GiveGoldToCreature(oPC, iWinnings); +SetLocalInt(oPC, "team_bet", 0); +AssignCommand(oPC, PlaySound("it_coins")); +} diff --git a/_module/nss/comax_damred.nss b/_module/nss/comax_damred.nss new file mode 100644 index 0000000..21e2067 --- /dev/null +++ b/_module/nss/comax_damred.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "comax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/comax_damred1.nss b/_module/nss/comax_damred1.nss new file mode 100644 index 0000000..fcf6424 --- /dev/null +++ b/_module/nss/comax_damred1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "comax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/comax_damred12.nss b/_module/nss/comax_damred12.nss new file mode 100644 index 0000000..9d9ece4 --- /dev/null +++ b/_module/nss/comax_damred12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "comax_reduction2") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/comax_damred2.nss b/_module/nss/comax_damred2.nss new file mode 100644 index 0000000..b911a2c --- /dev/null +++ b/_module/nss/comax_damred2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "comax_reduction2") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/comax_reached.nss b/_module/nss/comax_reached.nss new file mode 100644 index 0000000..4412e4a --- /dev/null +++ b/_module/nss/comax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "comax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/compare_xp.nss b/_module/nss/compare_xp.nss new file mode 100644 index 0000000..18a26eb --- /dev/null +++ b/_module/nss/compare_xp.nss @@ -0,0 +1,8 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + int iResult; + + iResult = (GetLocalInt(oPC, "TARGET_XP") < GetXP(oPC)); + return iResult; +} diff --git a/_module/nss/con_imbue.nss b/_module/nss/con_imbue.nss new file mode 100644 index 0000000..5f5c3d3 --- /dev/null +++ b/_module/nss/con_imbue.nss @@ -0,0 +1,6 @@ +#include "ability_imbue" + +void main() +{ +AbilityImbue(IP_CONST_ABILITY_CON); +} diff --git a/_module/nss/conc_imbue.nss b/_module/nss/conc_imbue.nss new file mode 100644 index 0000000..df0042e --- /dev/null +++ b/_module/nss/conc_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_CONCENTRATION, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/cont_cryst.nss b/_module/nss/cont_cryst.nss new file mode 100644 index 0000000..be20204 --- /dev/null +++ b/_module/nss/cont_cryst.nss @@ -0,0 +1,50 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ +object oPC = GetPCSpeaker(); +if (!GetIsPC(oPC)) return; +object oTarget; +object oMod = GetModule(); +object oCrystal1 = GetObjectByTag("crystal1"); +object oCrystal2 = GetObjectByTag("crystal2"); +object oCrystal3 = GetObjectByTag("crystal3"); +int lState = GetLocalInt(oMod, "lever_state"); +if (lState!=1) +{ +SoundObjectPlay(GetObjectByTag("gcsound")); +SoundObjectPlay(GetObjectByTag("gcsound2")); +PlaySound("gui_select"); +PlaySound("sce_positive"); +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Power Crystals activated", oPC)); +//ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(1.0, AssignCommand(oCrystal1, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE))); +DelayCommand(1.0, AssignCommand(oCrystal2, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE))); +DelayCommand(1.0, AssignCommand(oCrystal3, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE))); +SetLocalInt(oMod, "lever_state", 1); +RecomputeStaticLighting(GetArea(OBJECT_SELF)); +} +else +{ +//ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +PlaySound("gui_select"); +PlaySound("sce_negative"); +SoundObjectStop(GetObjectByTag("gcsound")); +SoundObjectStop(GetObjectByTag("gcsound2")); +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Power Crystals deactivated", oPC)); +DelayCommand(1.0, AssignCommand(oCrystal1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +DelayCommand(1.0, AssignCommand(oCrystal2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +DelayCommand(1.0, AssignCommand(oCrystal3, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +SetLocalInt(oMod, "lever_state", 0); +} +} + + diff --git a/_module/nss/cont_fount.nss b/_module/nss/cont_fount.nss new file mode 100644 index 0000000..711b494 --- /dev/null +++ b/_module/nss/cont_fount.nss @@ -0,0 +1,33 @@ +#include "x0_i0_petrify" +#include "nw_i0_generic" +void main() +{ + +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +int oState = GetLocalInt(oMod, "fountain_state"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +if (oState!=1) +{ +DelayCommand(0.0, PlaySound("sce_positive")); +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Restoration Fountains now inaccessable", oPC)); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP3); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP4); +SetLocalInt(oMod, "fountain_state", 1); +} +else +{ + +DelayCommand(0.0, PlaySound("sce_negative")); +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Restoration Fountains now accessable", oPC)); +RemoveEffectOfType(oP3, GetEffectType(eEffect)); +RemoveEffectOfType(oP4, GetEffectType(eEffect)); +SetLocalInt(oMod, "fountain_state", 0); +} +} diff --git a/_module/nss/cont_fount2.nss b/_module/nss/cont_fount2.nss new file mode 100644 index 0000000..faaf070 --- /dev/null +++ b/_module/nss/cont_fount2.nss @@ -0,0 +1,32 @@ +#include "x0_i0_petrify" +#include "nw_i0_generic" +void main() +{ + +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +int oState = GetLocalInt(oMod, "fountain_state"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +if (oState!=1) +{ +PlaySound("gui_select"); +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Restoration Fountains now inaccessable", oPC)); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP3); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP4); +SetLocalInt(oMod, "fountain_state", 1); +} +else +{ +PlaySound("gui_trapdisarm"); +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Restoration Fountains now accessable", oPC)); +RemoveEffectOfType(oP3, GetEffectType(eEffect)); +RemoveEffectOfType(oP4, GetEffectType(eEffect)); +SetLocalInt(oMod, "fountain_state", 0); +} +} diff --git a/_module/nss/cont_pool.nss b/_module/nss/cont_pool.nss new file mode 100644 index 0000000..18dc8bf --- /dev/null +++ b/_module/nss/cont_pool.nss @@ -0,0 +1,33 @@ +#include "x0_i0_petrify" +#include "nw_i0_generic" +void main() +{ + +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +int oState = GetLocalInt(oMod, "pool_state"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +effect eEffect2 = EffectVisualEffect(VFX_NONE); +if (oState!=1) +{ +SetLocalInt(oMod, "pool_state", 1); +DelayCommand(0.0, PlaySound("sce_positive")); +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Rejeuvination pools now inaccessable", oPC)); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP1); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP2); +} +else +{ +SetLocalInt(oMod, "pool_state", 0); +DelayCommand(0.0, PlaySound("sce_negative")); +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Rejeuvination pools now accessable", oPC)); +RemoveEffectOfType(oP1, GetEffectType(eEffect)); +RemoveEffectOfType(oP2, GetEffectType(eEffect)); +} +} diff --git a/_module/nss/cont_pool2.nss b/_module/nss/cont_pool2.nss new file mode 100644 index 0000000..ee72189 --- /dev/null +++ b/_module/nss/cont_pool2.nss @@ -0,0 +1,33 @@ +#include "x0_i0_petrify" +#include "nw_i0_generic" +void main() +{ + +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +int oState = GetLocalInt(oMod, "pool_state"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +effect eEffect2 = EffectVisualEffect(VFX_NONE); +if (oState!=1) +{ +PlaySound("gui_select"); +SetLocalInt(oMod, "pool_state", 1); +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Rejeuvination pools now inaccessable", oPC)); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP1); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP2); +} +else +{ +PlaySound("gui_trapdisarm"); +SetLocalInt(oMod, "pool_state", 0); +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Rejeuvination pools now accessable", oPC)); +RemoveEffectOfType(oP1, GetEffectType(eEffect)); +RemoveEffectOfType(oP2, GetEffectType(eEffect)); +} +} diff --git a/_module/nss/conv.nss b/_module/nss/conv.nss new file mode 100644 index 0000000..847617c --- /dev/null +++ b/_module/nss/conv.nss @@ -0,0 +1,5 @@ +void main() +{ + object oPC = GetLastUsedBy(); + ActionStartConversation(oPC, "superstore"); +} diff --git a/_module/nss/conv1.nss b/_module/nss/conv1.nss new file mode 100644 index 0000000..ceb2034 --- /dev/null +++ b/_module/nss/conv1.nss @@ -0,0 +1,5 @@ +void main() +{ + object oPC = GetLastUsedBy(); + ActionStartConversation(oPC, "plotitems"); +} diff --git a/_module/nss/conv2.nss b/_module/nss/conv2.nss new file mode 100644 index 0000000..b8c431b --- /dev/null +++ b/_module/nss/conv2.nss @@ -0,0 +1,5 @@ +void main() +{ + object oPC = GetLastUsedBy(); + ActionStartConversation(oPC, "standard"); +} diff --git a/_module/nss/conv3.nss b/_module/nss/conv3.nss new file mode 100644 index 0000000..f06f4b3 --- /dev/null +++ b/_module/nss/conv3.nss @@ -0,0 +1,5 @@ +void main() +{ + object oPC = GetLastUsedBy(); + ActionStartConversation(oPC, "specialty"); +} diff --git a/_module/nss/conv4.nss b/_module/nss/conv4.nss new file mode 100644 index 0000000..eca1e37 --- /dev/null +++ b/_module/nss/conv4.nss @@ -0,0 +1,5 @@ +void main() +{ + object oPC = GetLastUsedBy(); + ActionStartConversation(oPC, "magics"); +} diff --git a/_module/nss/conv5.nss b/_module/nss/conv5.nss new file mode 100644 index 0000000..869a902 --- /dev/null +++ b/_module/nss/conv5.nss @@ -0,0 +1,5 @@ +void main() +{ + object oPC = GetLastUsedBy(); + ActionStartConversation(oPC, "changer"); +} diff --git a/_module/nss/conv_store.nss b/_module/nss/conv_store.nss new file mode 100644 index 0000000..5b1c702 --- /dev/null +++ b/_module/nss/conv_store.nss @@ -0,0 +1,20 @@ +#include "scorekeep" + +void main() +{ +object oPC = GetPCSpeaker(); +FloatingTextStringOnCreature("Saving...", oPC); +StoreKills(oPC); +DelayCommand(0.3, StoreDeaths(oPC)); +DelayCommand(0.6, StoreChall(oPC)); +DelayCommand(0.9, StoreMon(oPC)); +DelayCommand(1.2, StoreHits(oPC)); +DelayCommand(1.5, StoreDamage(oPC)); +DelayCommand(1.6, StoreSwings(oPC)); +DelayCommand(1.7, StoreAOCscore(oPC)); +DelayCommand(1.8, StoreDeity(oPC)); +DelayCommand(1.9, ExportSingleCharacter(oPC)); +DelayCommand(2.0, FloatingTextStringOnCreature("** Data recorded successfully **", oPC)); +PlaySound("gui_select"); +DelayCommand(2.1, PlaySound("sce_positive")); +} diff --git a/_module/nss/copy_item.nss b/_module/nss/copy_item.nss new file mode 100644 index 0000000..ee30571 --- /dev/null +++ b/_module/nss/copy_item.nss @@ -0,0 +1,181 @@ +#include "spawner" + +void Dupe(object oItem, location lSelf, object oSelf) +{ + CopyObject(oItem, lSelf, oSelf); +} + + + + + + +void main() +{ +object oPC = GetLastClosedBy(); +int o0 = BASE_ITEM_DWARVENWARAXE; +int o1 = BASE_ITEM_RAPIER; +int o2 = BASE_ITEM_LONGSWORD; +int o3 = BASE_ITEM_BASTARDSWORD; +int o4 = BASE_ITEM_BATTLEAXE; +int o5 = BASE_ITEM_KUKRI; +int o6 = BASE_ITEM_WARHAMMER; +int o7 = BASE_ITEM_SHORTSWORD; +int o8 = BASE_ITEM_KAMA; +int o9 = BASE_ITEM_GREATSWORD; +int o10 = BASE_ITEM_HELMET; +int o11 = BASE_ITEM_BOOTS; +int o12 = BASE_ITEM_BELT; +int o13 = BASE_ITEM_AMULET; +int o14 = BASE_ITEM_RING; +int o15 = BASE_ITEM_CLOAK; +int o16 = BASE_ITEM_ARMOR; +int o17 = BASE_ITEM_BRACER; +int o18 = BASE_ITEM_TOWERSHIELD; +int o19 = BASE_ITEM_GLOVES; +int o20 = BASE_ITEM_LONGBOW; +int o21 = BASE_ITEM_HEAVYCROSSBOW; +int o22 = BASE_ITEM_SHORTBOW; +int o23 = BASE_ITEM_LIGHTCROSSBOW; +int o24 = BASE_ITEM_DOUBLEAXE; +int o25 = BASE_ITEM_TWOBLADEDSWORD; +int o26 = BASE_ITEM_WHIP; +int o27 = BASE_ITEM_SICKLE; +int o28 = BASE_ITEM_SCYTHE; +int o29 = BASE_ITEM_MORNINGSTAR; +int o30 = BASE_ITEM_QUARTERSTAFF; +int o31 = BASE_ITEM_SCIMITAR; +int o32 = BASE_ITEM_SHORTSPEAR; +int o33 = BASE_ITEM_LIGHTFLAIL; +int o34 = BASE_ITEM_HEAVYFLAIL; +int o35 = BASE_ITEM_HALBERD; +int o36 = BASE_ITEM_GREATAXE; +int o37 = BASE_ITEM_KATANA; +int o38 = BASE_ITEM_LIGHTMACE; +int o39 = BASE_ITEM_DIREMACE; +int o40 = BASE_ITEM_DAGGER; +int o41 = BASE_ITEM_BOLT; +int o42 = BASE_ITEM_ARROW; +int iCount = 0; +int oCount = 0; +int oPearl = 0; +int oPcount = 0; +int oNcount = 0; +object oSelf = OBJECT_SELF; +location lSelf = GetLocation(oSelf); +object oItem = GetFirstItemInInventory(oSelf); + +while (GetIsObjectValid(oItem)) + { + ++iCount; + if ((GetBaseItemType(oItem)==o1)||(GetBaseItemType(oItem)==o1)|| + (GetBaseItemType(oItem)==o1)||(GetBaseItemType(oItem)==o2)|| + (GetBaseItemType(oItem)==o3)||(GetBaseItemType(oItem)==o4)|| + (GetBaseItemType(oItem)==o5)||(GetBaseItemType(oItem)==o6)|| + (GetBaseItemType(oItem)==o7)||(GetBaseItemType(oItem)==o8)|| + (GetBaseItemType(oItem)==o9)||(GetBaseItemType(oItem)==o10)|| + (GetBaseItemType(oItem)==o11)||(GetBaseItemType(oItem)==o12)|| + (GetBaseItemType(oItem)==o13)||(GetBaseItemType(oItem)==o0)|| + (GetBaseItemType(oItem)==o15)||(GetBaseItemType(oItem)==o16)|| + (GetBaseItemType(oItem)==o17)||(GetBaseItemType(oItem)==o18)|| + (GetBaseItemType(oItem)==o19)||(GetBaseItemType(oItem)==o20)|| + (GetBaseItemType(oItem)==o21)||(GetBaseItemType(oItem)==o22)|| + (GetBaseItemType(oItem)==o23)||(GetBaseItemType(oItem)==o24)|| + (GetBaseItemType(oItem)==o25)||(GetBaseItemType(oItem)==o26)|| + (GetBaseItemType(oItem)==o27)||(GetBaseItemType(oItem)==o28)|| + (GetBaseItemType(oItem)==o29)||(GetBaseItemType(oItem)==o30)|| + (GetBaseItemType(oItem)==o31)||(GetBaseItemType(oItem)==o32)|| + (GetBaseItemType(oItem)==o33)||(GetBaseItemType(oItem)==o34)|| + (GetBaseItemType(oItem)==o35)||(GetBaseItemType(oItem)==o36)|| + (GetBaseItemType(oItem)==o37)||(GetBaseItemType(oItem)==o38)|| + (GetBaseItemType(oItem)==o39)||(GetBaseItemType(oItem)==o40)|| + (GetBaseItemType(oItem)==o41)||(GetBaseItemType(oItem)==o42)) + + { + ++oCount; + } + oItem = GetNextItemInInventory(oSelf); + } + if (iCount==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + if (GetTag(oItem)=="coin1") + { + FloatingTextStringOnCreature("You need an item as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("You need a Gold Arena Token as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + } + if (iCount==0) + { + return; + } + if ((iCount>1)&&(iCount<3)) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + { + oPearl = 1; + ++oPcount; + } + else + { + ++oNcount; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oNcount==2) + { + FloatingTextStringOnCreature("You can't put two items in the duplicator", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPcount>1) + { + FloatingTextStringOnCreature("You can not use more than one Arena Token", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPearl==1) + { + if (oCount!=0) + { + SetLocked(oSelf, TRUE); + oItem = GetFirstItemInInventory(oSelf); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + { + DestroyObject(oItem); + } + oItem = GetNextItemInInventory(oSelf); + } + DelayCommand(0.5, Dupe(GetFirstItemInInventory(oSelf), lSelf, oSelf)); + PCEffect(0.7, VFX_FNF_DISPEL_GREATER, oSelf); + PCEffect(1.0, VFX_DUR_PIXIEDUST, oSelf); + DelayCommand(3.0, SetLocked(oSelf, FALSE)); + return; + } + else + { + FloatingTextStringOnCreature("Nice try!", oPC); + PlaySound("sim_cntresist"); + return; + } + } + } + else + { + FloatingTextStringOnCreature("This will only work with one item and a gold coin", oPC); + PlaySound("sim_cntresist"); + return; + } +} diff --git a/_module/nss/copy_item2.nss b/_module/nss/copy_item2.nss new file mode 100644 index 0000000..c104c1d --- /dev/null +++ b/_module/nss/copy_item2.nss @@ -0,0 +1,190 @@ +#include "spawner" + +void Dupe(object oItem, location lSelf, object oSelf) +{ + CopyObject(oItem, lSelf, oSelf); +} + + + + + + +void main() +{ +object oPC = GetLastClosedBy(); +int o0 = BASE_ITEM_DWARVENWARAXE; +int o1 = BASE_ITEM_RAPIER; +int o2 = BASE_ITEM_LONGSWORD; +int o3 = BASE_ITEM_BASTARDSWORD; +int o4 = BASE_ITEM_BATTLEAXE; +int o5 = BASE_ITEM_KUKRI; +int o6 = BASE_ITEM_WARHAMMER; +int o7 = BASE_ITEM_SHORTSWORD; +int o8 = BASE_ITEM_KAMA; +int o9 = BASE_ITEM_GREATSWORD; +int o10 = BASE_ITEM_HELMET; +int o11 = BASE_ITEM_BOOTS; +int o12 = BASE_ITEM_BELT; +int o13 = BASE_ITEM_AMULET; +int o14 = BASE_ITEM_RING; +int o15 = BASE_ITEM_CLOAK; +int o16 = BASE_ITEM_ARMOR; +int o17 = BASE_ITEM_BRACER; +int o18 = BASE_ITEM_TOWERSHIELD; +int o19 = BASE_ITEM_GLOVES; +int o20 = BASE_ITEM_LONGBOW; +int o21 = BASE_ITEM_HEAVYCROSSBOW; +int o22 = BASE_ITEM_SHORTBOW; +int o23 = BASE_ITEM_LIGHTCROSSBOW; +int o24 = BASE_ITEM_DOUBLEAXE; +int o25 = BASE_ITEM_TWOBLADEDSWORD; +int o26 = BASE_ITEM_WHIP; +int o27 = BASE_ITEM_SICKLE; +int o28 = BASE_ITEM_SCYTHE; +int o29 = BASE_ITEM_MORNINGSTAR; +int o30 = BASE_ITEM_QUARTERSTAFF; +int o31 = BASE_ITEM_SCIMITAR; +int o32 = BASE_ITEM_SHORTSPEAR; +int o33 = BASE_ITEM_LIGHTFLAIL; +int o34 = BASE_ITEM_HEAVYFLAIL; +int o35 = BASE_ITEM_HALBERD; +int o36 = BASE_ITEM_GREATAXE; +int o37 = BASE_ITEM_KATANA; +int o38 = BASE_ITEM_LIGHTMACE; +int o39 = BASE_ITEM_DIREMACE; +int o40 = BASE_ITEM_DAGGER; +int o41 = BASE_ITEM_BOLT; +int o42 = BASE_ITEM_ARROW; +int iCount = 0; +int oCount = 0; +int oPearl = 0; +int oPcount = 0; +int oNcount = 0; +object oSelf = OBJECT_SELF; +location lSelf = GetLocation(oSelf); +object oItem = GetFirstItemInInventory(oSelf); + +while (GetIsObjectValid(oItem)) + { + ++iCount; + if ((GetBaseItemType(oItem)==o1)||(GetBaseItemType(oItem)==o1)|| + (GetBaseItemType(oItem)==o1)||(GetBaseItemType(oItem)==o2)|| + (GetBaseItemType(oItem)==o3)||(GetBaseItemType(oItem)==o4)|| + (GetBaseItemType(oItem)==o5)||(GetBaseItemType(oItem)==o6)|| + (GetBaseItemType(oItem)==o7)||(GetBaseItemType(oItem)==o8)|| + (GetBaseItemType(oItem)==o9)||(GetBaseItemType(oItem)==o10)|| + (GetBaseItemType(oItem)==o11)||(GetBaseItemType(oItem)==o12)|| + (GetBaseItemType(oItem)==o13)||(GetBaseItemType(oItem)==o0)|| + (GetBaseItemType(oItem)==o15)||(GetBaseItemType(oItem)==o16)|| + (GetBaseItemType(oItem)==o17)||(GetBaseItemType(oItem)==o18)|| + (GetBaseItemType(oItem)==o19)||(GetBaseItemType(oItem)==o20)|| + (GetBaseItemType(oItem)==o21)||(GetBaseItemType(oItem)==o22)|| + (GetBaseItemType(oItem)==o23)||(GetBaseItemType(oItem)==o24)|| + (GetBaseItemType(oItem)==o25)||(GetBaseItemType(oItem)==o26)|| + (GetBaseItemType(oItem)==o27)||(GetBaseItemType(oItem)==o28)|| + (GetBaseItemType(oItem)==o29)||(GetBaseItemType(oItem)==o30)|| + (GetBaseItemType(oItem)==o31)||(GetBaseItemType(oItem)==o32)|| + (GetBaseItemType(oItem)==o33)||(GetBaseItemType(oItem)==o34)|| + (GetBaseItemType(oItem)==o35)||(GetBaseItemType(oItem)==o36)|| + (GetBaseItemType(oItem)==o37)||(GetBaseItemType(oItem)==o38)|| + (GetBaseItemType(oItem)==o39)||(GetBaseItemType(oItem)==o40)|| + (GetBaseItemType(oItem)==o41)||(GetBaseItemType(oItem)==o42)) + + { + ++oCount; + } + oItem = GetNextItemInInventory(oSelf); + } + if (iCount==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + if ((GetBaseItemType(oItem)==o41)||(GetBaseItemType(oItem)==o42)) + { + SetLocked(oSelf, TRUE); + DelayCommand(0.5, Dupe(GetFirstItemInInventory(oSelf), lSelf, oSelf)); + PCEffect(0.7, VFX_FNF_DISPEL_GREATER, oSelf); + PCEffect(1.0, VFX_DUR_PIXIEDUST, oSelf); + DelayCommand(3.0, SetLocked(oSelf, FALSE)); + return; + } + if (GetTag(oItem)=="coin1") + { + FloatingTextStringOnCreature("You need an item as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("You need a Gold Arena Token as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + } + if (iCount==0) + { + return; + } + if ((iCount>1)&&(iCount<3)) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + { + oPearl = 1; + ++oPcount; + } + else + { + ++oNcount; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oNcount==2) + { + FloatingTextStringOnCreature("You can't put two items in the duplicator", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPcount>1) + { + FloatingTextStringOnCreature("You can not use more than one Arena Token", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPearl==1) + { + if (oCount!=0) + { + SetLocked(oSelf, TRUE); + oItem = GetFirstItemInInventory(oSelf); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + { + DestroyObject(oItem); + } + oItem = GetNextItemInInventory(oSelf); + } + DelayCommand(0.5, Dupe(GetFirstItemInInventory(oSelf), lSelf, oSelf)); + PCEffect(0.7, VFX_FNF_DISPEL_GREATER, oSelf); + PCEffect(1.0, VFX_DUR_PIXIEDUST, oSelf); + DelayCommand(3.0, SetLocked(oSelf, FALSE)); + return; + } + else + { + FloatingTextStringOnCreature("Nice try!", oPC); + PlaySound("sim_cntresist"); + return; + } + } + } + else + { + FloatingTextStringOnCreature("This will only work with one item and a gold coin", oPC); + PlaySound("sim_cntresist"); + return; + } +} diff --git a/_module/nss/copy_item3.nss b/_module/nss/copy_item3.nss new file mode 100644 index 0000000..c64d944 --- /dev/null +++ b/_module/nss/copy_item3.nss @@ -0,0 +1,200 @@ +#include "spawner" + +void Dupe(object oItem, location lSelf, object oSelf) +{ + CopyObject(oItem, lSelf, oSelf); +} + + + + + + +void main() +{ +object oPC = GetLastClosedBy(); +int o0 = BASE_ITEM_DWARVENWARAXE; +int o1 = BASE_ITEM_RAPIER; +int o2 = BASE_ITEM_LONGSWORD; +int o3 = BASE_ITEM_BASTARDSWORD; +int o4 = BASE_ITEM_BATTLEAXE; +int o5 = BASE_ITEM_KUKRI; +int o6 = BASE_ITEM_WARHAMMER; +int o7 = BASE_ITEM_SHORTSWORD; +int o8 = BASE_ITEM_KAMA; +int o9 = BASE_ITEM_GREATSWORD; +int o10 = BASE_ITEM_HELMET; +int o11 = BASE_ITEM_BOOTS; +int o12 = BASE_ITEM_BELT; +int o13 = BASE_ITEM_AMULET; +int o14 = BASE_ITEM_RING; +int o15 = BASE_ITEM_CLOAK; +int o16 = BASE_ITEM_ARMOR; +int o17 = BASE_ITEM_BRACER; +int o18 = BASE_ITEM_TOWERSHIELD; +int o19 = BASE_ITEM_GLOVES; +int o20 = BASE_ITEM_LONGBOW; +int o21 = BASE_ITEM_HEAVYCROSSBOW; +int o22 = BASE_ITEM_SHORTBOW; +int o23 = BASE_ITEM_LIGHTCROSSBOW; +int o24 = BASE_ITEM_DOUBLEAXE; +int o25 = BASE_ITEM_TWOBLADEDSWORD; +int o26 = BASE_ITEM_WHIP; +int o27 = BASE_ITEM_SICKLE; +int o28 = BASE_ITEM_SCYTHE; +int o29 = BASE_ITEM_MORNINGSTAR; +int o30 = BASE_ITEM_QUARTERSTAFF; +int o31 = BASE_ITEM_SCIMITAR; +int o32 = BASE_ITEM_SHORTSPEAR; +int o33 = BASE_ITEM_LIGHTFLAIL; +int o34 = BASE_ITEM_HEAVYFLAIL; +int o35 = BASE_ITEM_HALBERD; +int o36 = BASE_ITEM_GREATAXE; +int o37 = BASE_ITEM_KATANA; +int o38 = BASE_ITEM_LIGHTMACE; +int o39 = BASE_ITEM_DIREMACE; +int o40 = BASE_ITEM_DAGGER; +int o41 = BASE_ITEM_BOLT; +int o42 = BASE_ITEM_ARROW; +int iCount = 0; +int oCount = 0; +int oPearl = 0; +int oPcount = 0; +int oNcount = 0; +object oSelf = OBJECT_SELF; +location lSelf = GetLocation(oSelf); +object oItem = GetFirstItemInInventory(oSelf); + +while (GetIsObjectValid(oItem)) + { + ++iCount; + if ((GetBaseItemType(oItem)==o1)||(GetBaseItemType(oItem)==o1)|| + (GetBaseItemType(oItem)==o1)||(GetBaseItemType(oItem)==o2)|| + (GetBaseItemType(oItem)==o3)||(GetBaseItemType(oItem)==o4)|| + (GetBaseItemType(oItem)==o5)||(GetBaseItemType(oItem)==o6)|| + (GetBaseItemType(oItem)==o7)||(GetBaseItemType(oItem)==o8)|| + (GetBaseItemType(oItem)==o9)||(GetBaseItemType(oItem)==o10)|| + (GetBaseItemType(oItem)==o11)||(GetBaseItemType(oItem)==o12)|| + (GetBaseItemType(oItem)==o13)||(GetBaseItemType(oItem)==o0)|| + (GetBaseItemType(oItem)==o15)||(GetBaseItemType(oItem)==o16)|| + (GetBaseItemType(oItem)==o17)||(GetBaseItemType(oItem)==o18)|| + (GetBaseItemType(oItem)==o19)||(GetBaseItemType(oItem)==o20)|| + (GetBaseItemType(oItem)==o21)||(GetBaseItemType(oItem)==o22)|| + (GetBaseItemType(oItem)==o23)||(GetBaseItemType(oItem)==o24)|| + (GetBaseItemType(oItem)==o25)||(GetBaseItemType(oItem)==o26)|| + (GetBaseItemType(oItem)==o27)||(GetBaseItemType(oItem)==o28)|| + (GetBaseItemType(oItem)==o29)||(GetBaseItemType(oItem)==o30)|| + (GetBaseItemType(oItem)==o31)||(GetBaseItemType(oItem)==o32)|| + (GetBaseItemType(oItem)==o33)||(GetBaseItemType(oItem)==o34)|| + (GetBaseItemType(oItem)==o35)||(GetBaseItemType(oItem)==o36)|| + (GetBaseItemType(oItem)==o37)||(GetBaseItemType(oItem)==o38)|| + (GetBaseItemType(oItem)==o39)||(GetBaseItemType(oItem)==o40)|| + (GetBaseItemType(oItem)==o41)||(GetBaseItemType(oItem)==o42)) + + { + ++oCount; + } + oItem = GetNextItemInInventory(oSelf); + } + if (iCount==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + if ((GetBaseItemType(oItem)==o41)||(GetBaseItemType(oItem)==o42)) + { + SetLocked(oSelf, TRUE); + DelayCommand(0.5, Dupe(GetFirstItemInInventory(oSelf), lSelf, oSelf)); + PCEffect(0.7, VFX_FNF_DISPEL_GREATER, oSelf); + PCEffect(1.0, VFX_DUR_PIXIEDUST, oSelf); + DelayCommand(3.0, SetLocked(oSelf, FALSE)); + return; + } + if (GetTag(oItem)=="coin1") + { + FloatingTextStringOnCreature("You need an item as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("You need a Gold Arena Token as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + } + if (iCount==0) + { + return; + } + if ((iCount>1)&&(iCount<3)) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + { + oPearl = 1; + ++oPcount; + } + else + { + ++oNcount; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oNcount==2) + { + FloatingTextStringOnCreature("You can't put two items in the duplicator", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPcount>1) + { + FloatingTextStringOnCreature("You can not use more than one Arena Token", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPearl==1) + { + if (oCount!=0) + { + SetLocked(oSelf, TRUE); + oItem = GetFirstItemInInventory(oSelf); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + { + DestroyObject(oItem); + } + oItem = GetNextItemInInventory(oSelf); + } + if ((GetBaseItemType(GetFirstItemInInventory(oSelf))==o41)||(GetBaseItemType(GetFirstItemInInventory(oSelf))==o42)) + { + CreateItemOnObject("coin1", OBJECT_SELF, 1); + FloatingTextStringOnCreature("You don't need a token for this!", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + DelayCommand(0.5, Dupe(GetFirstItemInInventory(oSelf), lSelf, oSelf)); + PCEffect(0.7, VFX_FNF_DISPEL_GREATER, oSelf); + PCEffect(1.0, VFX_DUR_PIXIEDUST, oSelf); + DelayCommand(3.0, SetLocked(oSelf, FALSE)); + return; + } + } + else + { + FloatingTextStringOnCreature("Nice try!", oPC); + PlaySound("sim_cntresist"); + return; + } + } + } + else + { + FloatingTextStringOnCreature("This will only work with one item and a gold coin", oPC); + PlaySound("sim_cntresist"); + return; + } +} diff --git a/_module/nss/copy_item4.nss b/_module/nss/copy_item4.nss new file mode 100644 index 0000000..62372b8 --- /dev/null +++ b/_module/nss/copy_item4.nss @@ -0,0 +1,249 @@ +#include "spawner" + +void Dupe(object oItem, location lSelf, object oSelf) +{ + CopyObject(oItem, lSelf, oSelf); +} + + + + + + +void main() +{ +object oPC = GetLastClosedBy(); +int iCtype = 0; +int oAmmoflag = 0; +int iStype = 0; +int iAmmohere = 0; +int o0 = BASE_ITEM_DWARVENWARAXE; +int o1 = BASE_ITEM_RAPIER; +int o2 = BASE_ITEM_LONGSWORD; +int o3 = BASE_ITEM_BASTARDSWORD; +int o4 = BASE_ITEM_BATTLEAXE; +int o5 = BASE_ITEM_KUKRI; +int o6 = BASE_ITEM_WARHAMMER; +int o7 = BASE_ITEM_SHORTSWORD; +int o8 = BASE_ITEM_KAMA; +int o9 = BASE_ITEM_GREATSWORD; +int o10 = BASE_ITEM_HELMET; +int o11 = BASE_ITEM_BOOTS; +int o12 = BASE_ITEM_BELT; +int o13 = BASE_ITEM_AMULET; +int o14 = BASE_ITEM_RING; +int o15 = BASE_ITEM_CLOAK; +int o16 = BASE_ITEM_ARMOR; +int o17 = BASE_ITEM_BRACER; +int o18 = BASE_ITEM_TOWERSHIELD; +int o19 = BASE_ITEM_GLOVES; +int o20 = BASE_ITEM_LONGBOW; +int o21 = BASE_ITEM_HEAVYCROSSBOW; +int o22 = BASE_ITEM_SHORTBOW; +int o23 = BASE_ITEM_LIGHTCROSSBOW; +int o24 = BASE_ITEM_DOUBLEAXE; +int o25 = BASE_ITEM_TWOBLADEDSWORD; +int o26 = BASE_ITEM_WHIP; +int o27 = BASE_ITEM_SICKLE; +int o28 = BASE_ITEM_SCYTHE; +int o29 = BASE_ITEM_MORNINGSTAR; +int o30 = BASE_ITEM_QUARTERSTAFF; +int o31 = BASE_ITEM_SCIMITAR; +int o32 = BASE_ITEM_SHORTSPEAR; +int o33 = BASE_ITEM_LIGHTFLAIL; +int o34 = BASE_ITEM_HEAVYFLAIL; +int o35 = BASE_ITEM_HALBERD; +int o36 = BASE_ITEM_GREATAXE; +int o37 = BASE_ITEM_KATANA; +int o38 = BASE_ITEM_LIGHTMACE; +int o39 = BASE_ITEM_DIREMACE; +int o40 = BASE_ITEM_DAGGER; +int o41 = BASE_ITEM_BOLT; +int o42 = BASE_ITEM_ARROW; +int iCount = 0; +int oCount = 0; +int oPearl = 0; +int oPcount = 0; +int oNcount = 0; +object oSelf = OBJECT_SELF; +location lSelf = GetLocation(oSelf); +object oItem = GetFirstItemInInventory(oSelf); + +while (GetIsObjectValid(oItem)) + { + ++iCount; + if ((GetBaseItemType(oItem)==o1)||(GetBaseItemType(oItem)==o2)|| + (GetBaseItemType(oItem)==o3)||(GetBaseItemType(oItem)==o4)|| + (GetBaseItemType(oItem)==o5)||(GetBaseItemType(oItem)==o6)|| + (GetBaseItemType(oItem)==o7)||(GetBaseItemType(oItem)==o8)|| + (GetBaseItemType(oItem)==o9)||(GetBaseItemType(oItem)==o10)|| + (GetBaseItemType(oItem)==o11)||(GetBaseItemType(oItem)==o12)|| + (GetBaseItemType(oItem)==o13)||(GetBaseItemType(oItem)==o0)|| + (GetBaseItemType(oItem)==o15)||(GetBaseItemType(oItem)==o16)|| + (GetBaseItemType(oItem)==o17)||(GetBaseItemType(oItem)==o18)|| + (GetBaseItemType(oItem)==o19)||(GetBaseItemType(oItem)==o20)|| + (GetBaseItemType(oItem)==o21)||(GetBaseItemType(oItem)==o22)|| + (GetBaseItemType(oItem)==o23)||(GetBaseItemType(oItem)==o24)|| + (GetBaseItemType(oItem)==o25)||(GetBaseItemType(oItem)==o26)|| + (GetBaseItemType(oItem)==o27)||(GetBaseItemType(oItem)==o28)|| + (GetBaseItemType(oItem)==o29)||(GetBaseItemType(oItem)==o30)|| + (GetBaseItemType(oItem)==o31)||(GetBaseItemType(oItem)==o32)|| + (GetBaseItemType(oItem)==o33)||(GetBaseItemType(oItem)==o34)|| + (GetBaseItemType(oItem)==o35)||(GetBaseItemType(oItem)==o36)|| + (GetBaseItemType(oItem)==o37)||(GetBaseItemType(oItem)==o38)|| + (GetBaseItemType(oItem)==o39)||(GetBaseItemType(oItem)==o40)|| + (GetBaseItemType(oItem)==o41)||(GetBaseItemType(oItem)==o42)) + + { + ++oCount; + if ((GetBaseItemType(oItem)==o41)||(GetBaseItemType(oItem)==o42)) + {iAmmohere = 1;} + } + oItem = GetNextItemInInventory(oSelf); + } + if (iCount==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + if ((GetBaseItemType(oItem)==o41)||(GetBaseItemType(oItem)==o42)) + { + SetLocked(oSelf, TRUE); + DelayCommand(0.5, Dupe(GetFirstItemInInventory(oSelf), lSelf, oSelf)); + PCEffect(0.7, VFX_FNF_DISPEL_GREATER, oSelf); + PCEffect(1.0, VFX_DUR_PIXIEDUST, oSelf); + DelayCommand(3.0, SetLocked(oSelf, FALSE)); + return; + } + if (GetTag(oItem)=="coin1") + { + FloatingTextStringOnCreature("You need an item as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("You need a Gold Arena Token as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + } + if (iCount==0) + { + return; + } + if ((iCount>1)&&(iCount<3)) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + { + oPearl = 1; + ++oPcount; + } + else + { + ++oNcount; + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin2")) + { + iCtype = 1; + ++iStype; + //++oPcount; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + + if (oNcount==2) + { + if ((oPcount==2)||(iStype==2)) + { + FloatingTextStringOnCreature("You can't put two Tokens in the duplicator!", oPC); + PlaySound("sim_cntresist"); + return; + } + else if (iStype==0) + { + FloatingTextStringOnCreature("You can't put two items in the duplicator", oPC); + PlaySound("sim_cntresist"); + return; + } + + } + + if (oPcount>1) + { + FloatingTextStringOnCreature("You can't put two Tokens in the duplicator!", oPC); + PlaySound("sim_cntresist"); + return; + } + if (iCtype==1) + { + if (iAmmohere==1) + { + FloatingTextStringOnCreature("You don't need a Token for this!", oPC); + PlaySound("sim_cntresist"); + return; + } + else if (oPearl==1) + { + FloatingTextStringOnCreature("You can't put two Tokens in the duplicator!", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("Gold Tokens only please!", oPC); + PlaySound("sim_cntresist"); + return; + } + } + if (oPearl==1) + { + if (oCount!=0) + { + SetLocked(oSelf, TRUE); + oItem = GetFirstItemInInventory(oSelf); + while (GetIsObjectValid(oItem)) + { + if ((GetBaseItemType(oItem)==o41)||(GetBaseItemType(oItem)==o42)) + { + oAmmoflag = 1; + } + if (GetTag(oItem)=="coin1") + { + DestroyObject(oItem); + } + oItem = GetNextItemInInventory(oSelf); + } + if (oAmmoflag==1) + { + CreateItemOnObject("coin1", OBJECT_SELF, 1); + FloatingTextStringOnCreature("You don't need a token for this!", oPC); + PlaySound("sim_cntresist"); + SetLocked(oSelf, FALSE); + return; + } + else + { + DelayCommand(0.5, Dupe(GetFirstItemInInventory(oSelf), lSelf, oSelf)); + PCEffect(0.7, VFX_FNF_DISPEL_GREATER, oSelf); + PCEffect(1.0, VFX_DUR_PIXIEDUST, oSelf); + DelayCommand(3.0, SetLocked(oSelf, FALSE)); + return; + } + } + else + { + FloatingTextStringOnCreature("Nice try!", oPC); + PlaySound("sim_cntresist"); + return; + } + } + } + else + { + FloatingTextStringOnCreature("This will only work with one item and a gold coin", oPC); + PlaySound("sim_cntresist"); + return; + } +} diff --git a/_module/nss/cored1_1.nss b/_module/nss/cored1_1.nss new file mode 100644 index 0000000..383f698 --- /dev/null +++ b/_module/nss/cored1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "codone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "codone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cored1_12.nss b/_module/nss/cored1_12.nss new file mode 100644 index 0000000..f1c34dc --- /dev/null +++ b/_module/nss/cored1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "codone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "codone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cored_0.nss b/_module/nss/cored_0.nss new file mode 100644 index 0000000..69fa703 --- /dev/null +++ b/_module/nss/cored_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/cored_02.nss b/_module/nss/cored_02.nss new file mode 100644 index 0000000..3e6f9e1 --- /dev/null +++ b/_module/nss/cored_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/cored_10.nss b/_module/nss/cored_10.nss new file mode 100644 index 0000000..117454f --- /dev/null +++ b/_module/nss/cored_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/cored_11.nss b/_module/nss/cored_11.nss new file mode 100644 index 0000000..94bf81d --- /dev/null +++ b/_module/nss/cored_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "codone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cored_12.nss b/_module/nss/cored_12.nss new file mode 100644 index 0000000..bb07c98 --- /dev/null +++ b/_module/nss/cored_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "codone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cored_2.nss b/_module/nss/cored_2.nss new file mode 100644 index 0000000..d3fcfc9 --- /dev/null +++ b/_module/nss/cored_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "codone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cored_22.nss b/_module/nss/cored_22.nss new file mode 100644 index 0000000..91dabbd --- /dev/null +++ b/_module/nss/cored_22.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "codone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cored_3.nss b/_module/nss/cored_3.nss new file mode 100644 index 0000000..a2a3d70 --- /dev/null +++ b/_module/nss/cored_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/cored_32.nss b/_module/nss/cored_32.nss new file mode 100644 index 0000000..4e8d65e --- /dev/null +++ b/_module/nss/cored_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/cored_4.nss b/_module/nss/cored_4.nss new file mode 100644 index 0000000..7a59773 --- /dev/null +++ b/_module/nss/cored_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "codone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cored_42.nss b/_module/nss/cored_42.nss new file mode 100644 index 0000000..1d7a873 --- /dev/null +++ b/_module/nss/cored_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "codone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cored_6.nss b/_module/nss/cored_6.nss new file mode 100644 index 0000000..a94ea2e --- /dev/null +++ b/_module/nss/cored_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "codone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cored_62.nss b/_module/nss/cored_62.nss new file mode 100644 index 0000000..3499135 --- /dev/null +++ b/_module/nss/cored_62.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "codone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cored_7.nss b/_module/nss/cored_7.nss new file mode 100644 index 0000000..39f2a21 --- /dev/null +++ b/_module/nss/cored_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/cored_8.nss b/_module/nss/cored_8.nss new file mode 100644 index 0000000..8904a5f --- /dev/null +++ b/_module/nss/cored_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "codone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cored_9.nss b/_module/nss/cored_9.nss new file mode 100644 index 0000000..f26b72d --- /dev/null +++ b/_module/nss/cored_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "codone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "codone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/craft_skill_up.nss b/_module/nss/craft_skill_up.nss new file mode 100644 index 0000000..d443715 --- /dev/null +++ b/_module/nss/craft_skill_up.nss @@ -0,0 +1,9 @@ +void main() +{ +object oPC = GetPCSpeaker(); +ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_HEAD_HOLY), oPC, 600.0f); + +ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectSkillIncrease(SKILL_CRAFT_ARMOR, 50), oPC, 600.0f); +ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectSkillIncrease(SKILL_CRAFT_TRAP, 50), oPC, 600.0f); +ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectSkillIncrease(SKILL_CRAFT_WEAPON, 50), oPC, 600.0f); +} diff --git a/_module/nss/crash.nss b/_module/nss/crash.nss new file mode 100644 index 0000000..ce040ff --- /dev/null +++ b/_module/nss/crash.nss @@ -0,0 +1,8 @@ +void main() +{ +object oPC = GetPCSpeaker(); +string sStoreRes = "crashstore"; +CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); +OpenStore(GetObjectByTag("crashstore"), GetPCSpeaker(), 0, 0); +} + diff --git a/_module/nss/create_apparel.nss b/_module/nss/create_apparel.nss new file mode 100644 index 0000000..64e998e --- /dev/null +++ b/_module/nss/create_apparel.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "Apparel"; +string sStoreRes = "apparel"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_asabi.nss b/_module/nss/create_asabi.nss new file mode 100644 index 0000000..84976dd --- /dev/null +++ b/_module/nss/create_asabi.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "AshtaraStore"; +string sStoreRes = "asabimerchant"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_bard0.nss b/_module/nss/create_bard0.nss new file mode 100644 index 0000000..76a3d04 --- /dev/null +++ b/_module/nss/create_bard0.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "BardLevel0"; +string sStoreRes = "bardlevel0"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_bard1.nss b/_module/nss/create_bard1.nss new file mode 100644 index 0000000..7e2ff5a --- /dev/null +++ b/_module/nss/create_bard1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "BardLevel1"; +string sStoreRes = "bardlevel1"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_bard2.nss b/_module/nss/create_bard2.nss new file mode 100644 index 0000000..0b24df6 --- /dev/null +++ b/_module/nss/create_bard2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "BardLevel2"; +string sStoreRes = "bardlevel2"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_bard3.nss b/_module/nss/create_bard3.nss new file mode 100644 index 0000000..2d9f021 --- /dev/null +++ b/_module/nss/create_bard3.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "BardLevel3"; +string sStoreRes = "bardlevel3"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_bard4.nss b/_module/nss/create_bard4.nss new file mode 100644 index 0000000..daae836 --- /dev/null +++ b/_module/nss/create_bard4.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "BardLevel4"; +string sStoreRes = "bardlevel4"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_bard5.nss b/_module/nss/create_bard5.nss new file mode 100644 index 0000000..4a7d5ee --- /dev/null +++ b/_module/nss/create_bard5.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "BardLevel5"; +string sStoreRes = "bardlevel5"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_bard6.nss b/_module/nss/create_bard6.nss new file mode 100644 index 0000000..7dc1cb5 --- /dev/null +++ b/_module/nss/create_bard6.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "BardLevel6"; +string sStoreRes = "bardlevel6"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_books.nss b/_module/nss/create_books.nss new file mode 100644 index 0000000..d74098b --- /dev/null +++ b/_module/nss/create_books.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "Books"; +string sStoreRes = "books"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_c0.nss b/_module/nss/create_c0.nss new file mode 100644 index 0000000..d7380fb --- /dev/null +++ b/_module/nss/create_c0.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DivineLevel0"; +string sStoreRes = "divinelevel0"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_c1.nss b/_module/nss/create_c1.nss new file mode 100644 index 0000000..158d71a --- /dev/null +++ b/_module/nss/create_c1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DivineLevel1"; +string sStoreRes = "divinelevel1"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_c2.nss b/_module/nss/create_c2.nss new file mode 100644 index 0000000..7bb9eea --- /dev/null +++ b/_module/nss/create_c2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DivineLevel2"; +string sStoreRes = "divinelevel2"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_c3.nss b/_module/nss/create_c3.nss new file mode 100644 index 0000000..1651239 --- /dev/null +++ b/_module/nss/create_c3.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DivineLevel3"; +string sStoreRes = "divinelevel3"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_c4.nss b/_module/nss/create_c4.nss new file mode 100644 index 0000000..08ba028 --- /dev/null +++ b/_module/nss/create_c4.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DivineLevel4"; +string sStoreRes = "divinelevel4"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_c5.nss b/_module/nss/create_c5.nss new file mode 100644 index 0000000..7d6bb6d --- /dev/null +++ b/_module/nss/create_c5.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DivineLevel5"; +string sStoreRes = "divinelevel5"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_c6.nss b/_module/nss/create_c6.nss new file mode 100644 index 0000000..4e5ceae --- /dev/null +++ b/_module/nss/create_c6.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DivineLevel6"; +string sStoreRes = "divinelevel6"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_c7.nss b/_module/nss/create_c7.nss new file mode 100644 index 0000000..0080844 --- /dev/null +++ b/_module/nss/create_c7.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DivineLevel7"; +string sStoreRes = "divinelevel7"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_c8.nss b/_module/nss/create_c8.nss new file mode 100644 index 0000000..3928877 --- /dev/null +++ b/_module/nss/create_c8.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DivineLevel8"; +string sStoreRes = "divinelevel8"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_c9.nss b/_module/nss/create_c9.nss new file mode 100644 index 0000000..8426acc --- /dev/null +++ b/_module/nss/create_c9.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DivineLevel9"; +string sStoreRes = "divinelevel9"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_capp.nss b/_module/nss/create_capp.nss new file mode 100644 index 0000000..3219a56 --- /dev/null +++ b/_module/nss/create_capp.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "CampApparel"; +string sStoreRes = "campapparel"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_carmor.nss b/_module/nss/create_carmor.nss new file mode 100644 index 0000000..a3e53f5 --- /dev/null +++ b/_module/nss/create_carmor.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "CampArmor"; +string sStoreRes = "camparmor"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_cdye.nss b/_module/nss/create_cdye.nss new file mode 100644 index 0000000..e143934 --- /dev/null +++ b/_module/nss/create_cdye.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "clothdye"; +string sStoreRes = "clothdye"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_cep.nss b/_module/nss/create_cep.nss new file mode 100644 index 0000000..f94e749 --- /dev/null +++ b/_module/nss/create_cep.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "CEP"; +string sStoreRes = "cep"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_cgm.nss b/_module/nss/create_cgm.nss new file mode 100644 index 0000000..4e35c37 --- /dev/null +++ b/_module/nss/create_cgm.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "CampGenMelee"; +string sStoreRes = "campgenmelee"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_craft.nss b/_module/nss/create_craft.nss new file mode 100644 index 0000000..d252934 --- /dev/null +++ b/_module/nss/create_craft.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "craftstore"; +string sStoreRes = "craftstore"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_crafts.nss b/_module/nss/create_crafts.nss new file mode 100644 index 0000000..cc1dd00 --- /dev/null +++ b/_module/nss/create_crafts.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "CraftMaterials"; +string sStoreRes = "craftmaterials"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_crange.nss b/_module/nss/create_crange.nss new file mode 100644 index 0000000..05399aa --- /dev/null +++ b/_module/nss/create_crange.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "CampRanged"; +string sStoreRes = "campranged"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_druid0.nss b/_module/nss/create_druid0.nss new file mode 100644 index 0000000..29adc0d --- /dev/null +++ b/_module/nss/create_druid0.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DruidLevel0"; +string sStoreRes = "druidlevel0"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_druid1.nss b/_module/nss/create_druid1.nss new file mode 100644 index 0000000..ad414d1 --- /dev/null +++ b/_module/nss/create_druid1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DruidLevel1"; +string sStoreRes = "druidlevel1"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_druid2.nss b/_module/nss/create_druid2.nss new file mode 100644 index 0000000..10ad67c --- /dev/null +++ b/_module/nss/create_druid2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DruidLevel2"; +string sStoreRes = "druidlevel2"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_druid3.nss b/_module/nss/create_druid3.nss new file mode 100644 index 0000000..18bc3b5 --- /dev/null +++ b/_module/nss/create_druid3.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DruidLevel3"; +string sStoreRes = "druidlevel3"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_druid4.nss b/_module/nss/create_druid4.nss new file mode 100644 index 0000000..de264a6 --- /dev/null +++ b/_module/nss/create_druid4.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DruidLevel4"; +string sStoreRes = "druidlevel4"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_druid5.nss b/_module/nss/create_druid5.nss new file mode 100644 index 0000000..3f975b0 --- /dev/null +++ b/_module/nss/create_druid5.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DruidLevel5"; +string sStoreRes = "druidlevel5"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_druid6.nss b/_module/nss/create_druid6.nss new file mode 100644 index 0000000..dcc95c8 --- /dev/null +++ b/_module/nss/create_druid6.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DruidLevel6"; +string sStoreRes = "druidlevel6"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_druid7.nss b/_module/nss/create_druid7.nss new file mode 100644 index 0000000..73e90cc --- /dev/null +++ b/_module/nss/create_druid7.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DruidLevel7"; +string sStoreRes = "druidlevel7"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_druid8.nss b/_module/nss/create_druid8.nss new file mode 100644 index 0000000..d0bdda2 --- /dev/null +++ b/_module/nss/create_druid8.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DruidLevel8"; +string sStoreRes = "druidlevel8"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_druid9.nss b/_module/nss/create_druid9.nss new file mode 100644 index 0000000..edd85ad --- /dev/null +++ b/_module/nss/create_druid9.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "DruidLevel9"; +string sStoreRes = "druidlevel9"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_dye.nss b/_module/nss/create_dye.nss new file mode 100644 index 0000000..b000fc9 --- /dev/null +++ b/_module/nss/create_dye.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "x2_merc_dye"; +string sStoreRes = "x2_merc_dye"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_enserric.nss b/_module/nss/create_enserric.nss new file mode 100644 index 0000000..21aad2f --- /dev/null +++ b/_module/nss/create_enserric.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "Enserric"; +string sStoreRes = "enserric"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_exomelee.nss b/_module/nss/create_exomelee.nss new file mode 100644 index 0000000..200c26d --- /dev/null +++ b/_module/nss/create_exomelee.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "exomeleestd"; +string sStoreRes = "exomeleestd"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_fence.nss b/_module/nss/create_fence.nss new file mode 100644 index 0000000..6476991 --- /dev/null +++ b/_module/nss/create_fence.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "FENCE"; +string sStoreRes = "fence"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_gems.nss b/_module/nss/create_gems.nss new file mode 100644 index 0000000..5f91f59 --- /dev/null +++ b/_module/nss/create_gems.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "Gems"; +string sStoreRes = "gems"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_gen1.nss b/_module/nss/create_gen1.nss new file mode 100644 index 0000000..01524db --- /dev/null +++ b/_module/nss/create_gen1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORGENRAL001"; +string sStoreRes = "nw_storgenral001"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_gen2.nss b/_module/nss/create_gen2.nss new file mode 100644 index 0000000..a1a9c49 --- /dev/null +++ b/_module/nss/create_gen2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORGENRAL002"; +string sStoreRes = "nw_storgenral002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_genie.nss b/_module/nss/create_genie.nss new file mode 100644 index 0000000..8cec7d4 --- /dev/null +++ b/_module/nss/create_genie.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "x2_genie_store"; +string sStoreRes = "x2_genie"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_genmelee.nss b/_module/nss/create_genmelee.nss new file mode 100644 index 0000000..5051293 --- /dev/null +++ b/_module/nss/create_genmelee.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "genmeleestand"; +string sStoreRes = "genmeleestand"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_jewelry.nss b/_module/nss/create_jewelry.nss new file mode 100644 index 0000000..97e3510 --- /dev/null +++ b/_module/nss/create_jewelry.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "Jewelry"; +string sStoreRes = "jewelry"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_kat.nss b/_module/nss/create_kat.nss new file mode 100644 index 0000000..5b13d21 --- /dev/null +++ b/_module/nss/create_kat.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "katriana"; +string sStoreRes = "int_storgenral01"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_kit.nss b/_module/nss/create_kit.nss new file mode 100644 index 0000000..70e9e28 --- /dev/null +++ b/_module/nss/create_kit.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "Kit"; +string sStoreRes = "kit"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ldye.nss b/_module/nss/create_ldye.nss new file mode 100644 index 0000000..5c7b2c9 --- /dev/null +++ b/_module/nss/create_ldye.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "leatherdye"; +string sStoreRes = "leatherdye"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_mage1.nss b/_module/nss/create_mage1.nss new file mode 100644 index 0000000..5d9a7ce --- /dev/null +++ b/_module/nss/create_mage1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STOREMAGIC001"; +string sStoreRes = "nw_storemagic001"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_mage2.nss b/_module/nss/create_mage2.nss new file mode 100644 index 0000000..8e8eee0 --- /dev/null +++ b/_module/nss/create_mage2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STOREMAGIC002"; +string sStoreRes = "nw_storemagic002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_mage3.nss b/_module/nss/create_mage3.nss new file mode 100644 index 0000000..8dba5f5 --- /dev/null +++ b/_module/nss/create_mage3.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STOREMAGIC003"; +string sStoreRes = "nw_storemagic003"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_mage4.nss b/_module/nss/create_mage4.nss new file mode 100644 index 0000000..2520d85 --- /dev/null +++ b/_module/nss/create_mage4.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STOREMAGIC004"; +string sStoreRes = "nw_storemagic004"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_mage5.nss b/_module/nss/create_mage5.nss new file mode 100644 index 0000000..b00047d --- /dev/null +++ b/_module/nss/create_mage5.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "m1_storemage"; +string sStoreRes = "m1_storemage"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_mage6.nss b/_module/nss/create_mage6.nss new file mode 100644 index 0000000..8655515 --- /dev/null +++ b/_module/nss/create_mage6.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "int_storemage01"; +string sStoreRes = "int_storemage01"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_mage7.nss b/_module/nss/create_mage7.nss new file mode 100644 index 0000000..521d7a2 --- /dev/null +++ b/_module/nss/create_mage7.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "X2_STOREMAGE001"; +string sStoreRes = "storemage002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_mage8.nss b/_module/nss/create_mage8.nss new file mode 100644 index 0000000..3346022 --- /dev/null +++ b/_module/nss/create_mage8.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "X2_STOREMAGE002"; +string sStoreRes = "x2_storemage002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_mage9.nss b/_module/nss/create_mage9.nss new file mode 100644 index 0000000..0e95939 --- /dev/null +++ b/_module/nss/create_mage9.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "MagicItems"; +string sStoreRes = "magicitems"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_mdye.nss b/_module/nss/create_mdye.nss new file mode 100644 index 0000000..5f935c3 --- /dev/null +++ b/_module/nss/create_mdye.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "metaldye"; +string sStoreRes = "metaldye"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_mush.nss b/_module/nss/create_mush.nss new file mode 100644 index 0000000..95ad52d --- /dev/null +++ b/_module/nss/create_mush.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "INT_STORETEMPLE"; +string sStoreRes = "int_storetempl01"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_nat1.nss b/_module/nss/create_nat1.nss new file mode 100644 index 0000000..ff75808 --- /dev/null +++ b/_module/nss/create_nat1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORENATU001"; +string sStoreRes = "nw_storenatu001"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_nat2.nss b/_module/nss/create_nat2.nss new file mode 100644 index 0000000..c4e99ee --- /dev/null +++ b/_module/nss/create_nat2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORENATU002"; +string sStoreRes = "nw_storenatu002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_nat3.nss b/_module/nss/create_nat3.nss new file mode 100644 index 0000000..a51da7a --- /dev/null +++ b/_module/nss/create_nat3.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORENATU003"; +string sStoreRes = "nw_storenatu003"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_nat4.nss b/_module/nss/create_nat4.nss new file mode 100644 index 0000000..54fa04d --- /dev/null +++ b/_module/nss/create_nat4.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORENATU004"; +string sStoreRes = "nw_storenatu004"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_nat5.nss b/_module/nss/create_nat5.nss new file mode 100644 index 0000000..46099fd --- /dev/null +++ b/_module/nss/create_nat5.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "M1_STORENATURE"; +string sStoreRes = "m1_storenature"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_nat6.nss b/_module/nss/create_nat6.nss new file mode 100644 index 0000000..ef9ac74 --- /dev/null +++ b/_module/nss/create_nat6.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "X2_STORENATR001"; +string sStoreRes = "x2_storenatr001"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_pal1.nss b/_module/nss/create_pal1.nss new file mode 100644 index 0000000..be0fc10 --- /dev/null +++ b/_module/nss/create_pal1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "PaladinLevel1"; +string sStoreRes = "paladinlevel1"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_pal2.nss b/_module/nss/create_pal2.nss new file mode 100644 index 0000000..84c1471 --- /dev/null +++ b/_module/nss/create_pal2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "PaladinLevel2"; +string sStoreRes = "paladinlevel2"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_pal3.nss b/_module/nss/create_pal3.nss new file mode 100644 index 0000000..63fd9b5 --- /dev/null +++ b/_module/nss/create_pal3.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "PaladinLevel3"; +string sStoreRes = "paladinlevel3"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_pal4.nss b/_module/nss/create_pal4.nss new file mode 100644 index 0000000..f8f835b --- /dev/null +++ b/_module/nss/create_pal4.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "PaladinLevel4"; +string sStoreRes = "paladinlevel4"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_plot.nss b/_module/nss/create_plot.nss new file mode 100644 index 0000000..c2a4aa0 --- /dev/null +++ b/_module/nss/create_plot.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "PlotItems"; +string sStoreRes = "plotitems"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_pots.nss b/_module/nss/create_pots.nss new file mode 100644 index 0000000..fa5756a --- /dev/null +++ b/_module/nss/create_pots.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "Potions"; +string sStoreRes = "potions"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ra1.nss b/_module/nss/create_ra1.nss new file mode 100644 index 0000000..41f476c --- /dev/null +++ b/_module/nss/create_ra1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "RangerLevel1"; +string sStoreRes = "rangerlevel1"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ra2.nss b/_module/nss/create_ra2.nss new file mode 100644 index 0000000..cf46979 --- /dev/null +++ b/_module/nss/create_ra2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "RangerLevel2"; +string sStoreRes = "rangerlevel2"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ra3.nss b/_module/nss/create_ra3.nss new file mode 100644 index 0000000..57ae78e --- /dev/null +++ b/_module/nss/create_ra3.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "RangerLevel3"; +string sStoreRes = "rangerlevel3"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ra4.nss b/_module/nss/create_ra4.nss new file mode 100644 index 0000000..4ac8a98 --- /dev/null +++ b/_module/nss/create_ra4.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "RangerLevel4"; +string sStoreRes = "rangerlevel4"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ranged.nss b/_module/nss/create_ranged.nss new file mode 100644 index 0000000..b349488 --- /dev/null +++ b/_module/nss/create_ranged.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "rangedstd"; +string sStoreRes = "rangedstd"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_shadow.nss b/_module/nss/create_shadow.nss new file mode 100644 index 0000000..cc48600 --- /dev/null +++ b/_module/nss/create_shadow.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "ShadowStore"; +string sStoreRes = "shadowmerchant"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_spec1.nss b/_module/nss/create_spec1.nss new file mode 100644 index 0000000..1add6b0 --- /dev/null +++ b/_module/nss/create_spec1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORESPEC001"; +string sStoreRes = "nw_storespec001"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_spec2.nss b/_module/nss/create_spec2.nss new file mode 100644 index 0000000..207e6da --- /dev/null +++ b/_module/nss/create_spec2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORESPEC002"; +string sStoreRes = "nw_storespec002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_spec3.nss b/_module/nss/create_spec3.nss new file mode 100644 index 0000000..ab3f93b --- /dev/null +++ b/_module/nss/create_spec3.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORESPEC003"; +string sStoreRes = "nw_storespec003"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_staves.nss b/_module/nss/create_staves.nss new file mode 100644 index 0000000..ecd29d3 --- /dev/null +++ b/_module/nss/create_staves.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "Staves"; +string sStoreRes = "staves"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_stdarmor.nss b/_module/nss/create_stdarmor.nss new file mode 100644 index 0000000..d6b4de4 --- /dev/null +++ b/_module/nss/create_stdarmor.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "StdArmor"; +string sStoreRes = "stdarmor"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_stdhelm.nss b/_module/nss/create_stdhelm.nss new file mode 100644 index 0000000..33fa8d7 --- /dev/null +++ b/_module/nss/create_stdhelm.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "StdHelmShld"; +string sStoreRes = "stdhelmshld"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_temple.nss b/_module/nss/create_temple.nss new file mode 100644 index 0000000..df1d532 --- /dev/null +++ b/_module/nss/create_temple.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "M1_STORETEMPLE"; +string sStoreRes = "m1_storetemple"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_temple1.nss b/_module/nss/create_temple1.nss new file mode 100644 index 0000000..8bc758e --- /dev/null +++ b/_module/nss/create_temple1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORETMPLE001"; +string sStoreRes = "nw_storetmple001"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_temple2.nss b/_module/nss/create_temple2.nss new file mode 100644 index 0000000..6b4c09c --- /dev/null +++ b/_module/nss/create_temple2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORETMPLE002"; +string sStoreRes = "nw_storetmple002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_temple3.nss b/_module/nss/create_temple3.nss new file mode 100644 index 0000000..7b5f509 --- /dev/null +++ b/_module/nss/create_temple3.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORETMPLE003"; +string sStoreRes = "nw_storetmple003"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_temple4.nss b/_module/nss/create_temple4.nss new file mode 100644 index 0000000..e731795 --- /dev/null +++ b/_module/nss/create_temple4.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORETMPLE004"; +string sStoreRes = "nw_storetmple004"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_temple5.nss b/_module/nss/create_temple5.nss new file mode 100644 index 0000000..6e72fc6 --- /dev/null +++ b/_module/nss/create_temple5.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "X2_STORETEMPL001"; +string sStoreRes = "x2_storetempl001"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_temple6.nss b/_module/nss/create_temple6.nss new file mode 100644 index 0000000..9b9faf4 --- /dev/null +++ b/_module/nss/create_temple6.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "X2_STORETEMPL002"; +string sStoreRes = "x2_storetempl002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_thief1.nss b/_module/nss/create_thief1.nss new file mode 100644 index 0000000..cfda45b --- /dev/null +++ b/_module/nss/create_thief1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORETHIEF001"; +string sStoreRes = "nw_storethief001"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_thief2.nss b/_module/nss/create_thief2.nss new file mode 100644 index 0000000..f86b2d3 --- /dev/null +++ b/_module/nss/create_thief2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORETHIEF002"; +string sStoreRes = "nw_storethief002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_thief3.nss b/_module/nss/create_thief3.nss new file mode 100644 index 0000000..89f844d --- /dev/null +++ b/_module/nss/create_thief3.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STORETHIEF003"; +string sStoreRes = "nw_storethief003"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_thief4.nss b/_module/nss/create_thief4.nss new file mode 100644 index 0000000..5a98f80 --- /dev/null +++ b/_module/nss/create_thief4.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "M1_STORETHIEF"; +string sStoreRes = "m1_storethief"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_thief5.nss b/_module/nss/create_thief5.nss new file mode 100644 index 0000000..d7af7f7 --- /dev/null +++ b/_module/nss/create_thief5.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "INT_STORETHIEF"; +string sStoreRes = "int_storethief01"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_thief6.nss b/_module/nss/create_thief6.nss new file mode 100644 index 0000000..98529d9 --- /dev/null +++ b/_module/nss/create_thief6.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "X2_STORETHIEF001"; +string sStoreRes = "x2_storethief001"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_thief7.nss b/_module/nss/create_thief7.nss new file mode 100644 index 0000000..1804043 --- /dev/null +++ b/_module/nss/create_thief7.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "X2_STORETHIEF002"; +string sStoreRes = "x2_storethief002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_thief8.nss b/_module/nss/create_thief8.nss new file mode 100644 index 0000000..6f9e0f1 --- /dev/null +++ b/_module/nss/create_thief8.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "X2_STORETHIEF003"; +string sStoreRes = "x2_storethief003"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_tut.nss b/_module/nss/create_tut.nss new file mode 100644 index 0000000..3339fb2 --- /dev/null +++ b/_module/nss/create_tut.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "Tutorial"; +string sStoreRes = "tutorial"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_weap1.nss b/_module/nss/create_weap1.nss new file mode 100644 index 0000000..5107a7a --- /dev/null +++ b/_module/nss/create_weap1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STOREWEAP001"; +string sStoreRes = "nw_storeweap001"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_weap2.nss b/_module/nss/create_weap2.nss new file mode 100644 index 0000000..dd2686b --- /dev/null +++ b/_module/nss/create_weap2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STOREWEAP002"; +string sStoreRes = "nw_storeweap002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_weap3.nss b/_module/nss/create_weap3.nss new file mode 100644 index 0000000..1d71bf1 --- /dev/null +++ b/_module/nss/create_weap3.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STOREWEAP003"; +string sStoreRes = "nw_storeweap003"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_weap4.nss b/_module/nss/create_weap4.nss new file mode 100644 index 0000000..ca88835 --- /dev/null +++ b/_module/nss/create_weap4.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "NW_STOREWEAP004"; +string sStoreRes = "nw_storeweap004"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_weap5.nss b/_module/nss/create_weap5.nss new file mode 100644 index 0000000..98b6508 --- /dev/null +++ b/_module/nss/create_weap5.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "M1_STOREWEAPON"; +string sStoreRes = "m1_storeweapon"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_weap6.nss b/_module/nss/create_weap6.nss new file mode 100644 index 0000000..18561fd --- /dev/null +++ b/_module/nss/create_weap6.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "X2_STOREWEAP001"; +string sStoreRes = "storeweap002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_weap7.nss b/_module/nss/create_weap7.nss new file mode 100644 index 0000000..557c987 --- /dev/null +++ b/_module/nss/create_weap7.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "X2_STOREWEAP002"; +string sStoreRes = "x2_storeweap002"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_weap8.nss b/_module/nss/create_weap8.nss new file mode 100644 index 0000000..fa8bccf --- /dev/null +++ b/_module/nss/create_weap8.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "X2_STOREWEAP003"; +string sStoreRes = "x2_storeweap003"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_weap9.nss b/_module/nss/create_weap9.nss new file mode 100644 index 0000000..ff01b28 --- /dev/null +++ b/_module/nss/create_weap9.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "H2_GruulStore"; +string sStoreRes = "x2_c3_gruel"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ws0.nss b/_module/nss/create_ws0.nss new file mode 100644 index 0000000..29ff515 --- /dev/null +++ b/_module/nss/create_ws0.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "ArcaneLevel0"; +string sStoreRes = "arcanelevel0"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ws1.nss b/_module/nss/create_ws1.nss new file mode 100644 index 0000000..426122c --- /dev/null +++ b/_module/nss/create_ws1.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "ArcaneLevel1"; +string sStoreRes = "arcanelevel1"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ws2.nss b/_module/nss/create_ws2.nss new file mode 100644 index 0000000..adfbe06 --- /dev/null +++ b/_module/nss/create_ws2.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "ArcaneLevel2"; +string sStoreRes = "arcanelevel2"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ws3.nss b/_module/nss/create_ws3.nss new file mode 100644 index 0000000..09d059b --- /dev/null +++ b/_module/nss/create_ws3.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "ArcaneLevel3"; +string sStoreRes = "arcanelevel3"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ws4.nss b/_module/nss/create_ws4.nss new file mode 100644 index 0000000..dd95303 --- /dev/null +++ b/_module/nss/create_ws4.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "ArcaneLevel4"; +string sStoreRes = "arcanelevel4"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ws5.nss b/_module/nss/create_ws5.nss new file mode 100644 index 0000000..2fcd4c8 --- /dev/null +++ b/_module/nss/create_ws5.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "ArcaneLevel5"; +string sStoreRes = "arcanelevel5"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ws6.nss b/_module/nss/create_ws6.nss new file mode 100644 index 0000000..db900e8 --- /dev/null +++ b/_module/nss/create_ws6.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "ArcaneLevel6"; +string sStoreRes = "arcanelevel6"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ws7.nss b/_module/nss/create_ws7.nss new file mode 100644 index 0000000..aed3ff9 --- /dev/null +++ b/_module/nss/create_ws7.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "ArcaneLevel7"; +string sStoreRes = "arcanelevel7"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ws8.nss b/_module/nss/create_ws8.nss new file mode 100644 index 0000000..adbccdf --- /dev/null +++ b/_module/nss/create_ws8.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "ArcaneLevel8"; +string sStoreRes = "arcanelevel8"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/create_ws9.nss b/_module/nss/create_ws9.nss new file mode 100644 index 0000000..07ee9db --- /dev/null +++ b/_module/nss/create_ws9.nss @@ -0,0 +1,10 @@ +void main() +{ +string sStoreTag = "ArcaneLevel9"; +string sStoreRes = "arcanelevel9"; +if (GetNearestObjectByTag(sStoreTag) == OBJECT_INVALID) + { + CreateObject(OBJECT_TYPE_STORE, sStoreRes, GetLocation(OBJECT_SELF)); + } +SetLocalString(GetPCSpeaker(), "STORE", sStoreTag); +} diff --git a/_module/nss/crit_imbue.nss b/_module/nss/crit_imbue.nss new file mode 100644 index 0000000..d3a4ce7 --- /dev/null +++ b/_module/nss/crit_imbue.nss @@ -0,0 +1,14 @@ +#include "immune_imbue" + +void main() +{ +object oItem; +SetLocalInt(GetPCSpeaker(), "armour_red_max", 1); +oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem) == "coin1") {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +ImmuneImbue(IP_CONST_IMMUNITYMISC_CRITICAL_HITS); +} diff --git a/_module/nss/crowd.nss b/_module/nss/crowd.nss new file mode 100644 index 0000000..acc73f5 --- /dev/null +++ b/_module/nss/crowd.nss @@ -0,0 +1,40 @@ +void CrowdPlay(int oSwitch) +{ +object oTarget; +int i; +string oSound; +string oAdd; +for (i = 0; i < 12; i++) + { + oSound = "crowd_"; + oAdd = IntToString(i); + oSound+=oAdd; + if (oSwitch==1) + { + SoundObjectPlay(GetObjectByTag(oSound)); + } + else + { + SoundObjectStop(GetObjectByTag(oSound)); + } + } +} + +void CrowdBurst() +{ +object oTarget; +int i; +string oSound; +string oAdd; +for (i = 0; i < 12; i++) + { + oSound = "crowd_"; + oAdd = IntToString(i); + oSound+=oAdd; + SoundObjectPlay(GetObjectByTag(oSound)); + } + DelayCommand(10.0, CrowdPlay(2)); + +} + +//void main(){} diff --git a/_module/nss/cryst_off.nss b/_module/nss/cryst_off.nss new file mode 100644 index 0000000..a101656 --- /dev/null +++ b/_module/nss/cryst_off.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName cryst_on +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/12/2004 3:04:37 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "lever_state") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/cryst_on.nss b/_module/nss/cryst_on.nss new file mode 100644 index 0000000..8bc5362 --- /dev/null +++ b/_module/nss/cryst_on.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName cryst_on +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/12/2004 3:04:37 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "lever_state") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/csc_041a.nss b/_module/nss/csc_041a.nss new file mode 100644 index 0000000..013a2a9 --- /dev/null +++ b/_module/nss/csc_041a.nss @@ -0,0 +1,15 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_041 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 21/02/2005 2:12:14 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "team_bet") == 4)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/cust_weap.nss b/_module/nss/cust_weap.nss new file mode 100644 index 0000000..9b2f870 --- /dev/null +++ b/_module/nss/cust_weap.nss @@ -0,0 +1,6 @@ +#include "x2_inc_ws_smith" + +void main() +{ +SetWeaponToken(OBJECT_SELF); +} diff --git a/_module/nss/custom_blocked.nss b/_module/nss/custom_blocked.nss new file mode 100644 index 0000000..08a8811 --- /dev/null +++ b/_module/nss/custom_blocked.nss @@ -0,0 +1,8 @@ +#include "custom_set_lib" +void main() +{ + string script = GetCustomSet_OnBlocked(); + + if(script != "") + ExecuteScript(script,OBJECT_SELF); +} diff --git a/_module/nss/custom_combatend.nss b/_module/nss/custom_combatend.nss new file mode 100644 index 0000000..f19d654 --- /dev/null +++ b/_module/nss/custom_combatend.nss @@ -0,0 +1,8 @@ +#include "custom_set_lib" +void main() +{ + string script = GetCustomSet_OnCombatRoundEnd(); + + if(script != "") + ExecuteScript(script,OBJECT_SELF); +} diff --git a/_module/nss/custom_conv.nss b/_module/nss/custom_conv.nss new file mode 100644 index 0000000..324d377 --- /dev/null +++ b/_module/nss/custom_conv.nss @@ -0,0 +1,8 @@ +#include "custom_set_lib" +void main() +{ + string script = GetCustomSet_OnConversation(); + + if(script != "") + ExecuteScript(script,OBJECT_SELF); +} diff --git a/_module/nss/custom_damage.nss b/_module/nss/custom_damage.nss new file mode 100644 index 0000000..b3965ea --- /dev/null +++ b/_module/nss/custom_damage.nss @@ -0,0 +1,8 @@ +#include "custom_set_lib" +void main() +{ + string script = GetCustomSet_OnDamaged(); + + if(script != "") + ExecuteScript(script,OBJECT_SELF); +} diff --git a/_module/nss/custom_death.nss b/_module/nss/custom_death.nss new file mode 100644 index 0000000..4dc37a1 --- /dev/null +++ b/_module/nss/custom_death.nss @@ -0,0 +1,8 @@ +#include "custom_set_lib" +void main() +{ + string script = GetCustomSet_OnDeath(); + + if(script != "") + ExecuteScript(script,OBJECT_SELF); +} diff --git a/_module/nss/custom_disturbed.nss b/_module/nss/custom_disturbed.nss new file mode 100644 index 0000000..57b4820 --- /dev/null +++ b/_module/nss/custom_disturbed.nss @@ -0,0 +1,8 @@ +#include "custom_set_lib" +void main() +{ + string script = GetCustomSet_OnDisturbed(); + + if(script != "") + ExecuteScript(script,OBJECT_SELF); +} diff --git a/_module/nss/custom_heartbeat.nss b/_module/nss/custom_heartbeat.nss new file mode 100644 index 0000000..ba831b6 --- /dev/null +++ b/_module/nss/custom_heartbeat.nss @@ -0,0 +1,8 @@ +#include "custom_set_lib" +void main() +{ + string script = GetCustomSet_OnHeartbeat(); + + if(script != "") + ExecuteScript(script,OBJECT_SELF); +} diff --git a/_module/nss/custom_percep.nss b/_module/nss/custom_percep.nss new file mode 100644 index 0000000..45d60af --- /dev/null +++ b/_module/nss/custom_percep.nss @@ -0,0 +1,8 @@ +#include "custom_set_lib" +void main() +{ + string script = GetCustomSet_OnPerception(); + + if(script != "") + ExecuteScript(script,OBJECT_SELF); +} diff --git a/_module/nss/custom_physicald.nss b/_module/nss/custom_physicald.nss new file mode 100644 index 0000000..c7436cf --- /dev/null +++ b/_module/nss/custom_physicald.nss @@ -0,0 +1,8 @@ +#include "custom_set_lib" +void main() +{ + string script = GetCustomSet_OnPhysicalAttacked(); + + if(script != "") + ExecuteScript(script,OBJECT_SELF); +} diff --git a/_module/nss/custom_rested.nss b/_module/nss/custom_rested.nss new file mode 100644 index 0000000..a185e77 --- /dev/null +++ b/_module/nss/custom_rested.nss @@ -0,0 +1,8 @@ +#include "custom_set_lib" +void main() +{ + string script = GetCustomSet_OnRested(); + + if(script != "") + ExecuteScript(script,OBJECT_SELF); +} diff --git a/_module/nss/custom_set_lib.nss b/_module/nss/custom_set_lib.nss new file mode 100644 index 0000000..9ccde8b --- /dev/null +++ b/_module/nss/custom_set_lib.nss @@ -0,0 +1,258 @@ +const string CustomSetScriptSet = "CustomSetScriptSet"; + +const string CustomSet_OnBlocked = "OnBlocked"; +const string CustomSet_OnDamaged = "OnDamaged"; +const string CustomSet_OnDeath = "OnDeath"; +const string CustomSet_OnConversation = "OnConversation"; +const string CustomSet_OnDisturbed = "OnDisturbed"; +const string CustomSet_OnCombatRoundEnd = "OnCombatRoundEnd"; +const string CustomSet_OnHeartbeat = "OnHeartbeat"; +const string CustomSet_OnPhysicalAttacked = "OnPhysicalAttacked"; +const string CustomSet_OnPerception = "OnPerception"; +const string CustomSet_OnRested = "OnRested"; +const string CustomSet_OnSpawn = "OnSpawn"; +const string CustomSet_OnSpellCast = "OnSpellCast"; +const string CustomSet_OnUserDefined = "OnUserDefined"; + +//Default script sets +const int CustomSet_DefaultSet = 1; +const int CustomSet_HenchManSet = 2; +const int CustomSet_X2_DefaultSet = 3; + +// Makes target execute the custom_spawn script. +void CustomSet_respawn(object target=OBJECT_SELF); +// Earase all scripts set on target. +void CustomSet_ClearScripts(object target=OBJECT_SELF); + +// Returns the set of script used by target or 0 if none is set. +int GetCustomSetScriptSet(object target = OBJECT_SELF); +// Sets the set of script that target should use. You may have to call +// CustomSet_respawn. +void SetCustomSetScriptSet(int scriptSet = CustomSet_DefaultSet,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnBlocked(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnBlocked(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnDamaged(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnDamaged(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnDeath(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnDeath(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnConversation(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnConversation(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnDisturbed(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnDisturbed(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnCombatRoundEnd(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnCombatRoundEnd(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnHeartbeat(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnHeartbeat(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnPhysicalAttacked(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnPhysicalAttacked(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnPerception(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnPerception(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnRested(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnRested(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnSpawn(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnSpawn(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnSpellCast(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnSpellCast(string script,object target = OBJECT_SELF); + +// Returns the script associated with an event. +string GetCustomSet_OnUserDefined(object target = OBJECT_SELF); +// Links a script with an event. +void SetCustomSet_OnUserDefined(string script,object target = OBJECT_SELF); + + + + + + + + + + +void CustomSet_respawn(object target=OBJECT_SELF) +{ + ExecuteScript("custom_spawn",target); +} + +void CustomSet_ClearScripts(object target=OBJECT_SELF) +{ + DeleteLocalString(target,CustomSet_OnBlocked); + DeleteLocalString(target,CustomSet_OnDamaged); + DeleteLocalString(target,CustomSet_OnDeath); + DeleteLocalString(target,CustomSet_OnConversation); + DeleteLocalString(target,CustomSet_OnDisturbed); + DeleteLocalString(target,CustomSet_OnCombatRoundEnd); + DeleteLocalString(target,CustomSet_OnHeartbeat); + DeleteLocalString(target,CustomSet_OnPhysicalAttacked); + DeleteLocalString(target,CustomSet_OnPerception); + DeleteLocalString(target,CustomSet_OnRested); + DeleteLocalString(target,CustomSet_OnSpawn); + DeleteLocalString(target,CustomSet_OnSpellCast); + DeleteLocalString(target,CustomSet_OnUserDefined); +} + +void SetCustomSetScriptSet(int scriptSet = CustomSet_DefaultSet,object target = OBJECT_SELF) +{ + SetLocalInt(target,CustomSetScriptSet,scriptSet); +} +int GetCustomSetScriptSet(object target = OBJECT_SELF) +{ + return GetLocalInt(target,CustomSetScriptSet); +} + +string GetCustomSet_OnBlocked(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnBlocked); +} +void SetCustomSet_OnBlocked(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnBlocked,script); +} + +string GetCustomSet_OnDamaged(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnDamaged); +} +void SetCustomSet_OnDamaged(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnDamaged,script); +} + +string GetCustomSet_OnDeath(object target = OBJECT_SELF) + +{ + return GetLocalString(target,CustomSet_OnDeath); +} +void SetCustomSet_OnDeath(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnDeath,script); +} + +string GetCustomSet_OnConversation(object target = OBJECT_SELF) + +{ + return GetLocalString(target,CustomSet_OnConversation); +} +void SetCustomSet_OnConversation(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnConversation,script); +} + +string GetCustomSet_OnDisturbed(object target = OBJECT_SELF) + +{ + return GetLocalString(target,CustomSet_OnDisturbed); +} +void SetCustomSet_OnDisturbed(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnDisturbed,script); +} + +string GetCustomSet_OnCombatRoundEnd(object target = OBJECT_SELF) + +{ + return GetLocalString(target,CustomSet_OnCombatRoundEnd); +} +void SetCustomSet_OnCombatRoundEnd(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnCombatRoundEnd,script); +} + +string GetCustomSet_OnHeartbeat(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnHeartbeat); +} +void SetCustomSet_OnHeartbeat(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnHeartbeat,script); +} + +string GetCustomSet_OnPhysicalAttacked(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnPhysicalAttacked); +} +void SetCustomSet_OnPhysicalAttacked(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnPhysicalAttacked,script); +} + +string GetCustomSet_OnPerception(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnPerception); +} +void SetCustomSet_OnPerception(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnPerception,script); +} + +string GetCustomSet_OnRested(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnRested); +} +void SetCustomSet_OnRested(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnRested,script); +} + +string GetCustomSet_OnSpawn(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnSpawn); +} +void SetCustomSet_OnSpawn(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnSpawn,script); +} + +string GetCustomSet_OnSpellCast(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnSpellCast); +} +void SetCustomSet_OnSpellCast(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnSpellCast,script); +} + + +string GetCustomSet_OnUserDefined(object target = OBJECT_SELF) +{ + return GetLocalString(target,CustomSet_OnUserDefined); +} +void SetCustomSet_OnUserDefined(string script,object target = OBJECT_SELF) +{ + SetLocalString(target,CustomSet_OnUserDefined,script); +} diff --git a/_module/nss/custom_spawn.nss b/_module/nss/custom_spawn.nss new file mode 100644 index 0000000..2634ed2 --- /dev/null +++ b/_module/nss/custom_spawn.nss @@ -0,0 +1,125 @@ +#include "custom_set_lib" + +void main() +{ + + int set = GetLocalInt(OBJECT_SELF,CustomSetScriptSet); + + switch(set) + { + case CustomSet_DefaultSet: if(GetLocalString(OBJECT_SELF,CustomSet_OnBlocked) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnBlocked,"nw_c2_defaulte"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnDamaged) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnDamaged,"nw_c2_default6"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnDeath) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnDeath,"nw_c2_default7"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnConversation) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnConversation,"nw_c2_default4"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnDisturbed) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnDisturbed,"nw_c2_default8"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnCombatRoundEnd) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnCombatRoundEnd,"nw_c2_default3"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnHeartbeat) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnHeartbeat,"nw_c2_default1"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnPhysicalAttacked) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnPhysicalAttacked,"nw_c2_default5"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnPerception) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnPerception,"nw_c2_default2"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnRested) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnRested,"nw_c2_defaulta"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnSpawn) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnSpawn,"nw_c2_default9"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnSpellCast) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnSpellCast,"nw_c2_defaultb"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnUserDefined) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnUserDefined,"nw_c2_defaultd"); + break; + case CustomSet_HenchManSet: if(GetLocalString(OBJECT_SELF,CustomSet_OnBlocked) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnBlocked,"x0_ch_hen_block"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnDamaged) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnDamaged,"x0_ch_hen_damage"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnDeath) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnDeath,"x0_ch_hen_death"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnConversation) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnConversation,"x0_ch_hen_conv"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnDisturbed) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnDisturbed,"x0_ch_hen_distrb"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnCombatRoundEnd) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnCombatRoundEnd,"x0_ch_hen_combat"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnHeartbeat) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnHeartbeat,"x0_ch_hen_heart"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnPhysicalAttacked) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnPhysicalAttacked,"x0_ch_hen_attack"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnPerception) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnPerception,"x0_ch_hen_percep"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnRested) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnRested,"x0_ch_hen_rest"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnSpawn) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnSpawn,"x0_ch_hen_spawn"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnSpellCast) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnSpellCast,"x0_ch_hen_spell"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnUserDefined) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnUserDefined,"x0_ch_hen_usrdef"); + break; + case CustomSet_X2_DefaultSet: if(GetLocalString(OBJECT_SELF,CustomSet_OnBlocked) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnBlocked,"x2_def_onblocked"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnDamaged) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnDamaged,"x2_def_ondamage"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnDeath) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnDeath,"x2_def_ondeath"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnConversation) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnConversation,"x2_def_onconv"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnDisturbed) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnDisturbed,"x2_def_ondisturb"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnCombatRoundEnd) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnCombatRoundEnd,"x2_def_endcombat"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnHeartbeat) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnHeartbeat,"x2_def_heartbeat"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnPhysicalAttacked) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnPhysicalAttacked,"x2_def_ondamage"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnPerception) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnPerception,"x2_def_percept"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnRested) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnRested,"x2_def_rested"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnSpawn) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnSpawn,"x2_def_spawn"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnSpellCast) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnSpellCast,"x2_def_spellcast"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnUserDefined) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnUserDefined,"x2_def_userdef"); + break; + default: + break; + } + + if(GetLocalString(OBJECT_SELF,CustomSet_OnBlocked) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnBlocked,"nw_c2_defaulte"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnDamaged) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnDamaged,"nw_c2_default6"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnDeath) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnDeath,"nw_c2_default7"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnConversation) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnConversation,"nw_c2_default4"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnDisturbed) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnDisturbed,"nw_c2_default8"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnCombatRoundEnd) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnCombatRoundEnd,"nw_c2_default3"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnHeartbeat) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnHeartbeat,"nw_c2_default1"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnPhysicalAttacked) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnPhysicalAttacked,"nw_c2_default5"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnPerception) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnPerception,"nw_c2_default2"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnRested) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnRested,"nw_c2_defaulta"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnSpawn) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnSpawn,"nw_c2_default9"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnSpellCast) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnSpellCast,"nw_c2_defaultb"); + if(GetLocalString(OBJECT_SELF,CustomSet_OnUserDefined) == "") + SetLocalString(OBJECT_SELF,CustomSet_OnUserDefined,"nw_c2_defaultd"); + + + ExecuteScript(GetLocalString(OBJECT_SELF,CustomSet_OnSpawn),OBJECT_SELF); +} + diff --git a/_module/nss/custom_spellcast.nss b/_module/nss/custom_spellcast.nss new file mode 100644 index 0000000..7a9ebdc --- /dev/null +++ b/_module/nss/custom_spellcast.nss @@ -0,0 +1,8 @@ +#include "custom_set_lib" +void main() +{ + string script = GetCustomSet_OnSpellCast(); + + if(script != "") + ExecuteScript(script,OBJECT_SELF); +} diff --git a/_module/nss/custom_userdef.nss b/_module/nss/custom_userdef.nss new file mode 100644 index 0000000..18eb183 --- /dev/null +++ b/_module/nss/custom_userdef.nss @@ -0,0 +1,8 @@ +#include "custom_set_lib" +void main() +{ + string script = GetCustomSet_OnUserDefined(); + + if(script != "") + ExecuteScript(script,OBJECT_SELF); +} diff --git a/_module/nss/cut_test1.nss b/_module/nss/cut_test1.nss new file mode 100644 index 0000000..427048e --- /dev/null +++ b/_module/nss/cut_test1.nss @@ -0,0 +1,8 @@ +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "d1", 1); +SetLocalInt(oPC, "cutscene_on", 1); +SetLocalInt(oMod, "cutscene_flag", 0); +} diff --git a/_module/nss/cut_test2.nss b/_module/nss/cut_test2.nss new file mode 100644 index 0000000..020d41d --- /dev/null +++ b/_module/nss/cut_test2.nss @@ -0,0 +1,8 @@ +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "d2", 1); +SetLocalInt(oPC, "cutscene_on", 1); +SetLocalInt(oMod, "cutscene_flag", 0); +} diff --git a/_module/nss/cut_test3.nss b/_module/nss/cut_test3.nss new file mode 100644 index 0000000..a3613ce --- /dev/null +++ b/_module/nss/cut_test3.nss @@ -0,0 +1,8 @@ +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "d2a", 1); +SetLocalInt(oPC, "cutscene_on", 1); +SetLocalInt(oMod, "cutscene_flag", 0); +} diff --git a/_module/nss/cut_test4.nss b/_module/nss/cut_test4.nss new file mode 100644 index 0000000..aaf9a25 --- /dev/null +++ b/_module/nss/cut_test4.nss @@ -0,0 +1,8 @@ +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "d3", 1); +SetLocalInt(oPC, "cutscene_on", 1); +SetLocalInt(oMod, "cutscene_flag", 0); +} diff --git a/_module/nss/cut_test5.nss b/_module/nss/cut_test5.nss new file mode 100644 index 0000000..31f3abe --- /dev/null +++ b/_module/nss/cut_test5.nss @@ -0,0 +1,8 @@ +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "d4", 1); +SetLocalInt(oPC, "cutscene_on", 1); +SetLocalInt(oMod, "cutscene_flag", 0); +} diff --git a/_module/nss/cut_test6.nss b/_module/nss/cut_test6.nss new file mode 100644 index 0000000..9da12e3 --- /dev/null +++ b/_module/nss/cut_test6.nss @@ -0,0 +1,8 @@ +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "d5", 1); +SetLocalInt(oPC, "cutscene_on", 1); +SetLocalInt(oMod, "cutscene_flag", 0); +} diff --git a/_module/nss/cutscene_ch1.nss b/_module/nss/cutscene_ch1.nss new file mode 100644 index 0000000..899fc82 --- /dev/null +++ b/_module/nss/cutscene_ch1.nss @@ -0,0 +1,332 @@ +#include "in_g_cutscene" +#include "cleanup" +#include "charport" + +void CSvoice2(float oDelay, object oSelf, int iSet) +{ + +int iVoice; +float oDice; + + switch (iSet) + { + case 1: iVoice = VOICE_CHAT_ATTACK;break; + case 2: iVoice = VOICE_CHAT_BATTLECRY1;break; + case 3: iVoice = VOICE_CHAT_BATTLECRY2;break; + case 4: iVoice = VOICE_CHAT_BATTLECRY3;break; + case 5: iVoice = VOICE_CHAT_THREATEN;break; + case 6: iVoice = VOICE_CHAT_CHEER;break; + case 7: iVoice = VOICE_CHAT_CUSS;break; + case 8: iVoice = VOICE_CHAT_FLEE;break; + case 9: iVoice = VOICE_CHAT_GOODBYE;break; + case 10: iVoice = VOICE_CHAT_THANKS;break; + case 11: iVoice = VOICE_CHAT_WEAPONSUCKS;break; + case 12: iVoice = VOICE_CHAT_LAUGH;break; + case 13: iVoice = VOICE_CHAT_HELLO;break; + case 14: iVoice = VOICE_CHAT_FOLLOWME;break; + case 15: iVoice = VOICE_CHAT_GOODIDEA;break; + case 16: iVoice = VOICE_CHAT_REST;break; + case 17: iVoice = VOICE_CHAT_YES;break; + + + } +DelayCommand(oDelay, AssignCommand(oSelf, PlayVoiceChat(iVoice))); +} + + +void CutsceneSpawn(string oPlaceable, string oWaypoint) +{ +location lTarget; +object oTarget = GetWaypointByTag(oWaypoint); +lTarget = GetLocation(oTarget); +object oSpawn = CreateObject(OBJECT_TYPE_CREATURE, oPlaceable, lTarget); +AssignCommand(oSpawn, SetFacing(0.0)); +} + + +void CutscenePlace(string oPlaceable, string oWaypoint) +{ +location lTarget; +object oTarget = GetWaypointByTag(oWaypoint); +lTarget = GetLocation(oTarget); +object oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, oPlaceable, lTarget); +AssignCommand(oSpawn, SetFacing(0.0)); +} + +void CutsceneEffect(float oDelay, int oEffect, string oWaypoint) +{ +object oTarget; +oTarget = GetObjectByTag(oWaypoint); +int nInt; +nInt = GetObjectType(oTarget); +effect eEffect; +eEffect = EffectVisualEffect(oEffect); +if (nInt != OBJECT_TYPE_WAYPOINT) + DelayCommand(oDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, + eEffect, oTarget)); +else + DelayCommand(oDelay, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oTarget))); +} + +void Reward(object oPC, int oType) +{ + + + +object oMod = GetModule(); +string sRes; + float oDir = 0.0; + SetLocalInt(oMod, "chest_here", 1); + SetLocalInt(oMod, "ch_count", 0); + SetLocalInt(oMod, "countdown", 0); + SetLocalInt(oMod, "pearl_there", 0); + CutsceneEffect(0.0, VFX_FNF_SUMMON_CELESTIAL, "test_wp"); + CutsceneEffect(6.0, VFX_IMP_DISPEL, "test_wp"); +if (oType==0) +{ + DelayCommand(5.5, CutscenePlace("reward_chest_spec", "test_wp")); + DelayCommand(5.7, AssignCommand(GetObjectByTag("reward_chest1"), + SetFacing(oDir))); +} + + +if (oType==1) +{ + DelayCommand(5.5, CutscenePlace("reward_chest1", "test_wp")); + DelayCommand(5.7, AssignCommand(GetObjectByTag("reward_chest1"), + SetFacing(oDir))); +} +if (oType==2) +{ + DelayCommand(5.5, CutscenePlace("reward_chest2", "test_wp")); + DelayCommand(5.7, AssignCommand(GetObjectByTag("reward_chest2"), + SetFacing(oDir))); +} +if (oType==3) +{ + DelayCommand(5.5, CutscenePlace("reward_chest3", "test_wp")); + DelayCommand(5.7, AssignCommand(GetObjectByTag("reward_chest3"), + SetFacing(oDir))); +} +if (oType==4) +{ + DelayCommand(5.5, CutscenePlace("reward_chest4", "test_wp")); + DelayCommand(5.7, AssignCommand(GetObjectByTag("reward_chest4"), + SetFacing(oDir))); +} +if (oType==5) +{ + DelayCommand(5.5, CutscenePlace("reward_chest5", "test_wp")); + DelayCommand(5.7, AssignCommand(GetObjectByTag("reward_chest5"), + SetFacing(oDir))); +} +if (oType==6) +{ + DelayCommand(5.5, CutscenePlace("reward_chest6", "test_wp")); + DelayCommand(5.7, AssignCommand(GetObjectByTag("reward_chest6"), + SetFacing(oDir))); +} +if (oType==7) +{ + DelayCommand(5.5, CutscenePlace("win_chest", "test_wp")); + DelayCommand(5.7, AssignCommand(GetObjectByTag("star_chest"), + SetFacing(oDir))); +} +if (oType==8) +{ + DelayCommand(5.5, CutscenePlace("star_chest", "test_wp")); + DelayCommand(5.7, AssignCommand(GetObjectByTag("win_chest"), + SetFacing(oDir))); +} +if (oType==9) +{ + if (GetGender(oPC)==GENDER_MALE){sRes = "light_love_f";} + else {sRes = "light_love_m";} + DelayCommand(5.5, CutsceneSpawn(sRes, "test_wp")); + DelayCommand(5.7, AssignCommand(GetObjectByTag("win_chest"), + SetFacing(oDir))); +} +if (oType==10) +{ + if (GetGender(oPC)==GENDER_MALE){sRes = "dark_love_f";} + else {sRes = "dark_love_m";} + DelayCommand(5.5, CutsceneSpawn(sRes, "test_wp")); + DelayCommand(5.7, AssignCommand(GetObjectByTag("win_chest"), + SetFacing(oDir))); +} +} + + + +void CutScene(int oNum, string sChallenge, object oPC) +{ +object oMod = GetModule(); +object oStarfall=GetObjectByTag("starfall"); +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); + +SetLocalInt(oPC, "cutscene_on",0); +SetLocalInt(oMod, "d1", 0); +SetLocalInt(oMod, "d2", 0); +SetLocalInt(oMod, "d2a", 0); +SetLocalInt(oMod, "d3", 0); +SetLocalInt(oMod, "d4", 0); +SetLocalInt(oMod, "d5", 0); + + +int iSwing = GetLocalInt(oPC, "pc_CHswing"); +int iHit = GetLocalInt(oPC, "pc_CHhit"); +int iDam = GetLocalInt(oPC, "pc_CHdam"); +int aScore = GetLocalInt(oPC, "a_score"); + +int iAv; +float fPerc; +int iPerc; +int tScore; + + +if (iHit!=0){iAv = iDam / iHit; } +else {iAv = 0;} + +if (iSwing!=0){fPerc = (IntToFloat(iHit) / IntToFloat(iSwing))*100;} +else {fPerc = 0.0;} + +iPerc = FloatToInt(fPerc); + +tScore = (iPerc * iAv)/10; +if (tScore!=0){aScore+=tScore;} +else {aScore += 0;} + +SetLocalInt(oPC, "a_score", aScore); + +object oArea = GetArea(oPC); + +object oSface = GetWaypointByTag("mc_facing"); +object oShome = GetWaypointByTag("starfall_wp"); +object oWP1=GetWaypointByTag("starfall_cswp"); +object oWP2=GetWaypointByTag("pc_cswp"); +object oWP3=GetWaypointByTag("test_wp"); +object oGate = GetObjectByTag("arena_gate"); + +string sSFtalk1, sSFtalk2,sSFtalk3,sSFtalk4,sSFtalk5,sSFtalk6,sSFtalk7, + sSFtalk7a, sSFtalk8,sSFtalk9,sSFtalk10; + +float oDelay1 = 8.0; +float oDelay2 = 12.0; +float oDelay3 = 17.0; +float oDelay4 = 20.0; +float oDelay7 = 26.0; +float oDelay8 = 32.0; +float oDelay5 = 39.0; +float oDelay6 = 48.0; + +CleanArea(oPC); +CreateItemOnObject("reward_key", oPC); + +sSFtalk1 = "Congratulations, "+GetName(oPC)+ + "! You have conquered the "+sChallenge+" arena challenge"; +sSFtalk2 = "You took "+IntToString(iSwing)+" swings and landed "+IntToString(iHit)+" blows."; +sSFtalk3 = IntToString(iPerc)+"% of your attacks found their mark."; +sSFtalk4 = "You dealt a total of "+IntToString(iDam)+" damage with an average hit dealing "+IntToString(iAv)+" damage."; +sSFtalk5 = "I now present you with your arena challenge prize"; +sSFtalk6 = "Go now, use your winnings wisely"; + +if (iPerc>=0) {sSFtalk7 = "Your performance was one of little or no skill "; } +if (iPerc>10) {sSFtalk7 = "Your performance was one of very low skill "; } +if (iPerc>20) {sSFtalk7 = "Your performance was one of average skill "; } +if (iPerc>30) {sSFtalk7 = "Your performance was one of moderate skill "; } +if (iPerc>40) {sSFtalk7 = "Your performance was one of high skill "; } +if (iPerc>50) {sSFtalk7 = "Your performance was one of very high skill "; } +if (iPerc>60) {sSFtalk7 = "Your performance was one of impressive skill "; } +if (iPerc>70) {sSFtalk7 = "Your performance was one of superior skill "; } +if (iPerc>80) {sSFtalk7 = "Your performance was one of incredible skill "; } +if (iPerc>90) {sSFtalk7 = "Your performance was one of supreme skill "; } + +if (iAv>=0) {sSFtalk7a = "and almost no power!"; } +if (iAv>10) {sSFtalk7a = "and very low power!"; } +if (iAv>20) {sSFtalk7a = "and low power!"; } +if (iAv>30) {sSFtalk7a = "and average power!"; } +if (iAv>50) {sSFtalk7a = "and threatening power!"; } +if (iAv>70) {sSFtalk7a = "and overwhelming power!"; } +if (iAv>100) {sSFtalk7a = "and formidible power!"; } +if (iAv>110) {sSFtalk7a = "and incredible power!"; } +if (iAv>120) {sSFtalk7a = "and supreme power!"; } +if (iAv>150) {sSFtalk7a = "and devastating power!"; } + +sSFtalk7+=sSFtalk7a; + +sSFtalk8 = "You have been awarded "+IntToString(tScore)+" championship points, giving you a total of "+IntToString(aScore)+" points"; + +GestaltStartCutscene(oPC, "",TRUE,TRUE,TRUE,TRUE,2); +GestaltCameraFade(0.0, oPC, FADE_IN,FADE_SPEED_SLOW); + +GestaltPlayMusic(0.0, oArea, TRUE, TRACK_HOTU_BATTLE_LARGE); + +PortIn(2.5, oStarfall, oWP1, oWP1, oWP2, 0); + +//GestaltJump(0.0, oPC, OBJECT_INVALID, "pccs_wp" ); +GestaltActionMove(0.0,oPC, oWP2, TRUE, 0.0, 5.0); +GestaltFace(8.0, oPC, 0.0, 2, oWP1); + +GestaltSpeak(oDelay1, oStarfall, sSFtalk1, + ANIMATION_FIREFORGET_VICTORY1); +GestaltSpeak(oDelay2, oStarfall, sSFtalk2, + ANIMATION_NONE); +GestaltSpeak(oDelay3, oStarfall, sSFtalk3, + ANIMATION_NONE); +GestaltSpeak(oDelay4, oStarfall, sSFtalk4, + ANIMATION_NONE); +GestaltSpeak(oDelay7, oStarfall, sSFtalk7, + ANIMATION_NONE); +GestaltSpeak(oDelay8, oStarfall, sSFtalk8, + ANIMATION_NONE); + +GestaltSpeak(oDelay5, oStarfall, sSFtalk5, + ANIMATION_FIREFORGET_BOW); +GestaltSpeak(oDelay6, oStarfall, sSFtalk6, + ANIMATION_NONE); +GestaltFace(44.0, oPC, 0.0, 2, oWP3); + +DelayCommand(40.0, Reward(oPC, oNum)); + +CSvoice2(46.0, oPC, 10); + +PortIn(47.0, oStarfall, oWP1, oShome, oSface, 1); + + +SetLocalFloat(oPC,"fCameraDirection",120.0); +SetLocalFloat(oPC,"fCameraRange",18.0); +SetLocalFloat(oPC,"fCameraPitch",60.0); + + +GestaltCameraMove (0.0, + 120.0,18.0,60.0, + 300.0, 20.0,60.0, + 10.0,30.0,oPC); + + GestaltCameraMove (10.0, + 300.0,20.0,60.0, + 325.0,22.0,60.0, + 5.0,30.0,oPC); + +GestaltCameraMove (15.0, + 325.0,22.0,60.0, + 330.0,17.0,60.0, + 5.0,30.0,oPC); + +GestaltCameraMove (20.0, + 330.0,17.0,60.0, + 345.0,12.0,75.0, + 4.0,30.0,oPC); + + + +GestaltCameraFade (52.0, oPC, FADE_OUT, FADE_SPEED_SLOW, 3.0); +GestaltStopCutscene (55.0, oPC); + +DelayCommand(56.0, MusicBackgroundChangeDay(GetArea(oPC), 0)); +DelayCommand(56.0, MusicBackgroundChangeNight(GetArea(oPC), 0)); +DelayCommand(57.0, MusicBackgroundStop(GetArea(oPC))); +} + +//void main () {} diff --git a/_module/nss/cutscene_ch2.nss b/_module/nss/cutscene_ch2.nss new file mode 100644 index 0000000..a68b38e --- /dev/null +++ b/_module/nss/cutscene_ch2.nss @@ -0,0 +1,283 @@ +#include "in_g_cutscene" +#include "cleanup" +#include "cutscene_ch1" + + + +void CSvoice(float oDelay, object oSelf, int iSet) +{ + +int iVoice; +float oDice; + + switch (iSet) + { + case 1: iVoice = VOICE_CHAT_ATTACK;break; + case 2: iVoice = VOICE_CHAT_BATTLECRY1;break; + case 3: iVoice = VOICE_CHAT_BATTLECRY2;break; + case 4: iVoice = VOICE_CHAT_BATTLECRY3;break; + case 5: iVoice = VOICE_CHAT_THREATEN;break; + case 6: iVoice = VOICE_CHAT_CHEER;break; + case 7: iVoice = VOICE_CHAT_CUSS;break; + case 8: iVoice = VOICE_CHAT_FLEE;break; + case 9: iVoice = VOICE_CHAT_GOODBYE;break; + case 10: iVoice = VOICE_CHAT_THANKS;break; + case 11: iVoice = VOICE_CHAT_WEAPONSUCKS;break; + case 12: iVoice = VOICE_CHAT_LAUGH;break; + case 13: iVoice = VOICE_CHAT_HELLO;break; + case 14: iVoice = VOICE_CHAT_FOLLOWME;break; + case 15: iVoice = VOICE_CHAT_GOODIDEA;break; + case 16: iVoice = VOICE_CHAT_REST;break; + case 17: iVoice = VOICE_CHAT_YES;break; + + + } +DelayCommand(oDelay, AssignCommand(oSelf, PlayVoiceChat(iVoice))); +} + + +void MoveNPC (object oPC) +{ +object oTarget; +object oTarget2; +object oCaster; + +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); +effect eEffect3 = EffectVisualEffect(VFX_FNF_PWSTUN); +effect eEffect2 = EffectVisualEffect(VFX_IMP_ELEMENTAL_PROTECTION); +oTarget = GetObjectByTag("love_npc"); +AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("love_wp1"))); +CSvoice(4.0, oTarget, 13); +DelayCommand(5.0, AssignCommand(oTarget, ActionPlayAnimation(ANIMATION_FIREFORGET_BOW))); +DelayCommand(11.0, AssignCommand(oTarget, SpeakString("I was hoping you'd be the one who completed the Arena Challenge"))); +DelayCommand(15.0, AssignCommand(oTarget, SpeakString("I would love to get to know you better, so lets go have some fun together."))); +DelayCommand(11.2, AssignCommand(oTarget, ActionPlayAnimation(ANIMATION_LOOPING_TALK_PLEADING, 1.0, 4.0f))); +DelayCommand(15.5, AssignCommand(oTarget, ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +CSvoice(19.0, oPC, 15); +CSvoice(21.0, oTarget, 12); +CSvoice(23.0, oTarget, 14); +CSvoice(25.0, oPC, 17); +CSvoice(31.0, oTarget, 12); + +oCaster = oTarget; +oTarget2 = GetObjectByTag("fw_portal_wp"); +GestaltFace(24.5, oTarget, 0.0, 2, oTarget2); +DelayCommand(26.0, AssignCommand(oCaster, +ActionCastFakeSpellAtLocation(SPELL_BANISHMENT, +GetLocation(oTarget), PROJECTILE_PATH_TYPE_DEFAULT))); +CutsceneEffect(28.0, VFX_FNF_FIREBALL, "fw_portal_wp"); +GestaltFace(28.2, oPC, 0.0, 2, oTarget2); +DelayCommand(28.0, CutscenePlace("fw_portal1", "fw_portal_wp")); +//DelayCommand(28.2, CutscenePlace("fw_light", "fw_portal_wp")); + +DelayCommand(30.0, AssignCommand(oTarget, +ActionMoveToObject(GetObjectByTag("fw_portal_wpa")))); +DelayCommand(32.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oTarget))); +DelayCommand(32.1, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect2, GetLocation(oTarget))); +DelayCommand(32.2, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect3, GetLocation(oTarget))); + +GestaltJump(32.3, oTarget, OBJECT_INVALID, "lake_wp1" ); + +} + + +void CutScene2(int oNum, string sChallenge, object oPC) +{ + +//FloatingTextStringOnCreature("cutscene fired", oPC); + +object oMod = GetModule(); +object oStarfall=GetObjectByTag("starfall"); +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); + +SetLocalInt(oPC, "cutscene_on",0); + +int iSwing = GetLocalInt(oPC, "pc_CHswing"); +int iHit = GetLocalInt(oPC, "pc_CHhit"); +int iDam = GetLocalInt(oPC, "pc_CHdam"); +int aScore = GetLocalInt(oPC, "a_score"); +int oMode = GetLocalInt(oMod, "gamemode"); + +int iAv; +float fPerc; +int iPerc; +int tScore; + + +if (iHit!=0){iAv = iDam / iHit; } +else {iAv = 0;} + +if (iSwing!=0){fPerc = (IntToFloat(iHit) / IntToFloat(iSwing))*100;} +else {fPerc = 0.0;} + +iPerc = FloatToInt(fPerc); + +tScore = iPerc * iAv; +if (tScore!=0){aScore+=tScore;} +else {aScore += 0;} + +SetLocalInt(oPC, "a_score", aScore); + +object oArea = GetArea(oPC); +object oNPC; + +object oSface = GetWaypointByTag("mc_facing"); +object oShome = GetWaypointByTag("starfall_wp"); +object oWP1=GetWaypointByTag("starfall_cswp"); +object oWP2=GetWaypointByTag("pc_cswp"); +object oWP3=GetWaypointByTag("test_wp"); +object oWP4=GetWaypointByTag("love_wp1"); +object oWP5=GetWaypointByTag("fw_portal_wp"); +object oGate = GetObjectByTag("arena_gate"); + +string sSFtalk1, sSFtalk2,sSFtalk3,sSFtalk4,sSFtalk5,sSFtalk6,sSFtalk7, + sSFtalk7a, sSFtalk8,sSFtalk9,sSFtalk10; + +float oDelay1 = 8.0; // congrats +float oDelay2 = 12.0; // hit & miss +float oDelay3 = 17.0; // hit % +float oDelay4 = 20.0; // damage +float oDelay7 = 26.0; // performance +float oDelay8 = 32.0; // points +float oDelay5 = 39.0; // present you with... +float oDelay6 = 50.0; // you'll enjoy +float oDelay9 = 40.0; // spawn reward +float oDelay10 = 48.0; //run to player +float oDelay9a = 51.5; //starfall dissapear effect +float oDelay9b = 52.0; //starfall port + +float oDelay11 = 54.5; //Greet NPC +float oDelay12 = 54.0; //Greet PC +float oDelay13 = 40.0; //intro +float oDelay14 = 40.0; //PC: I'm.... +float oDelay15 = 40.0; //NPC: I know who... +float oDelay16 = 40.0; //NPC: follwow me +float oDelay17 = 40.0; //PC: good idea +float oDelay18 = 40.0; // +float oDelay20 = 90.0; // + +DelayCommand(80.0, SetLocalInt(oMod, "chest_here", 0)); +CleanArea(oPC); + + +sSFtalk1 = "Congratulations, "+GetName(oPC)+ + "! You have mastered the Arena of Champions Challenge"; +sSFtalk2 = "During the ultimate challenge, you took "+IntToString(iSwing)+" swings and landed "+IntToString(iHit)+" blows."; +sSFtalk3 = IntToString(iPerc)+"% of your attacks found their mark."; +sSFtalk4 = "You dealt a total of "+IntToString(iDam)+" damage with an average of "+IntToString(iAv)+" per hit."; +sSFtalk5 = "I now present you with your final prize"; +sSFtalk6 = "I think you'll enjoy this one...*chuckle*"; + +if (iPerc>=0) {sSFtalk7 = "Your final performance was one of little or no skill "; } +if (iPerc>10) {sSFtalk7 = "Your final performance was one of very low skill "; } +if (iPerc>20) {sSFtalk7 = "Your final performance was one of average skill "; } +if (iPerc>30) {sSFtalk7 = "Your final performance was one of moderate skill "; } +if (iPerc>40) {sSFtalk7 = "Your final performance was one of high skill "; } +if (iPerc>50) {sSFtalk7 = "Your final performance was one of very high skill "; } +if (iPerc>60) {sSFtalk7 = "Your final performance was one of impressive skill "; } +if (iPerc>70) {sSFtalk7 = "Your final performance was one of superior skill "; } +if (iPerc>80) {sSFtalk7 = "Your final performance was one of incredible skill "; } +if (iPerc>90) {sSFtalk7 = "Your final performance was one of supreme skill "; } + +if (iAv>=0) {sSFtalk7a = "and almost no power!"; } +if (iAv>10) {sSFtalk7a = "and very low power!"; } +if (iAv>20) {sSFtalk7a = "and low power!"; } +if (iAv>30) {sSFtalk7a = "and average power!"; } +if (iAv>50) {sSFtalk7a = "and threatening power!"; } +if (iAv>70) {sSFtalk7a = "and overwhelming power!"; } +if (iAv>100) {sSFtalk7a = "and formidible power!"; } +if (iAv>110) {sSFtalk7a = "and incredible power!"; } +if (iAv>120) {sSFtalk7a = "and supreme power!"; } +if (iAv>150) {sSFtalk7a = "and devastating power!"; } + +sSFtalk7+=sSFtalk7a; + +sSFtalk8 = "You have been awarded a special bonus of "+IntToString(tScore)+" championship points, giving you a grand total of "+IntToString(aScore)+" points"; + +GestaltStartCutscene(oPC, "",TRUE,TRUE,TRUE,TRUE,2); +GestaltCameraFade(0.0, oPC, FADE_IN,FADE_SPEED_SLOW); + +GestaltPlayMusic(0.0, oArea, TRUE, TRACK_HOTU_BATTLE_LARGE); + +PortIn(2.5, oStarfall, oWP1, oWP1, oWP2, 0); + +GestaltActionMove(0.0,oPC, oWP2, TRUE, 0.0, 5.0); +GestaltFace(6.0, oPC, 0.0, 2, oWP1); + + +GestaltSpeak(oDelay1, oStarfall, sSFtalk1, + ANIMATION_FIREFORGET_VICTORY1); +GestaltSpeak(oDelay2, oStarfall, sSFtalk2, + ANIMATION_NONE); +GestaltSpeak(oDelay3, oStarfall, sSFtalk3, + ANIMATION_NONE); +GestaltSpeak(oDelay4, oStarfall, sSFtalk4, + ANIMATION_NONE); +GestaltSpeak(oDelay7, oStarfall, sSFtalk7, + ANIMATION_NONE); +GestaltSpeak(oDelay8, oStarfall, sSFtalk8, + ANIMATION_NONE); + +GestaltSpeak(oDelay5, oStarfall, sSFtalk5, + ANIMATION_FIREFORGET_BOW); +GestaltSpeak(oDelay6, oStarfall, sSFtalk6, + ANIMATION_NONE); +GestaltFace(oDelay5+4.0, oPC, 0.0, 2, oWP3); + +CSvoice(oDelay5+8.0, oPC, 6); + +if (oMode==1){DelayCommand(oDelay9, Reward(oPC, 10));} +else {DelayCommand(oDelay9, Reward(oPC, 9));} + +PortIn(48.0, oStarfall, oWP1, oShome, oSface, 1); + +DelayCommand(oDelay10, MoveNPC(oPC)); + +GestaltActionAnimate(oDelay11, oPC, ANIMATION_FIREFORGET_BOW); +CSvoice(oDelay11, oPC, 13); + +SetLocalFloat(oPC,"fCameraDirection",120.0); +SetLocalFloat(oPC,"fCameraRange",18.0); +SetLocalFloat(oPC,"fCameraPitch",60.0); + + +GestaltCameraMove (0.0, + 120.0,18.0,60.0, + 300.0, 20.0,60.0, + 10.0,30.0,oPC); + + GestaltCameraMove (10.0, + 300.0,20.0,60.0, + 325.0,22.0,60.0, + 5.0,30.0,oPC); + +GestaltCameraMove (15.0, + 325.0,22.0,60.0, + 330.0,17.0,60.0, + 5.0,30.0,oPC); + +GestaltCameraMove (20.0, + 330.0,17.0,60.0, + 345.0,9.0,76.0, + 5.0,30.0,oPC); + +GestaltCameraMove (71.0, + 345.0,9.0,76.0, + 390.0,10.0,67.0, + 5.0,30.0,oPC); + + + +GestaltCameraFade (84.0, oPC, FADE_OUT, FADE_SPEED_SLOW); +GestaltStopCutscene (87.0, oPC); + +DelayCommand(88.0, MusicBackgroundChangeDay(GetArea(oPC), 0)); +DelayCommand(88.0, MusicBackgroundChangeNight(GetArea(oPC), 0)); +DelayCommand(89.0, MusicBackgroundStop(GetArea(oPC))); + +} + +//void main () {} diff --git a/_module/nss/cutscene_ch3.nss b/_module/nss/cutscene_ch3.nss new file mode 100644 index 0000000..6d4013f --- /dev/null +++ b/_module/nss/cutscene_ch3.nss @@ -0,0 +1,300 @@ +#include "in_g_cutscene" +#include "cleanup" +#include "cutscene_ch1" + +void Spawn(string sRes, object sWaypoint) +{ +location lTarget = GetLocation(sWaypoint); +object oSpawn = CreateObject(OBJECT_TYPE_CREATURE, sRes, lTarget); +} + + +void CSvoice3(float oDelay, object oSelf, int iSet) +{ + +int iVoice; +float oDice; + + switch (iSet) + { + case 1: iVoice = VOICE_CHAT_ATTACK;break; + case 2: iVoice = VOICE_CHAT_BATTLECRY1;break; + case 3: iVoice = VOICE_CHAT_BATTLECRY2;break; + case 4: iVoice = VOICE_CHAT_BATTLECRY3;break; + case 5: iVoice = VOICE_CHAT_THREATEN;break; + case 6: iVoice = VOICE_CHAT_CHEER;break; + case 7: iVoice = VOICE_CHAT_CUSS;break; + case 8: iVoice = VOICE_CHAT_FLEE;break; + case 9: iVoice = VOICE_CHAT_GOODBYE;break; + case 10: iVoice = VOICE_CHAT_THANKS;break; + case 11: iVoice = VOICE_CHAT_WEAPONSUCKS;break; + case 12: iVoice = VOICE_CHAT_LAUGH;break; + case 13: iVoice = VOICE_CHAT_HELLO;break; + case 14: iVoice = VOICE_CHAT_FOLLOWME;break; + case 15: iVoice = VOICE_CHAT_GOODIDEA;break; + case 16: iVoice = VOICE_CHAT_REST;break; + case 17: iVoice = VOICE_CHAT_YES;break; + + + } +DelayCommand(oDelay, AssignCommand(oSelf, PlayVoiceChat(iVoice))); +} + + +void CSstart(int oNum, object oPC) +{ +object oMod = GetModule(); +object oStarfall=GetObjectByTag("starfall2"); + +object oWP1=GetWaypointByTag("starfall_cswp"); +object oWP2=GetWaypointByTag("pc_cswp"); +object oWP3=GetWaypointByTag("test_wp"); +object oWP4=GetWaypointByTag("love_wp1"); +object oWP5=GetWaypointByTag("fw_portal_wp"); +object oGate = GetObjectByTag("arena_gate"); + +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); +effect eEffect3 = EffectVisualEffect(VFX_FNF_PWSTUN); +effect eEffect2 = EffectVisualEffect(VFX_IMP_ELEMENTAL_PROTECTION); + +float oDelay1 = 5.0; // congrats +float oDelay2 = 12.0; // hit & miss +float oDelay3 = 17.0; // hit % +float oDelay4 = 20.0; // damage +float oDelay7 = 26.0; // performance +float oDelay8 = 32.0; // points +float oDelay5 = 39.0; // present you with... +float oDelay6 = 48.0; // you'll enjoy +float oDelay9 = 40.0; // spawn reward +float oDelay10 = 48.0; //run to player +float oDelay9a = 51.5; //starfall dissapear effect +float oDelay9b = 52.0; //starfall port + +float oDelay11 = 54.5; //Greet NPC +float oDelay12 = 54.0; //Greet PC +float oDelay13 = 40.0; //intro +float oDelay14 = 40.0; //PC: I'm.... +float oDelay15 = 40.0; //NPC: I know who... +float oDelay16 = 40.0; //NPC: follwow me +float oDelay17 = 40.0; //PC: good idea +float oDelay18 = 40.0; // +float oDelay20 = 90.0; // + +string sSFtalk1, sSFtalk2,sSFtalk3,sSFtalk4,sSFtalk5,sSFtalk6,sSFtalk7, + sSFtalk7a, sSFtalk8,sSFtalk9,sSFtalk10; + + + +int iSwing = GetLocalInt(oPC, "pc_SFswing"); +int iHit = GetLocalInt(oPC, "pc_SFhit"); +int iDam = GetLocalInt(oPC, "pc_SFdam"); +int aScore = GetLocalInt(oPC, "a_score"); +int oMode = GetLocalInt(oMod, "gamemode"); + +int iAv; +float fPerc; +int iPerc; +int tScore; + + +if (iHit!=0){iAv = iDam / iHit; } +else {iAv = 0;} + +if (iSwing!=0){fPerc = (IntToFloat(iHit) / IntToFloat(iSwing))*100;} +else {fPerc = 0.0;} + +iPerc = FloatToInt(fPerc); + +tScore = iPerc * iAv+1000; +if (tScore!=0){aScore+=tScore;} +else {aScore += 0;} + +string sOpponent; +int iMode = GetLocalInt(oMod, "gamemode"); +if (iMode==1){sOpponent = "Mephisto";} +else{sOpponent = "Starfall";} + +SetLocalInt(oPC, "a_score", aScore); + +sSFtalk1 = "Congratulations, "+GetName(oPC)+ + "! In an amazing feat of prowess, you have defeated "+sOpponent+", the Master of Champions!"; +sSFtalk2 = "During the duel, you took "+IntToString(iSwing)+" swings and landed "+IntToString(iHit)+" blows."; +sSFtalk3 = IntToString(iPerc)+"% of your attacks were effective against "+sOpponent+"."; +sSFtalk4 = "You dealt a total of "+IntToString(iDam)+" damage with an average of "+IntToString(iAv)+" per hit."; +sSFtalk5 = "I now present you with your prize"; +sSFtalk6 = "Hail "+GetName(oPC)+", the new Master of Champions and guardian of the Phoenix Rod!"; + +if (iPerc>=0) {sSFtalk7 = "Your performance against "+sOpponent+" was one of little or no skill "; } +if (iPerc>10) {sSFtalk7 = "Your performance against "+sOpponent+" was one of very low skill "; } +if (iPerc>20) {sSFtalk7 = "Your performance against "+sOpponent+" was one of average skill "; } +if (iPerc>30) {sSFtalk7 = "Your performance against "+sOpponent+" was one of moderate skill "; } +if (iPerc>40) {sSFtalk7 = "Your performance against "+sOpponent+" was one of high skill "; } +if (iPerc>50) {sSFtalk7 = "Your performance against "+sOpponent+" was one of very high skill "; } +if (iPerc>60) {sSFtalk7 = "Your performance against "+sOpponent+" was one of impressive skill "; } +if (iPerc>70) {sSFtalk7 = "Your performance against "+sOpponent+" was one of superior skill "; } +if (iPerc>80) {sSFtalk7 = "Your performance against "+sOpponent+" was one of incredible skill "; } +if (iPerc>90) {sSFtalk7 = "Your performance against "+sOpponent+" was one of supreme skill "; } + +if (iAv>=0) {sSFtalk7a = "and almost no power!"; } +if (iAv>10) {sSFtalk7a = "and very low power!"; } +if (iAv>20) {sSFtalk7a = "and low power!"; } +if (iAv>30) {sSFtalk7a = "and average power!"; } +if (iAv>50) {sSFtalk7a = "and threatening power!"; } +if (iAv>70) {sSFtalk7a = "and overwhelming power!"; } +if (iAv>100) {sSFtalk7a = "and formidible power!"; } +if (iAv>110) {sSFtalk7a = "and incredible power!"; } +if (iAv>120) {sSFtalk7a = "and supreme power!"; } +if (iAv>150) {sSFtalk7a = "and devastating power!"; } + +sSFtalk7+=sSFtalk7a; + +sSFtalk8 = "You have been awarded a special bonus of "+IntToString(tScore)+" championship points, giving you a grand total of "+IntToString(aScore)+" points"; + +GestaltFace(0.0, oStarfall, 0.0, 2, oWP2); + +GestaltSpeak(oDelay1, oStarfall, sSFtalk1, + ANIMATION_FIREFORGET_VICTORY1); +GestaltSpeak(oDelay2, oStarfall, sSFtalk2, + ANIMATION_NONE); +GestaltSpeak(oDelay3, oStarfall, sSFtalk3, + ANIMATION_NONE); +GestaltSpeak(oDelay4, oStarfall, sSFtalk4, + ANIMATION_NONE); +GestaltSpeak(oDelay7, oStarfall, sSFtalk7, + ANIMATION_NONE); +GestaltSpeak(oDelay8, oStarfall, sSFtalk8, + ANIMATION_NONE); + +GestaltSpeak(oDelay5, oStarfall, sSFtalk5, + ANIMATION_FIREFORGET_BOW); +GestaltSpeak(oDelay6, oStarfall, sSFtalk6, + ANIMATION_FIREFORGET_VICTORY2); +GestaltFace(oDelay5+4.0, oPC, 0.0, 2, oWP3); + +CSvoice3(oDelay9+3.0, oPC, 10); + +DelayCommand(oDelay9, Reward(oPC, 8)); + +DelayCommand(oDelay9a, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oWP1))); +DelayCommand(oDelay9a+0.1, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect2, GetLocation(oWP1))); +DelayCommand(oDelay9a+0.2, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect3, GetLocation(oWP1))); + +DestroyObject(oStarfall, oDelay9a+0.5); + + + +GestaltActionAnimate(oDelay11, oPC, ANIMATION_FIREFORGET_VICTORY3); + +CSvoice3(oDelay11, oPC, 6); + + +} + + + + + +void CutScene3 (int oNum, object oPC) +{ + +object oMod = GetModule(); +object oStarfall; + +int iMode = GetLocalInt(oMod, "gamemode"); +string sSpawn; + +SetLocalInt(oPC, "cutscene_on",0); +SetLocalInt(oMod, "duel_on", 0); +SetLocalInt(oMod, "d1", 0); +SetLocalInt(oMod, "d2", 0); +SetLocalInt(oMod, "d2a", 0); +SetLocalInt(oMod, "d3", 0); +SetLocalInt(oMod, "d4", 0); +SetLocalInt(oMod, "d5", 0); + + +SetLocked(GetObjectByTag("arena_gate"), FALSE); + +object oArea = GetArea(oPC); +object oNPC; + +object oWP1=GetWaypointByTag("starfall_cswp"); +object oWP2=GetWaypointByTag("pc_cswp"); +object oWP3=GetWaypointByTag("test_wp"); +object oWP4=GetWaypointByTag("love_wp1"); +object oWP5=GetWaypointByTag("fw_portal_wp"); +object oGate = GetObjectByTag("arena_gate"); + +SetLocalInt(oMod, "chest_here", 0); +CleanArea(oPC); +CreateItemOnObject("reward_key", oPC); + + +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); +effect eEffect3 = EffectVisualEffect(VFX_FNF_PWSTUN); +effect eEffect2 = EffectVisualEffect(VFX_IMP_ELEMENTAL_PROTECTION); + +GestaltStartCutscene(oPC, "",TRUE,TRUE,TRUE,TRUE,2); +GestaltCameraFade(0.0, oPC, FADE_IN,FADE_SPEED_SLOW); + +GestaltPlayMusic(0.0, oArea, TRUE, TRACK_HOTU_BATTLE_LARGE); +GestaltActionMove(0.0,oPC, oWP2, TRUE, 0.0, 5.0); +GestaltFace(6.0, oPC, 0.0, 2, oWP1); + + +DelayCommand(4.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oWP1))); +DelayCommand(4.1, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect2, GetLocation(oWP1))); +DelayCommand(4.2, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect3, GetLocation(oWP1))); +if (iMode==1){sSpawn = "starfall3";} +else{sSpawn = "starfall2";} + +DelayCommand(4.5, Spawn(sSpawn, oWP1)); + +DelayCommand(6.0, CSstart(oNum, oPC)); + + +SetLocalFloat(oPC,"fCameraDirection",120.0); +SetLocalFloat(oPC,"fCameraRange",18.0); +SetLocalFloat(oPC,"fCameraPitch",60.0); + + +GestaltCameraMove (0.0, + 120.0,18.0,60.0, + 300.0, 20.0,60.0, + 10.0,30.0,oPC); + + GestaltCameraMove (10.0, + 300.0,20.0,60.0, + 325.0,22.0,60.0, + 5.0,30.0,oPC); + +GestaltCameraMove (15.0, + 325.0,22.0,60.0, + 330.0,17.0,60.0, + 5.0,30.0,oPC); + +GestaltCameraMove (20.0, + 330.0,17.0,60.0, + 345.0,12.0,75.0, + 4.0,30.0,oPC); + + + +GestaltCameraFade (62.0, oPC, FADE_OUT, FADE_SPEED_SLOW, 3.0); +GestaltStopCutscene (65.0, oPC); + +DelayCommand(66.0, MusicBackgroundChangeDay(GetArea(oPC), 0)); +DelayCommand(66.0, MusicBackgroundChangeNight(GetArea(oPC), 0)); +DelayCommand(67.0, MusicBackgroundStop(GetArea(oPC))); + +} + + + +//void main () {} diff --git a/_module/nss/cutscene_ch4.nss b/_module/nss/cutscene_ch4.nss new file mode 100644 index 0000000..845eff2 --- /dev/null +++ b/_module/nss/cutscene_ch4.nss @@ -0,0 +1,203 @@ +#include "cutscene_ch1" +#include "charport" + + + /*case 1: iVoice = VOICE_CHAT_ATTACK;break; + case 2: iVoice = VOICE_CHAT_BATTLECRY1;break; + case 3: iVoice = VOICE_CHAT_BATTLECRY2;break; + case 4: iVoice = VOICE_CHAT_BATTLECRY3;break; + case 5: iVoice = VOICE_CHAT_THREATEN;break; + case 6: iVoice = VOICE_CHAT_CHEER;break; + case 7: iVoice = VOICE_CHAT_CUSS;break; + case 8: iVoice = VOICE_CHAT_FLEE;break; + case 9: iVoice = VOICE_CHAT_GOODBYE;break; + case 10: iVoice = VOICE_CHAT_THANKS;break; + case 11: iVoice = VOICE_CHAT_WEAPONSUCKS;break; + case 12: iVoice = VOICE_CHAT_LAUGH;break; + case 13: iVoice = VOICE_CHAT_HELLO;break; + case 14: iVoice = VOICE_CHAT_FOLLOWME;break; + case 15: iVoice = VOICE_CHAT_GOODIDEA;break; + case 16: iVoice = VOICE_CHAT_REST;break; + case 17: iVoice = VOICE_CHAT_YES;break; + */ + + + + +void CutScene4(object oPC) +{ +object oMod = GetModule(); +object oStarfall=GetObjectByTag("starfall"); +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); + +SetLocalInt(oPC, "cutscene_on",0); +SetLocalInt(oPC, "final_on",0); + +int iSwing = GetLocalInt(oPC, "pc_FBswing"); +int iHit = GetLocalInt(oPC, "pc_FBhit"); +int iDam = GetLocalInt(oPC, "pc_FBdam"); +int aScore = GetLocalInt(oPC, "a_score"); + +int iAv; +float fPerc; +int iPerc; +int tScore; + + +if (iHit!=0){iAv = iDam / iHit; } +else {iAv = 0;} + +if (iSwing!=0){fPerc = (IntToFloat(iHit) / IntToFloat(iSwing))*100;} +else {fPerc = 0.0;} + +iPerc = FloatToInt(fPerc); + +tScore = (iPerc * iAv)/10; +if (tScore!=0){aScore+=tScore;} +else {aScore += 0;} + +SetLocalInt(oPC, "a_score", aScore); +CreateItemOnObject("duel_pass", oPC); + +object oArea = GetArea(oPC); + +object oSface = GetWaypointByTag("mc_facing"); +object oShome = GetWaypointByTag("starfall_wp"); +object oWP1=GetWaypointByTag("starfall_cswp"); +object oWP2=GetWaypointByTag("pc_cswp"); +object oWP3=GetWaypointByTag("test_wp"); +object oGate = GetObjectByTag("arena_gate"); + +string sSFtalk1, sSFtalk2,sSFtalk3,sSFtalk4,sSFtalk5,sSFtalk6,sSFtalk7, + sSFtalk7a, sSFtalk8,sSFtalk9,sSFtalk10; + +float oDelay1 = 10.0; +float oDelay2 = 14.0; +float oDelay3 = 19.0; +float oDelay4 = 23.0; +float oDelay7 = 28.0; +float oDelay8 = 34.0; +float oDelay5 = 41.0; +float oDelay6 = 55.0; + +CleanArea(oPC); + +string sOpponent; +int iMode = GetLocalInt(oMod, "gamemode"); +if (iMode==1){sOpponent = "The Arch Angel Tyriel";} +else{sOpponent = "The Dark Lord Lucifer";} + + +sSFtalk1 = "Congratulations, "+GetName(oPC)+ + "! You have defeated "+sOpponent+" in a battle that will be remembered for all eternity!"; +sSFtalk2 = "Of the "+IntToString(iSwing)+" attacks that you unleashed, "+IntToString(iHit)+ + " found their mark, giving you a hit percentage of "+IntToString(iPerc)+"%"; +sSFtalk4 = "You bled "+sOpponent+" for "+IntToString(iDam)+" points of damage with an average of "+IntToString(iAv)+" per hit."; +sSFtalk5 = "I present you with your Worthy Champion Medal of Honour. You have thus earned the honour to contest my title for Master of Champions."; +sSFtalk6 = "I look forward to duelling a worthy opponent such as yourself."; + +if (iPerc>=0) {sSFtalk7 = "Your performance was one of little or no skill "; } +if (iPerc>10) {sSFtalk7 = "Your performance was one of very low skill "; } +if (iPerc>20) {sSFtalk7 = "Your performance was one of average skill "; } +if (iPerc>30) {sSFtalk7 = "Your performance was one of moderate skill "; } +if (iPerc>40) {sSFtalk7 = "Your performance was one of high skill "; } +if (iPerc>50) {sSFtalk7 = "Your performance was one of very high skill "; } +if (iPerc>60) {sSFtalk7 = "Your performance was one of impressive skill "; } +if (iPerc>70) {sSFtalk7 = "Your performance was one of superior skill "; } +if (iPerc>80) {sSFtalk7 = "Your performance was one of incredible skill "; } +if (iPerc>90) {sSFtalk7 = "Your performance was one of supreme skill "; } + +if (iAv>=0) {sSFtalk7a = "and almost no power!"; } +if (iAv>10) {sSFtalk7a = "and very low power!"; } +if (iAv>20) {sSFtalk7a = "and low power!"; } +if (iAv>30) {sSFtalk7a = "and average power!"; } +if (iAv>50) {sSFtalk7a = "and threatening power!"; } +if (iAv>70) {sSFtalk7a = "and overwhelming power!"; } +if (iAv>100) {sSFtalk7a = "and formidible power!"; } +if (iAv>110) {sSFtalk7a = "and incredible power!"; } +if (iAv>120) {sSFtalk7a = "and supreme power!"; } +if (iAv>150) {sSFtalk7a = "and devastating power!"; } + +sSFtalk7+=sSFtalk7a; + +sSFtalk8 = "You have been awarded "+IntToString(tScore)+" championship points, giving you a total of "+IntToString(aScore)+" points."; + +GestaltStartCutscene(oPC, "",TRUE,TRUE,TRUE,TRUE,2); +GestaltCameraFade(0.0, oPC, FADE_IN,FADE_SPEED_SLOW); + +GestaltPlayMusic(0.0, oArea, TRUE, TRACK_HOTU_BATTLE_LARGE); + +AssignCommand(oPC, ClearAllActions()); + +PortIn(2.5, oStarfall, oWP1, oWP1, oWP2, 0); + +GestaltActionMove(0.2,oPC, oWP2, TRUE, 0.0, 5.0); +GestaltFace(8.0, oPC, 0.0, 2, oWP1); + +GestaltSpeak(oDelay1, oStarfall, sSFtalk1, + ANIMATION_FIREFORGET_VICTORY1); +GestaltSpeak(oDelay2, oStarfall, sSFtalk2, + ANIMATION_NONE); +GestaltSpeak(oDelay4, oStarfall, sSFtalk4, + ANIMATION_NONE); +GestaltSpeak(oDelay7, oStarfall, sSFtalk7, + ANIMATION_NONE); +GestaltSpeak(oDelay8, oStarfall, sSFtalk8, + ANIMATION_NONE); + +GestaltSpeak(oDelay5, oStarfall, sSFtalk5, + ANIMATION_FIREFORGET_BOW); + +GestaltFloatingText(oDelay5+1.0, oPC, "** Recieved Medal** "); + +GestaltSpeak(oDelay6, oStarfall, sSFtalk6, + ANIMATION_NONE); + +GestaltActionAnimate(48.2, oPC, ANIMATION_LOOPING_TALK_FORCEFUL, 4.0); +CSvoice2(48.0, oPC, 5); +CSvoice2(52.0, oStarfall, 12); + + + +PortIn(54.7, oStarfall, oWP1, oShome, oSface, 1); + + +SetLocalFloat(oPC,"fCameraDirection",120.0); +SetLocalFloat(oPC,"fCameraRange",18.0); +SetLocalFloat(oPC,"fCameraPitch",60.0); + + +GestaltCameraMove (0.0, + 120.0,18.0,60.0, + 300.0, 20.0,60.0, + 10.0,30.0,oPC); + +GestaltCameraMove (10.0, + 300.0,20.0,60.0, + 325.0,22.0,60.0, + 5.0,30.0,oPC); + +GestaltCameraMove (15.0, + 325.0,22.0,60.0, + 330.0,17.0,60.0, + 5.0,30.0,oPC); + +GestaltCameraMove (20.0, + 330.0,17.0,60.0, + 345.0,12.0,75.0, + 4.0,30.0,oPC); + + + +GestaltCameraFade (62.0, oPC, FADE_OUT, FADE_SPEED_SLOW, 3.0); +GestaltStopCutscene (65.0, oPC); + +DelayCommand(66.0, MusicBackgroundChangeDay(GetArea(oPC), 0)); +DelayCommand(66.0, MusicBackgroundChangeNight(GetArea(oPC), 0)); +DelayCommand(67.0, MusicBackgroundStop(GetArea(oPC))); + +DelayCommand(68.5, AssignCommand(oPC, PlaySound("sce_positive"))); +DelayCommand(68.5, FloatingTextStringOnCreature("** HOLY WAR feature - UNLOCKED - **", oPC)); +} + +//void main () {} diff --git a/_module/nss/cutscene_test.nss b/_module/nss/cutscene_test.nss new file mode 100644 index 0000000..df0a7e6 --- /dev/null +++ b/_module/nss/cutscene_test.nss @@ -0,0 +1,10 @@ +void main() +{ +object oMod = GetModule(); +object oPC = GetPCSpeaker(); +SetLocalInt(oMod, "d1", 1); +SetLocalInt(oPC, "cutscene_on", 1); +SetLocalInt(oMod, "cutscene_flag", 0); +SetLocalInt(oMod, "xcheck", 0); +//SetLocalInt(oMod, "challenge", 1); +} diff --git a/_module/nss/d2c.nss b/_module/nss/d2c.nss new file mode 100644 index 0000000..96a660d --- /dev/null +++ b/_module/nss/d2c.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_010 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d2_complete") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/d2cd.nss b/_module/nss/d2cd.nss new file mode 100644 index 0000000..42b4355 --- /dev/null +++ b/_module/nss/d2cd.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_010 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d2a_complete") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/d2cde.nss b/_module/nss/d2cde.nss new file mode 100644 index 0000000..8a6ef0b --- /dev/null +++ b/_module/nss/d2cde.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_010 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d3_complete") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/d2cdef.nss b/_module/nss/d2cdef.nss new file mode 100644 index 0000000..beb4228 --- /dev/null +++ b/_module/nss/d2cdef.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_010 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d4_complete") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/d_dam.nss b/_module/nss/d_dam.nss new file mode 100644 index 0000000..e6692bd --- /dev/null +++ b/_module/nss/d_dam.nss @@ -0,0 +1,43 @@ +void DeathStats2 (object oPC) +{ +object oMod = GetModule(); +int oDam = GetTotalDamageDealt(); + +int oHWhit = GetLocalInt(oPC, "pc_HWhit"); +int oHit = GetLocalInt(oPC, "pc_hit"); +int oPCdam = GetLocalInt(oPC, "player_dd"); +int oHWdam = GetLocalInt(oPC, "pc_HWdam"); +int iCHhit = GetLocalInt(oPC, "pc_CHhit"); +int iCHdam = GetLocalInt(oPC, "pc_CHdam"); +int iSFhit = GetLocalInt(oPC, "pc_SFhit"); +int iSFdam = GetLocalInt(oPC, "pc_SFdam"); +int iFBhit = GetLocalInt(oPC, "pc_FBhit"); +int iFBdam = GetLocalInt(oPC, "pc_FBdam"); +int iArenaChall = GetLocalInt(oMod, "challenge"); +int iSFDuel = GetLocalInt(oMod, "duel_on"); +int iFinalBattle = GetLocalInt(oPC, "final_on"); + +SetLocalInt(oPC, "pc_HWhit", ++oHWhit); +SetLocalInt(oPC, "pc_hit", ++oHit); +SetLocalInt(oPC, "player_dd", oPCdam+oDam); +SetLocalInt(oPC, "pc_HWdam", oHWdam+oDam); + +if (iArenaChall==1) + { + SetLocalInt(oPC, "pc_CHhit", ++iCHhit); + SetLocalInt(oPC, "pc_CHdam", iCHdam+oDam); + } +if (iSFDuel==1) + { + SetLocalInt(oPC, "pc_SFhit", ++iSFhit); + SetLocalInt(oPC, "pc_SFdam", iSFdam+oDam); + + } +if (iFinalBattle==1) + { + SetLocalInt(oPC, "pc_FBhit", ++iFBhit); + SetLocalInt(oPC, "pc_FBdam", iFBdam+oDam); + } +} + +//void main(){} diff --git a/_module/nss/damage_inc2.nss b/_module/nss/damage_inc2.nss new file mode 100644 index 0000000..bb560d2 --- /dev/null +++ b/_module/nss/damage_inc2.nss @@ -0,0 +1,57 @@ +void DamageIncApply(object oPlayer,int iMax ) +{ +if ((GetLevelByClass(CLASS_TYPE_DRUID, oPlayer)>0)|| + (GetLevelByClass(CLASS_TYPE_SORCERER, oPlayer)>0)|| + (GetLevelByClass(CLASS_TYPE_WIZARD, oPlayer)>0)) + { + int iHD = GetHitDice(oPlayer); +int iHcalc = (iHD); + +if (iHcalc <= iMax) + { + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageIncrease(iHcalc, DAMAGE_TYPE_MAGICAL)), oPlayer); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAttackIncrease(iHcalc)), oPlayer); + + } + else + { + + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageIncrease(iMax, DAMAGE_TYPE_MAGICAL)), oPlayer); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAttackIncrease(iMax)), oPlayer); + } + } +} + +void ColdDamageIncApply(object oPlayer, int iMax ) +{ +if ((GetLevelByClass(CLASS_TYPE_DRUID, oPlayer)>0)|| + (GetLevelByClass(CLASS_TYPE_SORCERER, oPlayer)>0)|| + (GetLevelByClass(CLASS_TYPE_WIZARD, oPlayer)>0)) + { +int iHD = GetHitDice(oPlayer); +int iHcalc = (iHD); +if (iHcalc <= iMax) + { + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageIncrease(iHcalc, DAMAGE_TYPE_COLD)), oPlayer); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAttackIncrease(iHcalc)), oPlayer); + + } + else + { + + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageIncrease(iMax, DAMAGE_TYPE_COLD)), oPlayer); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAttackIncrease(iMax)), oPlayer); + } + } +} + + +//void main (){} diff --git a/_module/nss/damned_w1.nss b/_module/nss/damned_w1.nss new file mode 100644 index 0000000..27e47e0 --- /dev/null +++ b/_module/nss/damned_w1.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedWar(oPC, 1); +} diff --git a/_module/nss/damned_w2.nss b/_module/nss/damned_w2.nss new file mode 100644 index 0000000..4207b30 --- /dev/null +++ b/_module/nss/damned_w2.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedWar(oPC, 2); +} diff --git a/_module/nss/damned_w3.nss b/_module/nss/damned_w3.nss new file mode 100644 index 0000000..b0315eb --- /dev/null +++ b/_module/nss/damned_w3.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedWar(oPC, 3); +} diff --git a/_module/nss/damned_w4.nss b/_module/nss/damned_w4.nss new file mode 100644 index 0000000..1efbc93 --- /dev/null +++ b/_module/nss/damned_w4.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedWar(oPC, 4); +} diff --git a/_module/nss/damned_w5.nss b/_module/nss/damned_w5.nss new file mode 100644 index 0000000..23f4ea6 --- /dev/null +++ b/_module/nss/damned_w5.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedWar(oPC, 5); +} diff --git a/_module/nss/damned_w6.nss b/_module/nss/damned_w6.nss new file mode 100644 index 0000000..cc0ad00 --- /dev/null +++ b/_module/nss/damned_w6.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedWar(oPC, 6); +} diff --git a/_module/nss/damned_wc1.nss b/_module/nss/damned_wc1.nss new file mode 100644 index 0000000..878c580 --- /dev/null +++ b/_module/nss/damned_wc1.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedCle(oPC, 1); +} diff --git a/_module/nss/damned_wc2.nss b/_module/nss/damned_wc2.nss new file mode 100644 index 0000000..af72cfb --- /dev/null +++ b/_module/nss/damned_wc2.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedCle(oPC, 2); +} diff --git a/_module/nss/damned_wc3.nss b/_module/nss/damned_wc3.nss new file mode 100644 index 0000000..95df5f7 --- /dev/null +++ b/_module/nss/damned_wc3.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedCle(oPC, 3); +} diff --git a/_module/nss/damned_wc4.nss b/_module/nss/damned_wc4.nss new file mode 100644 index 0000000..5eecb86 --- /dev/null +++ b/_module/nss/damned_wc4.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedCle(oPC, 4); +} diff --git a/_module/nss/damned_wc5.nss b/_module/nss/damned_wc5.nss new file mode 100644 index 0000000..df20ad1 --- /dev/null +++ b/_module/nss/damned_wc5.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedCle(oPC, 5); +} diff --git a/_module/nss/damned_wc6.nss b/_module/nss/damned_wc6.nss new file mode 100644 index 0000000..643d646 --- /dev/null +++ b/_module/nss/damned_wc6.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedCle(oPC, 6); +} diff --git a/_module/nss/damned_wz1.nss b/_module/nss/damned_wz1.nss new file mode 100644 index 0000000..740613e --- /dev/null +++ b/_module/nss/damned_wz1.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedWiz(oPC, 1); +} diff --git a/_module/nss/damned_wz2.nss b/_module/nss/damned_wz2.nss new file mode 100644 index 0000000..266678d --- /dev/null +++ b/_module/nss/damned_wz2.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedWiz(oPC, 2); +} diff --git a/_module/nss/damned_wz3.nss b/_module/nss/damned_wz3.nss new file mode 100644 index 0000000..9d30fb0 --- /dev/null +++ b/_module/nss/damned_wz3.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedWiz(oPC, 3); +} diff --git a/_module/nss/damned_wz4.nss b/_module/nss/damned_wz4.nss new file mode 100644 index 0000000..5131099 --- /dev/null +++ b/_module/nss/damned_wz4.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedWiz(oPC, 4); +} diff --git a/_module/nss/damned_wz5.nss b/_module/nss/damned_wz5.nss new file mode 100644 index 0000000..9c2e541 --- /dev/null +++ b/_module/nss/damned_wz5.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedWiz(oPC, 5); +} diff --git a/_module/nss/damned_wz6.nss b/_module/nss/damned_wz6.nss new file mode 100644 index 0000000..6a9327e --- /dev/null +++ b/_module/nss/damned_wz6.nss @@ -0,0 +1,7 @@ +#include "m_dragon_n" + +void main() +{ +object oPC = GetPCSpeaker(); +DamnedWiz(oPC, 6); +} diff --git a/_module/nss/dark_bet.nss b/_module/nss/dark_bet.nss new file mode 100644 index 0000000..7205dea --- /dev/null +++ b/_module/nss/dark_bet.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "team_bet", 2); +} diff --git a/_module/nss/darkstarr_death.nss b/_module/nss/darkstarr_death.nss new file mode 100644 index 0000000..4e7bc33 --- /dev/null +++ b/_module/nss/darkstarr_death.nss @@ -0,0 +1,55 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//:://////////////////////////////////// Lucifers mistress / Gate Keeper +#include "spawner" +#include "x0_i0_petrify" +#include "loot" +#include "rank" + +void main() +{ + + + object oPC = GetLastKiller(); + object oMod = GetModule(); + int oExploit = GetLocalInt(oMod, "xcheck"); + int iMode = GetLocalInt(oMod, "gamemode"); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_lm", 0); + SetLocalInt(oMod, "ch_lm", 0); + int iKilled = GetLocalInt(oPC, "iKilled"); + int nInt; + if (oExploit!=1) + { + LastHit(); + DeathStats(oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + FloatingTextStringOnCreature("Victory", oPC); + + SetLocalInt(oPC, "bossdead", 1); + + } + object oTarget= OBJECT_SELF; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + + ExecuteScript("nw_c2_default7", OBJECT_SELF); +} diff --git a/_module/nss/day_tester.nss b/_module/nss/day_tester.nss new file mode 100644 index 0000000..98ae091 --- /dev/null +++ b/_module/nss/day_tester.nss @@ -0,0 +1,32 @@ +#include "x0_i0_petrify" + + +void main() +{ +object oMod=GetModule(); +object oSelf = OBJECT_SELF; +int oTime = GetLocalInt(oSelf, "nightday"); +location lLocation = GetLocation(oSelf); +effect eLight = EffectVisualEffect(VFX_DUR_LIGHT_YELLOW_20); +string sSound = GetTag(oSelf); +object oTarget =GetObjectByTag(sSound); + + if (GetIsDay()==TRUE) + { + AssignCommand(oSelf, PlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oSelf, GetEffectType(eLight)); + oTarget = GetObjectByTag("fire"); + SoundObjectStop(oTarget); + SpeakString("day"); + + } + if ((GetIsNight()==TRUE)||(GetIsDusk()==TRUE)||(GetIsDawn()==TRUE)) + { + + AssignCommand(oSelf, PlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLight, oSelf); + oTarget = GetObjectByTag("fire"); + SoundObjectPlay(oTarget); + SpeakString("dawn/dusk/night"); + } +} diff --git a/_module/nss/dchamp_bet1.nss b/_module/nss/dchamp_bet1.nss new file mode 100644 index 0000000..a41e7a7 --- /dev/null +++ b/_module/nss/dchamp_bet1.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Death Wurm"); +SetLocalInt(oPC, "iOdds", 14); +} diff --git a/_module/nss/dchamp_bet10.nss b/_module/nss/dchamp_bet10.nss new file mode 100644 index 0000000..d8fa97e --- /dev/null +++ b/_module/nss/dchamp_bet10.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Baal: Lord of Destruction"); +SetLocalInt(oPC, "iOdds", 4); +} diff --git a/_module/nss/dchamp_bet11.nss b/_module/nss/dchamp_bet11.nss new file mode 100644 index 0000000..4ec9ae8 --- /dev/null +++ b/_module/nss/dchamp_bet11.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Fallen Disciple"); +SetLocalInt(oPC, "iOdds", 3); +} diff --git a/_module/nss/dchamp_bet12.nss b/_module/nss/dchamp_bet12.nss new file mode 100644 index 0000000..37808c5 --- /dev/null +++ b/_module/nss/dchamp_bet12.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Lord Lucifer"); +SetLocalInt(oPC, "iOdds", 3); +} diff --git a/_module/nss/dchamp_bet2.nss b/_module/nss/dchamp_bet2.nss new file mode 100644 index 0000000..a649737 --- /dev/null +++ b/_module/nss/dchamp_bet2.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Dark Archer"); +SetLocalInt(oPC, "iOdds", 13); +} diff --git a/_module/nss/dchamp_bet3.nss b/_module/nss/dchamp_bet3.nss new file mode 100644 index 0000000..dcc1f4b --- /dev/null +++ b/_module/nss/dchamp_bet3.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Balrog Lord"); +SetLocalInt(oPC, "iOdds", 12); +} diff --git a/_module/nss/dchamp_bet4.nss b/_module/nss/dchamp_bet4.nss new file mode 100644 index 0000000..5b7c247 --- /dev/null +++ b/_module/nss/dchamp_bet4.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Doom Reaver"); +SetLocalInt(oPC, "iOdds", 11); +} diff --git a/_module/nss/dchamp_bet5.nss b/_module/nss/dchamp_bet5.nss new file mode 100644 index 0000000..98c6b46 --- /dev/null +++ b/_module/nss/dchamp_bet5.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "War Demon"); +SetLocalInt(oPC, "iOdds", 10); +} diff --git a/_module/nss/dchamp_bet6.nss b/_module/nss/dchamp_bet6.nss new file mode 100644 index 0000000..019c7ca --- /dev/null +++ b/_module/nss/dchamp_bet6.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Valdar Dragoon"); +SetLocalInt(oPC, "iOdds", 9); +} diff --git a/_module/nss/dchamp_bet7.nss b/_module/nss/dchamp_bet7.nss new file mode 100644 index 0000000..408fdaa --- /dev/null +++ b/_module/nss/dchamp_bet7.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Kamaji Berserker"); +SetLocalInt(oPC, "iOdds", 5); +} diff --git a/_module/nss/dchamp_bet8.nss b/_module/nss/dchamp_bet8.nss new file mode 100644 index 0000000..d2301b8 --- /dev/null +++ b/_module/nss/dchamp_bet8.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Bard Heretic"); +SetLocalInt(oPC, "iOdds", 2); +} diff --git a/_module/nss/dchamp_bet9.nss b/_module/nss/dchamp_bet9.nss new file mode 100644 index 0000000..16f8463 --- /dev/null +++ b/_module/nss/dchamp_bet9.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalString(oPC, "CHbet", "Lucifer's Mistress"); +SetLocalInt(oPC, "iOdds", 6); +} diff --git a/_module/nss/deactivator.nss b/_module/nss/deactivator.nss new file mode 100644 index 0000000..422dc23 --- /dev/null +++ b/_module/nss/deactivator.nss @@ -0,0 +1,30 @@ +void main() +{ +object oMod = GetModule(); +int oS0 = GetLocalInt(oMod, "challenge"); +int oS1 = GetLocalInt(oMod, "sw_hw"); +int oS2 = GetLocalInt(oMod, "sw_dr"); +int oS3 = GetLocalInt(oMod, "sw_bl"); +int oS4 = GetLocalInt(oMod, "sw_pf"); +int oS5 = GetLocalInt(oMod, "sw_df"); +int oS6 = GetLocalInt(oMod, "sw_pm"); +int oS7 = GetLocalInt(oMod, "sw_bm"); +int oS8 = GetLocalInt(oMod, "sw_lm"); +int oS9 = GetLocalInt(oMod, "sw_ll"); +int oS10 = GetLocalInt(oMod, "sw_xx"); + +if ((oS1!=1)&&(oS2!=1)&&(oS3!=1)&&(oS4!=1)&&(oS5!=1)&&(oS6!=1)&& + (oS7!=1)&&(oS8!=1)&&(oS9!=1)&&(oS0!=1)&&(oS10!=1)) + { + SetLocalInt(oMod, "hwar_on", 0); + SetLocalInt(oMod, "in_progress", 0); + ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } + else + { + SetLocalInt(oMod, "in_progress", 1); + ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); + SetLocked(GetObjectByTag("arena_gate"), TRUE); + } +} diff --git a/_module/nss/deactivator2.nss b/_module/nss/deactivator2.nss new file mode 100644 index 0000000..9520255 --- /dev/null +++ b/_module/nss/deactivator2.nss @@ -0,0 +1,43 @@ +#include "spawner" + +void main() +{ +object oMod = GetModule(); +object oPC = GetFirstPC(); +object oMonster; +int oS0 = GetLocalInt(oMod, "challenge"); +int oS1 = GetLocalInt(oMod, "sw_hw"); +int oS2 = GetLocalInt(oMod, "sw_dr"); +int oS3 = GetLocalInt(oMod, "sw_bl"); +int oS4 = GetLocalInt(oMod, "sw_pf"); +int oS5 = GetLocalInt(oMod, "sw_df"); +int oS6 = GetLocalInt(oMod, "sw_pm"); +int oS7 = GetLocalInt(oMod, "sw_bm"); +int oS8 = GetLocalInt(oMod, "sw_lm"); +int oS9 = GetLocalInt(oMod, "sw_ll"); +int oS10 = GetLocalInt(oMod, "sw_xx"); +int iHwar = GetLocalInt(oMod, "hwar_on"); +//Message(0.0, IntToString(GetLocalInt(oMod, "hwar_on")), oPC); +//if (iHwar==1){SetLocked(GetObjectByTag("arena_gate"), TRUE);} + + +oMonster = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC); +if ((oS1!=1)&&(oS2!=1)&&(oS3!=1)&&(oS4!=1)&&(oS5!=1)&&(oS6!=1)&& + /*(oS7!=1)&&*/(oS8!=1)&&(oS9!=1)&&(oS0!=1)&&(oS10!=1)&& + ((!GetIsEnemy(oPC, oMonster))||(oMonster==OBJECT_INVALID))) + { + SetLocalInt(oMod, "in_progress", 0); + ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +else + { + oMonster = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC); + if ((GetIsEnemy(oPC, oMonster))&&(oMonster!=OBJECT_INVALID)) + { + SetLocalInt(oMod, "in_progress", 1); + ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); + SetLocked(GetObjectByTag("arena_gate"), TRUE); + } + } +} diff --git a/_module/nss/deactivator_gate.nss b/_module/nss/deactivator_gate.nss new file mode 100644 index 0000000..d56890b --- /dev/null +++ b/_module/nss/deactivator_gate.nss @@ -0,0 +1,24 @@ +void main() +{ +object oMod = GetModule(); +int oS0 = GetLocalInt(oMod, "challenge"); +int oS1 = GetLocalInt(oMod, "sw_hw"); +int oS2 = GetLocalInt(oMod, "sw_dr"); +int oS3 = GetLocalInt(oMod, "sw_bl"); +int oS4 = GetLocalInt(oMod, "sw_pf"); +int oS5 = GetLocalInt(oMod, "sw_df"); +int oS6 = GetLocalInt(oMod, "sw_pm"); +int oS7 = GetLocalInt(oMod, "sw_bm"); +int oS8 = GetLocalInt(oMod, "sw_lm"); +int oS9 = GetLocalInt(oMod, "sw_ll"); +int oS10 = GetLocalInt(oMod, "sw_xx"); +if ((oS1!=1)&&(oS2!=1)&&(oS3!=1)&&(oS4!=1)&&(oS5!=1)&&(oS6!=1)&& + (oS7!=1)&&(oS8!=1)&&(oS9!=1)&&(oS0!=1)&&(oS10!=1)) + { + SetLocked(OBJECT_SELF, FALSE); + } + else + { + SetLocked(OBJECT_SELF, TRUE); + } +} diff --git a/_module/nss/death_conv.nss b/_module/nss/death_conv.nss new file mode 100644 index 0000000..2ea0d48 --- /dev/null +++ b/_module/nss/death_conv.nss @@ -0,0 +1,122 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 +(and modified by chris meggitt) + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void Unsum2(object oPC) +{ +object oTarget1, oTarget2; + +effect eEffect = EffectVisualEffect(VFX_IMP_UNSUMMON); +oTarget1 = GetObjectByTag("starfall2"); +RemoveHenchman(oPC, oTarget1); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget1)); +DestroyObject(GetObjectByTag("starfall2")); +oTarget2 = GetObjectByTag("diablo"); +RemoveHenchman(oPC, oTarget2); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget2)); +DestroyObject(GetObjectByTag("diablo")); +} + + +void main() +{ +object oMod = GetModule(); +object oPC = GetLastSpeaker(); +object oArea = GetArea(OBJECT_SELF); + +if (!GetIsPC(oPC)) return; + +int oS0 = GetLocalInt(oMod, "challenge"); +int oS1 = GetLocalInt(oMod, "sw_hw"); +int oS2 = GetLocalInt(oMod, "sw_dr"); +int oS3 = GetLocalInt(oMod, "sw_bl"); +int oS4 = GetLocalInt(oMod, "sw_pf"); +int oS5 = GetLocalInt(oMod, "sw_df"); +int oS6 = GetLocalInt(oMod, "sw_pm"); +int oS7 = GetLocalInt(oMod, "sw_bm"); +int oS8 = GetLocalInt(oMod, "sw_lm"); +int oS9 = GetLocalInt(oMod, "sw_ll"); +int oS10 = GetLocalInt(oMod, "sw_xx"); +int nInt = GetLocalInt(oMod, "challenge"); +int nInt2 = GetLocalInt(oMod, "duel_on"); +int oChest = GetLocalInt(oMod, "chest_here"); +int oGameMode = GetLocalInt(oMod, "gamemode"); +int oModMode = GetLocalInt(oMod, "mod_mode"); +int iHwar = GetLocalInt(oMod, "hwar_on"); +int iStatus = GetLocalInt(oMod, "war_won"); + +if (oModMode!=1) + { + if (iHwar==1) + { + if (iStatus!=1) + { + SpeakString("Wait until after the Holy War!"); + return; + } + else if (iStatus==1) + { + SpeakString("Clear the arena first please!"); + return; + } + } + if (oChest!=1) + { + if ((nInt!=1)&&(nInt2!=1)&&(oS1!=1)&&(oS2!=1)&&(oS3!=1) + &&(oS4!=1)&&(oS5!=1)&&(oS6!=1)&&(oS7!=1)&&(oS8!=1) + &&(oS9!=1)&&(oS0!=1)&&(oS10!=1)) + { + object oMonster = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC); + if ((!GetIsEnemy(oPC, oMonster))||(oMonster==OBJECT_INVALID)) + { + if (oGameMode==1) + { + SetLocalInt(oPC, "npc_duel2", 0); + SetLocalInt(oPC, "npc_duel", 0); + PlayVoiceChat(VOICE_CHAT_HELLO, OBJECT_SELF); + ActionStartConversation(oPC); + } + else + { + SetLocalInt(oPC, "npc_duel2", 0); + SetLocalInt(oPC, "npc_duel", 0); + PlayVoiceChat(VOICE_CHAT_HELLO, OBJECT_SELF); + ActionStartConversation(oPC); + } + } + else + { + SpeakString("You should finish your battle first!"); + return; + } + } + else + { + if (nInt==1) + { + SpeakString("You should finish your super challenge first!"); + } + else if (nInt2==1) + { + SpeakString("You should finish your duel challenge first!"); + } + else + { + SpeakString("You should finish your battle first!"); + } + } + } + else + { + SpeakString("You must loot your reward chest first!"); + } + } + else + { + SpeakString("I don't deal with players in campaign manager mode!"); + } +} diff --git a/_module/nss/death_imbue.nss b/_module/nss/death_imbue.nss new file mode 100644 index 0000000..74e058e --- /dev/null +++ b/_module/nss/death_imbue.nss @@ -0,0 +1,8 @@ +#include "immune_imbue" +#include "spawner" +void main() +{ + +PCEffect(2.5,VFX_IMP_DEATH, OBJECT_SELF); +ImmuneImbue(IP_CONST_IMMUNITYMISC_DEATH_MAGIC); +} diff --git a/_module/nss/deathdeath.nss b/_module/nss/deathdeath.nss new file mode 100644 index 0000000..adeb600 --- /dev/null +++ b/_module/nss/deathdeath.nss @@ -0,0 +1,43 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// +#include "rank" +#include "spawner" +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oTarget= OBJECT_SELF; + int nInt; + int iKilled = GetLocalInt(oPC, "iKilled"); + LastHit(); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +} diff --git a/_module/nss/deathdeath1.nss b/_module/nss/deathdeath1.nss new file mode 100644 index 0000000..d77b47f --- /dev/null +++ b/_module/nss/deathdeath1.nss @@ -0,0 +1,86 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//:://///////////////////////////////Balrog Lord +#include "loot" +#include "rank" +#include "spawner" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + SetLocalInt(oMod, "sw_bl", 0); + SetLocalInt(oMod, "ch_bl", 0); + SetLocalInt(oMod, "gr_xx", 0); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + int oExploit = GetLocalInt(oMod, "xcheck"); + + + if (oExploit!=1) + { + LastHit(); + DeathStats(oPC); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + if (GetLocalInt(oMod, "nordock")!=1) + { + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + + GetRank(oPC); + + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + SetLocalInt(oPC, "balrogdead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 3500); + } + } + } + else + { + SetIsDestroyable(FALSE, TRUE, FALSE); + ExecuteScript("nw_c2_default7", OBJECT_SELF); + } + + int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); + +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +if (GetLocalInt(oMod, "nordock")!=1) + { + PCEffect(0.1, VFX_FNF_FIRESTORM, OBJECT_SELF); + } +else + { + PCEffect(0.1, VFX_IMP_DEATH, OBJECT_SELF); + } + + +} diff --git a/_module/nss/deathdeath2.nss b/_module/nss/deathdeath2.nss new file mode 100644 index 0000000..cdd3c8d --- /dev/null +++ b/_module/nss/deathdeath2.nss @@ -0,0 +1,72 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::///////////////////////Valdar Dragon +#include "x0_i0_petrify" +#include "loot" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + SetLocalInt(oMod, "sw_df", 0); + SetLocalInt(oMod, "ch_df", 0); + SetLocalInt(oMod, "gr_xx", 0); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + + int nInt; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + SetLocalInt(oPC, "hdfienddead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + if (GetLocalInt(oMod, "nordock")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 7000); + } + } + } + int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +} diff --git a/_module/nss/deathdeath2a.nss b/_module/nss/deathdeath2a.nss new file mode 100644 index 0000000..ca46b66 --- /dev/null +++ b/_module/nss/deathdeath2a.nss @@ -0,0 +1,75 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::///////////////////////////////////Dark Reaver / Horodrim +#include "x0_i0_petrify" +#include "loot" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + SetLocalInt(oMod, "sw_dr", 0); + SetLocalInt(oMod, "ch_dr", 0); + SetLocalInt(oMod, "gr_xx", 0); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + LastHit(); + DeathStats(oPC); + SetLocalInt(oPC, "doppledead", 1); + if (GetLocalInt(oMod, "nordock")!=1) + { + GetRank(oPC); + + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 4500); + } + } + } +int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } + int nInt; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + +} diff --git a/_module/nss/deathdeath3.nss b/_module/nss/deathdeath3.nss new file mode 100644 index 0000000..9fa5e00 --- /dev/null +++ b/_module/nss/deathdeath3.nss @@ -0,0 +1,71 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//:://///////////////////////Bard Heratic Death +#include "loot" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + SetLocalInt(oMod, "sw_pm", 0); + SetLocalInt(oMod, "ch_pm", 0); + SetLocalInt(oMod, "gr_xx", 0); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + + int nInt; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + SetLocalInt(oPC, "paledead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + if (GetLocalInt(oMod, "nordock")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 8500); + } + } + } + int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +} diff --git a/_module/nss/deathpotion.nss b/_module/nss/deathpotion.nss new file mode 100644 index 0000000..bf10e98 --- /dev/null +++ b/_module/nss/deathpotion.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetItemActivator(); +effect eEffect= EffectDeath(); +ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect, oPC); +} diff --git a/_module/nss/debug_treasure.nss b/_module/nss/debug_treasure.nss new file mode 100644 index 0000000..4b20a2e --- /dev/null +++ b/_module/nss/debug_treasure.nss @@ -0,0 +1,11 @@ +#include "loot" + +void main() +{ +object oPC = GetLastKiller(); +if (oPC==OBJECT_INVALID) +{ +TombSpawn(OBJECT_SELF, oPC); +CreateGold(OBJECT_SELF, 20000); +} +} diff --git a/_module/nss/debug_vars.nss b/_module/nss/debug_vars.nss new file mode 100644 index 0000000..deb6b2a --- /dev/null +++ b/_module/nss/debug_vars.nss @@ -0,0 +1,15 @@ +void main() +{ +object oPC = GetLastUsedBy(); +SetLocalInt(oPC, "luciferdead",1); +SetLocalInt(oPC, "starfall_dead",1); +SetLocalInt(oPC, "d1_complete",1); +SetLocalInt(oPC, "d2_complete",1); +SetLocalInt(oPC, "d2a_complete",1); +SetLocalInt(oPC, "d3_complete",1); +SetLocalInt(oPC, "d4_complete",1); +SetLocalInt(oPC, "d5_complete",1); +FloatingTextStringOnCreature("** Cheat Mode Activated **", oPC); +SendMessageToPC(oPC, "Final cutscene will initiate when you next speak to your MC"); +PlaySound("as_cv_gongring3"); +} diff --git a/_module/nss/debuggingrod.nss b/_module/nss/debuggingrod.nss new file mode 100644 index 0000000..5ecdfdc --- /dev/null +++ b/_module/nss/debuggingrod.nss @@ -0,0 +1,53 @@ +#include "rank" +#include "eradicate" + +void main() +{ +object oMod = GetModule(); +object oPC = GetItemActivator(); + + int iKilled = GetLocalInt (oPC,"iKilled"); + SetLocalInt(oMod, "d1", 0); + SetLocalInt(oMod, "d2", 0); + SetLocalInt(oMod, "d2a", 0); + SetLocalInt(oMod, "d3", 0); + SetLocalInt(oMod, "d4", 0); + SetLocalInt(oMod, "d5", 0); + SetLocalInt(oMod, "sw_hw", 0); + SetLocalInt(oMod, "sw_dr", 0); + SetLocalInt(oMod, "sw_bl", 0); + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "sw_df", 0); + SetLocalInt(oMod, "sw_pm", 0); + SetLocalInt(oMod, "sw_bm", 0); + SetLocalInt(oMod, "sw_lm", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oMod, "ch_hw", 0); + SetLocalInt(oMod, "ch_dr", 0); + SetLocalInt(oMod, "ch_bl", 0); + SetLocalInt(oMod, "ch_pf", 0); + SetLocalInt(oMod, "ch_df", 0); + SetLocalInt(oMod, "ch_pm", 0); + SetLocalInt(oMod, "ch_bm", 0); + SetLocalInt(oMod, "ch_lm", 0); + SetLocalInt(oMod, "ch_ll", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "challenge", 0); + AssignCommand(oPC, PlaySound("sps_darkness")); + SetLocalInt(oPC, "doppledead", 1); + SetLocalInt(oPC, "pitfienddead", 1); + SetLocalInt(oPC, "wurmdead", 1); + SetLocalInt(oPC, "lorddead", 1); + SetLocalInt(oPC, "paledead", 1); + SetLocalInt(oPC, "luciferdead", 1); + SetLocalInt(oPC, "balrogdead", 1); + SetLocalInt(oPC, "hdfienddead", 1); + SetLocalInt(oPC, "bossdead", 1); + SetLocalInt(oPC, "marilithdead", 1); + //++iKilled; + //SetLocalInt (oPC,"iKilled", iKilled); + Eradicate(oPC); + //DelayCommand(3.0, GetRank(oPC)); +} diff --git a/_module/nss/debugrod.nss b/_module/nss/debugrod.nss new file mode 100644 index 0000000..cf69f83 --- /dev/null +++ b/_module/nss/debugrod.nss @@ -0,0 +1,53 @@ +#include "rank" +#include "eradicate" + +void main() +{ +object oMod = GetModule(); +object oPC = GetItemActivator(); + + int iKilled = GetLocalInt (oPC,"iKilled"); + SetLocalInt(oMod, "d1", 0); + SetLocalInt(oMod, "d2", 0); + SetLocalInt(oMod, "d2a", 0); + SetLocalInt(oMod, "d3", 0); + SetLocalInt(oMod, "d4", 0); + SetLocalInt(oMod, "d5", 0); + SetLocalInt(oMod, "sw_hw", 0); + SetLocalInt(oMod, "sw_dr", 0); + SetLocalInt(oMod, "sw_bl", 0); + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "sw_df", 0); + SetLocalInt(oMod, "sw_pm", 0); + SetLocalInt(oMod, "sw_bm", 0); + SetLocalInt(oMod, "sw_lm", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oMod, "ch_hw", 0); + SetLocalInt(oMod, "ch_dr", 0); + SetLocalInt(oMod, "ch_bl", 0); + SetLocalInt(oMod, "ch_pf", 0); + SetLocalInt(oMod, "ch_df", 0); + SetLocalInt(oMod, "ch_pm", 0); + SetLocalInt(oMod, "ch_bm", 0); + SetLocalInt(oMod, "ch_lm", 0); + SetLocalInt(oMod, "ch_ll", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "challenge", 0); + AssignCommand(oPC, PlaySound("sps_darkness")); + SetLocalInt(oPC, "doppledead", 1); + SetLocalInt(oPC, "pitfienddead", 1); + SetLocalInt(oPC, "wurmdead", 1); + SetLocalInt(oPC, "lorddead", 1); + SetLocalInt(oPC, "paledead", 1); + SetLocalInt(oPC, "luciferdead", 1); + SetLocalInt(oPC, "balrogdead", 1); + SetLocalInt(oPC, "hdfienddead", 1); + SetLocalInt(oPC, "bossdead", 1); + SetLocalInt(oPC, "marilithdead", 1); + ++iKilled; + SetLocalInt (oPC,"iKilled", iKilled); + Eradicate(oPC); + DelayCommand(3.0, GetRank(oPC)); +} diff --git a/_module/nss/defscroll_shop.nss b/_module/nss/defscroll_shop.nss new file mode 100644 index 0000000..a672e44 --- /dev/null +++ b/_module/nss/defscroll_shop.nss @@ -0,0 +1,21 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +oTarget = GetObjectByTag("defscroll_shop"); +PlaySound("it_paper"); +OpenStore(oTarget, oPC, 0, 0); + +} + diff --git a/_module/nss/deity_abort.nss b/_module/nss/deity_abort.nss new file mode 100644 index 0000000..0c0b4c4 --- /dev/null +++ b/_module/nss/deity_abort.nss @@ -0,0 +1,16 @@ +void main() +{ +object oPC = GetFirstPC(); +int nInt = GetLocalInt(oPC, "shrine"); +while (GetIsObjectValid(oPC)) + { + if(nInt==1) + { + SetLocalInt(oPC, "shrine", 1); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(0.2, AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_BOW))); + } + + oPC = GetNextPC(); + } +} diff --git a/_module/nss/deity_donate1.nss b/_module/nss/deity_donate1.nss new file mode 100644 index 0000000..0936049 --- /dev/null +++ b/_module/nss/deity_donate1.nss @@ -0,0 +1,8 @@ + + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "donate_amount", 200000); + +} diff --git a/_module/nss/deity_donate1a.nss b/_module/nss/deity_donate1a.nss new file mode 100644 index 0000000..2b9ae82 --- /dev/null +++ b/_module/nss/deity_donate1a.nss @@ -0,0 +1,7 @@ + + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "donate_amount", 50000); +} diff --git a/_module/nss/deity_donate2.nss b/_module/nss/deity_donate2.nss new file mode 100644 index 0000000..820cd72 --- /dev/null +++ b/_module/nss/deity_donate2.nss @@ -0,0 +1,7 @@ + + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "donate_amount", 500000); +} diff --git a/_module/nss/deity_donate3.nss b/_module/nss/deity_donate3.nss new file mode 100644 index 0000000..767ff94 --- /dev/null +++ b/_module/nss/deity_donate3.nss @@ -0,0 +1,35 @@ +#include "donate" + +void main() +{ +object oPC = GetPCSpeaker(); +int iAmt = GetLocalInt(oPC, "donate_amount"); +switch (iAmt) + { + case 50000: + { + SetLocalInt(oPC, "deity_adjust", 2); + SetLocalInt(oPC, "dn_switch", 1); + Donate(oPC); + }break; + case 200000: + { + SetLocalInt(oPC, "deity_adjust", 5); + SetLocalInt(oPC, "dn_switch", 2); + Donate(oPC); + }break; + case 500000: + { + SetLocalInt(oPC, "deity_adjust", 10); + SetLocalInt(oPC, "dn_switch", 3); + Donate(oPC); + }break; + case 1000000: + { + SetLocalInt(oPC, "deity_adjust", 15); + SetLocalInt(oPC, "dn_switch", 4); + Donate(oPC); + }break; + + } +} diff --git a/_module/nss/deity_donate4.nss b/_module/nss/deity_donate4.nss new file mode 100644 index 0000000..1acd25a --- /dev/null +++ b/_module/nss/deity_donate4.nss @@ -0,0 +1,7 @@ + + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "donate_amount", 1000000); +} diff --git a/_module/nss/deity_start.nss b/_module/nss/deity_start.nss new file mode 100644 index 0000000..15c31aa --- /dev/null +++ b/_module/nss/deity_start.nss @@ -0,0 +1,14 @@ +#include "in_g_cutscene" + +void main() +{ +object oPC = GetLastUsedBy(); +object oTarget = GetWaypointByTag("kneel_wp"); +effect eEffect = EffectVisualEffect(VFX_IMP_SPELL_MANTLE_USE); +DelayCommand(3.0, ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC)); +PlaySound("sco_megrdholy01"); +AssignCommand(OBJECT_SELF, ActionStartConversation(oPC, "deity")); +GestaltFace(0.0, oPC, 0.0, 2, oTarget); +DelayCommand(2.0, AssignCommand(oPC, PlayAnimation(ANIMATION_LOOPING_MEDITATE, 1.0, 500.0))); +SetLocalInt(oPC, "shrine", 1); +} diff --git a/_module/nss/deity_token.nss b/_module/nss/deity_token.nss new file mode 100644 index 0000000..0e7f87f --- /dev/null +++ b/_module/nss/deity_token.nss @@ -0,0 +1,6 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + SetCustomToken(106, GetDeity(oPC)); + return TRUE; +} diff --git a/_module/nss/delevel.nss b/_module/nss/delevel.nss new file mode 100644 index 0000000..5dea612 --- /dev/null +++ b/_module/nss/delevel.nss @@ -0,0 +1,8 @@ +void main() +{ + object oPC = GetPCSpeaker(); + int nLevel = GetHitDice(oPC); //Get level + int nXP = GetXP(oPC); //Save XP so we can restore it afterwards + int nDelevelXP = (nLevel-1) * (nLevel - 2) * 500; //Work out how much XP will delevel the PC + SetXP(oPC, nDelevelXP); //Set that level +} diff --git a/_module/nss/dex_imbue.nss b/_module/nss/dex_imbue.nss new file mode 100644 index 0000000..8b6f91d --- /dev/null +++ b/_module/nss/dex_imbue.nss @@ -0,0 +1,6 @@ +#include "ability_imbue" + +void main() +{ +AbilityImbue(IP_CONST_ABILITY_DEX); +} diff --git a/_module/nss/disc_imbue.nss b/_module/nss/disc_imbue.nss new file mode 100644 index 0000000..1668404 --- /dev/null +++ b/_module/nss/disc_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_DISCIPLINE, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/div_got.nss b/_module/nss/div_got.nss new file mode 100644 index 0000000..20be139 --- /dev/null +++ b/_module/nss/div_got.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName div_got +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/12/2004 2:05:14 AM +//::////////////////////////////////////////////// +void main() +{ + // Set the variables + SetLocalInt(GetPCSpeaker(), "div_got", 1); + +} diff --git a/_module/nss/divine_ammo.nss b/_module/nss/divine_ammo.nss new file mode 100644 index 0000000..55045d7 --- /dev/null +++ b/_module/nss/divine_ammo.nss @@ -0,0 +1,39 @@ +//:://///////////////////////////////////////////// +//:: FileName divine_ammo +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/12/2004 7:17:54 PM +//::////////////////////////////////////////////// +void main() +{ +object oMod = GetModule(); +object oPC = GetPCSpeaker(); +int oMode = GetLocalInt(oMod, "gamemode"); + object oItem3, oItem2, oItem1, oItem4; + oItem3 = GetItemPossessedBy(oPC, "divine_note"); + oItem2 = GetItemPossessedBy(oPC, "div_key"); + oItem1 = GetItemPossessedBy(oPC, "divine_talisman2"); + oItem4 = GetItemPossessedBy(oPC, "dark_talisman2"); +if (GetIsObjectValid(oItem2)) + DestroyObject(oItem2); +if (GetIsObjectValid(oItem3)) + DestroyObject(oItem3); + if (GetIsObjectValid(oItem1)) + DestroyObject(oItem1); + if (GetIsObjectValid(oItem4)) + DestroyObject(oItem4); + + if (oMode!=1) + CreateItemOnObject("divine_talisman", oPC); +else + CreateItemOnObject("dark_talisman", oPC); + + + SetLocalInt(GetPCSpeaker(), "ranged_div", 1); + object oStore = GetNearestObjectByTag("divine_ammo"); + if(GetObjectType(oStore) == OBJECT_TYPE_STORE) + OpenStore(oStore, GetPCSpeaker()); + else + ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK); +} diff --git a/_module/nss/divine_ammo2.nss b/_module/nss/divine_ammo2.nss new file mode 100644 index 0000000..b53c1d9 --- /dev/null +++ b/_module/nss/divine_ammo2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName divine_ammo +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/12/2004 7:17:54 PM +//::////////////////////////////////////////////// +void main() +{ + + SetLocalInt(GetPCSpeaker(), "ranged_div", 1); + object oStore = GetNearestObjectByTag("divine_ammo2"); + if(GetObjectType(oStore) == OBJECT_TYPE_STORE) + OpenStore(oStore, GetPCSpeaker()); + else + ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK); +} diff --git a/_module/nss/divine_imbue.nss b/_module/nss/divine_imbue.nss new file mode 100644 index 0000000..3cf094c --- /dev/null +++ b/_module/nss/divine_imbue.nss @@ -0,0 +1,8 @@ +#include "imbue_include" +void main() +{ +SetLocalInt(GetPCSpeaker(), "dfire_ldb", 1); +ImbueWeapon(VFX_IMP_GOOD_HELP, IP_CONST_DAMAGETYPE_DIVINE); +} + + diff --git a/_module/nss/divine_imbue_arm.nss b/_module/nss/divine_imbue_arm.nss new file mode 100644 index 0000000..38356eb --- /dev/null +++ b/_module/nss/divine_imbue_arm.nss @@ -0,0 +1,8 @@ +#include "imbue_include" +void main() +{ + +ImbueArmour(VFX_FNF_SUNBEAM, IP_CONST_DAMAGETYPE_DIVINE); +} + + diff --git a/_module/nss/divine_ready.nss b/_module/nss/divine_ready.nss new file mode 100644 index 0000000..003b229 --- /dev/null +++ b/_module/nss/divine_ready.nss @@ -0,0 +1,25 @@ +//:://///////////////////////////////////////////// +//:: FileName divine_ready +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 6/12/2004 11:48:47 PM +//::////////////////////////////////////////////// +#include "nw_i0_tool" + +int StartingConditional() +{ + + // Make sure the PC speaker has these items in their inventory + if(!HasItem(GetPCSpeaker(), "divine_note")) + return FALSE; + if(!GetLocalInt(GetPCSpeaker(), "div_got")!=1) + return FALSE; + if(!GetLocalInt(GetPCSpeaker(), "lorddead")==1) + return FALSE; + if(!GetLocalInt(GetPCSpeaker(), "div_first")==1) + return FALSE; + + + return TRUE; +} diff --git a/_module/nss/divine_ready1.nss b/_module/nss/divine_ready1.nss new file mode 100644 index 0000000..f0b1832 --- /dev/null +++ b/_module/nss/divine_ready1.nss @@ -0,0 +1,23 @@ +//:://///////////////////////////////////////////// +//:: FileName divine_ready +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 6/12/2004 11:48:47 PM +//::////////////////////////////////////////////// +#include "nw_i0_tool" + +int StartingConditional() +{ + + // Make sure the PC speaker has these items in their inventory + if(!HasItem(GetPCSpeaker(), "divine_note")) + return FALSE; + if(!HasItem(GetPCSpeaker(), "div_key")) + return FALSE; + + + + + return TRUE; +} diff --git a/_module/nss/divine_ready1a.nss b/_module/nss/divine_ready1a.nss new file mode 100644 index 0000000..5d9024d --- /dev/null +++ b/_module/nss/divine_ready1a.nss @@ -0,0 +1,26 @@ +//:://///////////////////////////////////////////// +//:: FileName divine_ready +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 6/12/2004 11:48:47 PM +//::////////////////////////////////////////////// +#include "nw_i0_tool" + +int StartingConditional() +{ + + // Make sure the PC speaker has these items in their inventory + if(!HasItem(GetPCSpeaker(), "divine_note")) + return FALSE; + if(!HasItem(GetPCSpeaker(), "glucifer2")) + return FALSE; + if(!GetLocalInt(GetPCSpeaker(), "div_got")!=1) + return FALSE; + if(!GetLocalInt(GetPCSpeaker(), "lorddead")==1) + return FALSE; + + + + return TRUE; +} diff --git a/_module/nss/divine_ready1b.nss b/_module/nss/divine_ready1b.nss new file mode 100644 index 0000000..eed9d5c --- /dev/null +++ b/_module/nss/divine_ready1b.nss @@ -0,0 +1,29 @@ +//:://///////////////////////////////////////////// +//:: FileName divine_ready +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 6/12/2004 11:48:47 PM +//::////////////////////////////////////////////// +#include "nw_i0_tool" + +int StartingConditional() +{ + + // Make sure the PC speaker has these items in their inventory + if(!HasItem(GetPCSpeaker(), "divine_note")) + return FALSE; + if(!HasItem(GetPCSpeaker(), "div_key")) + return FALSE; + if(!HasItem(GetPCSpeaker(), "lucifer2")) + return FALSE; + if(!GetLocalInt(GetPCSpeaker(), "div_got")!=1) + return FALSE; + if(!GetLocalInt(GetPCSpeaker(), "lorddead")==1) + return FALSE; + if(!GetLocalInt(GetPCSpeaker(), "final_Sspoke")==1) + return FALSE; + + + return TRUE; +} diff --git a/_module/nss/divine_ready1c.nss b/_module/nss/divine_ready1c.nss new file mode 100644 index 0000000..47ae366 --- /dev/null +++ b/_module/nss/divine_ready1c.nss @@ -0,0 +1,21 @@ +//:://///////////////////////////////////////////// +//:: FileName divine_ready +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 6/12/2004 11:48:47 PM +//::////////////////////////////////////////////// +#include "nw_i0_tool" + +int StartingConditional() +{ + + // Make sure the PC speaker has these items in their inventory + if(!HasItem(GetPCSpeaker(), "divine_note")) + return FALSE; + if(!HasItem(GetPCSpeaker(), "div_key")) + return FALSE; + + + return TRUE; +} diff --git a/_module/nss/divset.nss b/_module/nss/divset.nss new file mode 100644 index 0000000..81daf30 --- /dev/null +++ b/_module/nss/divset.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "div_first", 1); +} diff --git a/_module/nss/dodge_imbue.nss b/_module/nss/dodge_imbue.nss new file mode 100644 index 0000000..5d05f98 --- /dev/null +++ b/_module/nss/dodge_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_DODGE); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/doeffect.nss b/_module/nss/doeffect.nss new file mode 100644 index 0000000..3e63e71 --- /dev/null +++ b/_module/nss/doeffect.nss @@ -0,0 +1,16 @@ +void DoEffect(float oDelay, int oEffect, string oWaypoint) +{ +object oTarget; +oTarget = GetObjectByTag(oWaypoint); +int nInt; +nInt = GetObjectType(oTarget); +effect eEffect; +eEffect = EffectVisualEffect(oEffect); +if (nInt != OBJECT_TYPE_WAYPOINT) + DelayCommand(oDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, + eEffect, oTarget)); +else + DelayCommand(oDelay, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oTarget))); +} +void main () {} diff --git a/_module/nss/donate.nss b/_module/nss/donate.nss new file mode 100644 index 0000000..beb2893 --- /dev/null +++ b/_module/nss/donate.nss @@ -0,0 +1,82 @@ +#include "spawner" + +void BallsOff() +{ +object oWP1 = GetObjectByTag("eff1"), + oWP2 = GetObjectByTag("eff2"), + oWP3 = GetObjectByTag("eff3"), + oWP4 = GetObjectByTag("eff4"), + oWP5 = GetObjectByTag("eff5"), + oWP6 = GetObjectByTag("eff6"), + oWP7 = GetObjectByTag("eff7"), + oWP8 = GetObjectByTag("eff8"); +AssignCommand(oWP1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP3, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP4, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP5, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP6, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP7, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP8, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +} + +void Donate(object oPC) +{ +object oCaster; +object oTarget; +int iAmt = GetLocalInt(oPC, "donate_amount"); +TakeGoldFromCreature(iAmt, oPC); +PlaySound("it_coins"); +SetLocalInt(oPC, "donate_amount", 0); +object oOrb = GetObjectByTag("deity_ball"), + oWP1 = GetObjectByTag("eff1"), + oWP2 = GetObjectByTag("eff2"), + oWP3 = GetObjectByTag("eff3"), + oWP4 = GetObjectByTag("eff4"), + oWP5 = GetObjectByTag("eff5"), + oWP6 = GetObjectByTag("eff6"), + oWP7 = GetObjectByTag("eff7"), + oWP8 = GetObjectByTag("eff8"), + oWP9 = GetWaypointByTag("div_lig"); + +location lLocation = GetLocation(oWP9); + +effect eEffect = EffectVisualEffect(VFX_IMP_LIGHTNING_M); +int eEffect2 = VFX_IMP_IMPROVE_ABILITY_SCORE, + eEffect3 = VFX_IMP_SUPER_HEROISM; + + +oCaster = oOrb; +AssignCommand(oWP1, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP2, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP3, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP4, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP5, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP6, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP7, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP8, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); + +PCEffect(1.5,eEffect2, oWP1); +PCEffect(1.7,eEffect2, oWP2); +PCEffect(1.9,eEffect2, oWP3); +PCEffect(2.1,eEffect2, oWP4); +PCEffect(2.3,eEffect2, oWP5); +PCEffect(2.5,eEffect2, oWP6); +PCEffect(2.7,eEffect2, oWP7); +PCEffect(2.9,eEffect2, oWP8); +PCEffect(3.1,eEffect3, oWP1); +PCEffect(3.3,eEffect3, oWP2); +PCEffect(3.5,eEffect3, oWP3); +PCEffect(3.7,eEffect3, oWP4); +PCEffect(3.9,eEffect3, oWP5); +PCEffect(4.1,eEffect3, oWP6); +PCEffect(4.3,eEffect3, oWP7); +PCEffect(4.5,eEffect3, oWP8); + +DelayCommand(4.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, lLocation)); +DelayCommand(6.0, FloatingTextStringOnCreature(GetDeity(oPC)+" is more likley to hear your prayers now", oPC)); +DelayCommand(6.5, BallsOff()); + +} + +//void main(){} diff --git a/_module/nss/donate2.nss b/_module/nss/donate2.nss new file mode 100644 index 0000000..92b900f --- /dev/null +++ b/_module/nss/donate2.nss @@ -0,0 +1,82 @@ +#include "spawner" + +void BallsOff2() +{ +object oWP1 = GetObjectByTag("eff1"), + oWP2 = GetObjectByTag("eff2"), + oWP3 = GetObjectByTag("eff3"), + oWP4 = GetObjectByTag("eff4"), + oWP5 = GetObjectByTag("eff5"), + oWP6 = GetObjectByTag("eff6"), + oWP7 = GetObjectByTag("eff7"), + oWP8 = GetObjectByTag("eff8"); +AssignCommand(oWP1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP3, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP4, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP5, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP6, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP7, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oWP8, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +} + +void Pledge(object oPC) +{ +object oCaster; +object oTarget; +int iAmt = GetLocalInt(oPC, "donate_amount"); +TakeGoldFromCreature(iAmt, oPC); +PlaySound("it_coins"); +SetLocalInt(oPC, "donate_amount", 0); +object oOrb = GetObjectByTag("deity_ball"), + oWP1 = GetObjectByTag("eff1"), + oWP2 = GetObjectByTag("eff2"), + oWP3 = GetObjectByTag("eff3"), + oWP4 = GetObjectByTag("eff4"), + oWP5 = GetObjectByTag("eff5"), + oWP6 = GetObjectByTag("eff6"), + oWP7 = GetObjectByTag("eff7"), + oWP8 = GetObjectByTag("eff8"), + oWP9 = GetWaypointByTag("div_lig"); + +location lLocation = GetLocation(oWP9); + +effect eEffect = EffectVisualEffect(VFX_IMP_LIGHTNING_M); +int eEffect2 = VFX_IMP_IMPROVE_ABILITY_SCORE, + eEffect3 = VFX_IMP_SUPER_HEROISM; + + +oCaster = oOrb; +AssignCommand(oWP1, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP2, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP3, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP4, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP5, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP6, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP7, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oWP8, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); + +PCEffect(1.5,eEffect2, oWP1); +PCEffect(1.7,eEffect2, oWP2); +PCEffect(1.9,eEffect2, oWP3); +PCEffect(2.1,eEffect2, oWP4); +PCEffect(2.3,eEffect2, oWP5); +PCEffect(2.5,eEffect2, oWP6); +PCEffect(2.7,eEffect2, oWP7); +PCEffect(2.9,eEffect2, oWP8); +PCEffect(3.1,eEffect3, oWP1); +PCEffect(3.3,eEffect3, oWP2); +PCEffect(3.5,eEffect3, oWP3); +PCEffect(3.7,eEffect3, oWP4); +PCEffect(3.9,eEffect3, oWP5); +PCEffect(4.1,eEffect3, oWP6); +PCEffect(4.3,eEffect3, oWP7); +PCEffect(4.5,eEffect3, oWP8); + +DelayCommand(4.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, lLocation)); +DelayCommand(6.0, FloatingTextStringOnCreature(GetDeity(oPC)+" is more likley to hear your prayers now", oPC)); +DelayCommand(6.5, BallsOff2()); + +} + +//void main(){} diff --git a/_module/nss/donation_recieve.nss b/_module/nss/donation_recieve.nss new file mode 100644 index 0000000..0f7befb --- /dev/null +++ b/_module/nss/donation_recieve.nss @@ -0,0 +1,14 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + int iAmount = GetLocalInt(oPC, "donate_amount"); + if (!(GetGold(oPC) < iAmount)) return FALSE; + + return TRUE; +} diff --git a/_module/nss/done_1.nss b/_module/nss/done_1.nss new file mode 100644 index 0000000..193ce15 --- /dev/null +++ b/_module/nss/done_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "done_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/done_1a.nss b/_module/nss/done_1a.nss new file mode 100644 index 0000000..d8a43ae --- /dev/null +++ b/_module/nss/done_1a.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "done_1a") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/door_msg.nss b/_module/nss/door_msg.nss new file mode 100644 index 0000000..3cd90b1 --- /dev/null +++ b/_module/nss/door_msg.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetClickingObject(); +FloatingTextStringOnCreature("Only avalible in campaign manager mode", oPC); +} diff --git a/_module/nss/dred_imbue_1.nss b/_module/nss/dred_imbue_1.nss new file mode 100644 index 0000000..95f11a4 --- /dev/null +++ b/_module/nss/dred_imbue_1.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "done_1", 1); +DamageReduction(1,1); +} diff --git a/_module/nss/dred_imbue_1a.nss b/_module/nss/dred_imbue_1a.nss new file mode 100644 index 0000000..7980b59 --- /dev/null +++ b/_module/nss/dred_imbue_1a.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "done_1a", 1); +SpellResBonus(1); +} diff --git a/_module/nss/dred_imbue_2.nss b/_module/nss/dred_imbue_2.nss new file mode 100644 index 0000000..7f349ca --- /dev/null +++ b/_module/nss/dred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "done_2", 1); +DamageReduction(2, 2); +} diff --git a/_module/nss/dred_imbue_2a.nss b/_module/nss/dred_imbue_2a.nss new file mode 100644 index 0000000..ecc819e --- /dev/null +++ b/_module/nss/dred_imbue_2a.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "done_2a", 1); +SpellResBonus(2); +} diff --git a/_module/nss/dred_imbue_3.nss b/_module/nss/dred_imbue_3.nss new file mode 100644 index 0000000..260a86e --- /dev/null +++ b/_module/nss/dred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "done_3", 1); +DamageReduction(3,3); +} diff --git a/_module/nss/dred_imbue_3a.nss b/_module/nss/dred_imbue_3a.nss new file mode 100644 index 0000000..0a0590b --- /dev/null +++ b/_module/nss/dred_imbue_3a.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "done_3a", 1); +SetLocalInt(oPC, "max_spell", 1); +SpellResBonus(3); +} diff --git a/_module/nss/dred_imbue_4.nss b/_module/nss/dred_imbue_4.nss new file mode 100644 index 0000000..6f54117 --- /dev/null +++ b/_module/nss/dred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "done_4", 1); +DamageReduction(4,4); +} diff --git a/_module/nss/dred_imbue_5.nss b/_module/nss/dred_imbue_5.nss new file mode 100644 index 0000000..1284f36 --- /dev/null +++ b/_module/nss/dred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "done_5", 1); +SetLocalInt(oPC, "max_reduction", 1); +DamageReduction(5,5); +} diff --git a/_module/nss/druid_slot_imbue.nss b/_module/nss/druid_slot_imbue.nss new file mode 100644 index 0000000..8c995b4 --- /dev/null +++ b/_module/nss/druid_slot_imbue.nss @@ -0,0 +1,6 @@ +#include "spellslot_imbue" + +void main() +{ +SpellSlot(IP_CONST_CLASS_DRUID); +} diff --git a/_module/nss/dt_set.nss b/_module/nss/dt_set.nss new file mode 100644 index 0000000..72c25ec --- /dev/null +++ b/_module/nss/dt_set.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 1); +SetDeity(oPC, "Baccob"); +string sDes = "God of Magic"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set0.nss b/_module/nss/dt_set0.nss new file mode 100644 index 0000000..72c25ec --- /dev/null +++ b/_module/nss/dt_set0.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 1); +SetDeity(oPC, "Baccob"); +string sDes = "God of Magic"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set1.nss b/_module/nss/dt_set1.nss new file mode 100644 index 0000000..9586c9c --- /dev/null +++ b/_module/nss/dt_set1.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 2); +SetDeity(oPC, "Corellon Larethian"); +string sDes = "God of Elves"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set10.nss b/_module/nss/dt_set10.nss new file mode 100644 index 0000000..b1b9718 --- /dev/null +++ b/_module/nss/dt_set10.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 10); +SetDeity(oPC, "Kord"); +string sDes = "God of Strength"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set11.nss b/_module/nss/dt_set11.nss new file mode 100644 index 0000000..dc8b040 --- /dev/null +++ b/_module/nss/dt_set11.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 11); +SetDeity(oPC, "Moradin"); +string sDes = "God of Dwarves"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set12.nss b/_module/nss/dt_set12.nss new file mode 100644 index 0000000..0356d3e --- /dev/null +++ b/_module/nss/dt_set12.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 12); +SetDeity(oPC, "Nerull"); +string sDes = "God of Death"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set13.nss b/_module/nss/dt_set13.nss new file mode 100644 index 0000000..a9ca7a1 --- /dev/null +++ b/_module/nss/dt_set13.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 13); +SetDeity(oPC, "Obad-Hai"); +string sDes = "God of Nature"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set14.nss b/_module/nss/dt_set14.nss new file mode 100644 index 0000000..876e187 --- /dev/null +++ b/_module/nss/dt_set14.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 14); +SetDeity(oPC, "Olidammara"); +string sDes = "God of Rogues"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set15.nss b/_module/nss/dt_set15.nss new file mode 100644 index 0000000..c6e1daf --- /dev/null +++ b/_module/nss/dt_set15.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 15); +SetDeity(oPC, "Pelor"); +string sDes = "God of the Sun"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set16.nss b/_module/nss/dt_set16.nss new file mode 100644 index 0000000..c4c515f --- /dev/null +++ b/_module/nss/dt_set16.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 16); +SetDeity(oPC, "Saint Cuthburt"); +string sDes = "God of Retribution"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set17.nss b/_module/nss/dt_set17.nss new file mode 100644 index 0000000..daa670a --- /dev/null +++ b/_module/nss/dt_set17.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 17); +SetDeity(oPC, "Vecna"); +string sDes = "God of Secrets"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set18.nss b/_module/nss/dt_set18.nss new file mode 100644 index 0000000..9153156 --- /dev/null +++ b/_module/nss/dt_set18.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 18); +SetDeity(oPC, "Wee Jas"); +string sDes = "Goddess of Death and Magic"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set19.nss b/_module/nss/dt_set19.nss new file mode 100644 index 0000000..23df843 --- /dev/null +++ b/_module/nss/dt_set19.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 19); +SetDeity(oPC, "Yondalla"); +string sDes = "God of Halflings"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set2.nss b/_module/nss/dt_set2.nss new file mode 100644 index 0000000..365c710 --- /dev/null +++ b/_module/nss/dt_set2.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 3); +SetDeity(oPC, "Ehlonna"); +string sDes = "Goddess of the Woodlands"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set20.nss b/_module/nss/dt_set20.nss new file mode 100644 index 0000000..da5b7b7 --- /dev/null +++ b/_module/nss/dt_set20.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 20); +SetDeity(oPC, "Mystra"); +string sDes = "Greater Goddess of all Magic"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set21.nss b/_module/nss/dt_set21.nss new file mode 100644 index 0000000..02178d3 --- /dev/null +++ b/_module/nss/dt_set21.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 21); +SetDeity(oPC, "Tyr"); +string sDes = "Germanic god of war"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set4.nss b/_module/nss/dt_set4.nss new file mode 100644 index 0000000..e1a78bd --- /dev/null +++ b/_module/nss/dt_set4.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 4); +SetDeity(oPC, "Erythnul"); +string sDes = "God of Slaughter"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set5.nss b/_module/nss/dt_set5.nss new file mode 100644 index 0000000..7795701 --- /dev/null +++ b/_module/nss/dt_set5.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 5); +SetDeity(oPC, "Fharlanghn"); +string sDes = "God of Roads"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set6.nss b/_module/nss/dt_set6.nss new file mode 100644 index 0000000..4410337 --- /dev/null +++ b/_module/nss/dt_set6.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 6); +SetDeity(oPC, "Garl Glittergold"); +string sDes = "God of Gnomes"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set7.nss b/_module/nss/dt_set7.nss new file mode 100644 index 0000000..cba886f --- /dev/null +++ b/_module/nss/dt_set7.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 7); +SetDeity(oPC, "Gruumsh"); +string sDes = "God of Orcs"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set8.nss b/_module/nss/dt_set8.nss new file mode 100644 index 0000000..51a606d --- /dev/null +++ b/_module/nss/dt_set8.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 8); +SetDeity(oPC, "Heironeous"); +string sDes = "God of Valor"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/dt_set9.nss b/_module/nss/dt_set9.nss new file mode 100644 index 0000000..e043761 --- /dev/null +++ b/_module/nss/dt_set9.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dt_num", 9); +SetDeity(oPC, "Hextor"); +string sDes = "God of Tyranny"; +effect eEffect = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); +FloatingTextStringOnCreature("You pledge your loyalty to "+GetDeity(oPC)+", "+sDes, oPC); +} diff --git a/_module/nss/duel_time.nss b/_module/nss/duel_time.nss new file mode 100644 index 0000000..00fc05c --- /dev/null +++ b/_module/nss/duel_time.nss @@ -0,0 +1,28 @@ +#include "nw_i0_generic" +void main() +{ +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "duel_on", 1); +oTarget = GetObjectByTag("duel_effect"); +int nInt; +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget); +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget)); +oTarget1 = GetObjectByTag("starfall"); +ClearAllActions(); +SetPlotFlag(GetObjectByTag("starfall"), FALSE); + +DelayCommand(1.5, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.6, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(6.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); + +//DelayCommand(4.6, AdjustReputation(oPC, oTarget1, -100)); +DelayCommand(7.2,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(7.5,AssignCommand(oTarget1, ActionAttack(oPC))); +//DelayCommand(1.6,AssignCommand(oTarget, DetermineCombatRound(oPC))); +} + diff --git a/_module/nss/duel_time_diff.nss b/_module/nss/duel_time_diff.nss new file mode 100644 index 0000000..883ed4c --- /dev/null +++ b/_module/nss/duel_time_diff.nss @@ -0,0 +1,67 @@ +#include "nw_i0_generic" +void main() +{ + +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oLever = GetObjectByTag("cr_lever"); +object oCrystal1 = GetObjectByTag("crystal1"); +object oCrystal2 = GetObjectByTag("crystal2"); +object oCrystal3 = GetObjectByTag("crystal3"); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +int nInt; +int lState = GetLocalInt(oMod, "lever_state"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +AssignCommand(GetObjectByTag("starfall"), ClearAllActions()); +DelayCommand(0.2, AssignCommand(GetObjectByTag("starfall"), ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +SetLocalInt(oMod, "duel_on", 1); +oTarget = GetObjectByTag("duel_effect"); +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget); +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget)); +oTarget1 = GetObjectByTag("starfall"); +SetPlotFlag(GetObjectByTag("starfall"), FALSE); + +if (lState==1) +{ + +DelayCommand(1.8, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.8, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("You can't use the crystals in difficult mode",TALKVOLUME_SHOUT))); +DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Crystals Off!",TALKVOLUME_SHOUT))); +DelayCommand(10.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(12.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); +DelayCommand(13.5,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(13.5,AssignCommand(oTarget1, ActionAttack(oPC))); +DelayCommand(8.5, AssignCommand(oPC, PlaySound("sce_positive"))); +AssignCommand(oLever, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +DelayCommand(8.5, FloatingTextStringOnCreature("Power Crystals deactivated", oPC)); +DelayCommand(8.5, AssignCommand(oCrystal1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +DelayCommand(8.5, AssignCommand(oCrystal2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +DelayCommand(8.5, AssignCommand(oCrystal3, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +SetLocalInt(oMod, "lever_state", 0); +} +else +{ + +DelayCommand(1.8, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.8, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(6.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); +DelayCommand(7.2,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(7.5,AssignCommand(oTarget1, ActionAttack(oPC))); +} +SetLocalInt(oMod, "pool_state", 1); +SetLocalInt(oMod, "fountain_state", 1); +DelayCommand(14.0, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP1)); +DelayCommand(14.0, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP2)); +DelayCommand(14.0, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP3)); +DelayCommand(14.0, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP4)); +} + diff --git a/_module/nss/duel_time_easy.nss b/_module/nss/duel_time_easy.nss new file mode 100644 index 0000000..d6b248c --- /dev/null +++ b/_module/nss/duel_time_easy.nss @@ -0,0 +1,96 @@ +#include "x0_i0_petrify" +#include "nw_i0_generic" +void main() +{ +int nInt; +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oLever = GetObjectByTag("cr_lever"); +object oLever1 = GetObjectByTag("pool_lever"); +object oLever2 = GetObjectByTag("fount_lever"); +object oCrystal1 = GetObjectByTag("crystal1"); +object oCrystal2 = GetObjectByTag("crystal2"); +object oCrystal3 = GetObjectByTag("crystal3"); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +int lState = GetLocalInt(oMod, "lever_state"); +int oState = GetLocalInt(oMod, "fountain_state"); +int oStatep = GetLocalInt(oMod, "pool_state"); +int oGameMode = GetLocalInt(oMod, "gamemode"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +effect eEffect2 = EffectVisualEffect(VFX_NONE); +object oSpawner = GetObjectByTag("spawner"); +AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(GetObjectByTag("starfall"), ClearAllActions()); + +if (oGameMode==1) +{ + DelayCommand(0.2, AssignCommand(GetObjectByTag("starfall"), + ActionPlayAnimation(ANIMATION_FIREFORGET_TAUNT))); +} +else +{ + DelayCommand(0.2, AssignCommand(GetObjectByTag("starfall"), + ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +} + +SetLocalInt(oMod, "duel_on", 1); +SetLocalInt(oMod, "st1", 1); +oTarget = GetObjectByTag("duel_effect"); +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget); +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget)); +oTarget1 = GetObjectByTag("starfall"); +SetPlotFlag(GetObjectByTag("starfall"), FALSE); +if ((lState==0)||(oState==1)||(oStatep==1)) +{ +DelayCommand(1.8, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.8, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("You may use all facilities in easy mode",TALKVOLUME_SHOUT))); +if (oGameMode==1) +{ + DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), + ActionPlayAnimation(ANIMATION_FIREFORGET_TAUNT))); +} +else +{ + DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), + ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +} +DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Activate!",TALKVOLUME_SHOUT))); +DelayCommand(10.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(12.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); +DelayCommand(13.5,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(13.5,AssignCommand(oTarget1, ActionAttack(oPC))); +DelayCommand(8.5, AssignCommand(oPC, PlaySound("sce_positive"))); +AssignCommand(oLever, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +DelayCommand(8.5, AssignCommand(oCrystal1, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE))); +DelayCommand(8.5, AssignCommand(oCrystal2, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE))); +DelayCommand(8.5, AssignCommand(oCrystal3, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE))); +SetLocalInt(oMod, "lever_state", 1); +SetLocalInt(oMod, "pool_state", 0); +SetLocalInt(oMod, "fountain_state", 0); +DelayCommand(8.5, RemoveEffectOfType(oP1, GetEffectType(eEffect))); +DelayCommand(8.5, RemoveEffectOfType(oP2, GetEffectType(eEffect))); +DelayCommand(8.5, RemoveEffectOfType(oP3, GetEffectType(eEffect))); +DelayCommand(8.5, RemoveEffectOfType(oP4, GetEffectType(eEffect))); +RecomputeStaticLighting(GetArea(OBJECT_SELF)); +} +else +{ +DelayCommand(1.8, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.8, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(6.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); +DelayCommand(7.2,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(7.5,AssignCommand(oTarget1, ActionAttack(oPC))); +} + +} + diff --git a/_module/nss/duel_time_hard.nss b/_module/nss/duel_time_hard.nss new file mode 100644 index 0000000..5140007 --- /dev/null +++ b/_module/nss/duel_time_hard.nss @@ -0,0 +1,77 @@ +#include "x0_i0_petrify" +#include "nw_i0_generic" +void main() +{ +int nInt; +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oLever = GetObjectByTag("cr_lever"); +object oLever1 = GetObjectByTag("pool_lever"); +object oLever2 = GetObjectByTag("fount_lever"); +object oCrystal1 = GetObjectByTag("crystal1"); +object oCrystal2 = GetObjectByTag("crystal2"); +object oCrystal3 = GetObjectByTag("crystal3"); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +int lState = GetLocalInt(oMod, "lever_state"); +int oState = GetLocalInt(oMod, "fountain_state"); +int oStatep = GetLocalInt(oMod, "pool_state"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +effect eEffect2 = EffectVisualEffect(VFX_NONE); +object oSpawner = GetObjectByTag("spawner"); +AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(GetObjectByTag("starfall"), ClearAllActions()); +DelayCommand(0.2, AssignCommand(GetObjectByTag("starfall"), ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +SetLocalInt(oMod, "duel_on", 1); +SetLocalInt(oMod, "st3", 1); +oTarget = GetObjectByTag("duel_effect"); +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget); +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget)); +oTarget1 = GetObjectByTag("starfall"); +ClearAllActions(); +SetPlotFlag(GetObjectByTag("starfall"), FALSE); +if ((lState==1)||(oState==0)||(oStatep==1)) +{ + + +DelayCommand(1.8, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.8, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("You may only use the pools in hard mode",TALKVOLUME_SHOUT))); +DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Activate!",TALKVOLUME_SHOUT))); +DelayCommand(10.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(12.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); +DelayCommand(13.5,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(13.5,AssignCommand(oTarget1, ActionAttack(oPC))); +DelayCommand(8.5, AssignCommand(oPC, PlaySound("sce_positive"))); +AssignCommand(oLever, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +DelayCommand(8.5, AssignCommand(oCrystal1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +DelayCommand(8.5, AssignCommand(oCrystal2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +DelayCommand(8.5, AssignCommand(oCrystal3, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +SetLocalInt(oMod, "lever_state", 0); +SetLocalInt(oMod, "pool_state", 0); +SetLocalInt(oMod, "fountain_state", 1); +DelayCommand(8.5, RemoveEffectOfType(oP1, GetEffectType(eEffect))); +DelayCommand(8.5, RemoveEffectOfType(oP2, GetEffectType(eEffect))); +DelayCommand(8.5, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP3)); +DelayCommand(8.5, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP4)); +} +else +{ +DelayCommand(1.8, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.8, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(6.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); +DelayCommand(7.2,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(7.5,AssignCommand(oTarget1, ActionAttack(oPC))); +} + +} + diff --git a/_module/nss/duel_time_imposs.nss b/_module/nss/duel_time_imposs.nss new file mode 100644 index 0000000..0e1e259 --- /dev/null +++ b/_module/nss/duel_time_imposs.nss @@ -0,0 +1,79 @@ +#include "nw_i0_generic" +void main() +{ +int nInt; +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oLever = GetObjectByTag("cr_lever"); +object oLever1 = GetObjectByTag("pool_lever"); +object oLever2 = GetObjectByTag("fount_lever"); +object oCrystal1 = GetObjectByTag("crystal1"); +object oCrystal2 = GetObjectByTag("crystal2"); +object oCrystal3 = GetObjectByTag("crystal3"); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +int lState = GetLocalInt(oMod, "lever_state"); +int oState = GetLocalInt(oMod, "fountain_state"); +int oStatep = GetLocalInt(oMod, "pool_state"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +effect eEffect2 = EffectVisualEffect(VFX_NONE); +object oSpawner = GetObjectByTag("spawner"); +AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(GetObjectByTag("starfall"), ClearAllActions()); +DelayCommand(0.2, AssignCommand(GetObjectByTag("starfall"), ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +SetLocalInt(oMod, "st5", 1); +SetLocalInt(oMod, "duel_on", 1); +SetLocalInt(oPC, "pc_SFhit", 0); +SetLocalInt(oPC, "pc_SFdam", 0); +SetLocalInt(oPC, "pc_SFswing", 0); + +oTarget = GetObjectByTag("duel_effect"); +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget); +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget)); +oTarget1 = GetObjectByTag("starfall"); +ClearAllActions(); +SetPlotFlag(GetObjectByTag("starfall"), FALSE); +if ((lState==1)||(oState==0)||(oStatep==0)) +{ +DelayCommand(1.8, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.8, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("This one is just you verses me! No facilities!",TALKVOLUME_SHOUT))); +DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Activate!",TALKVOLUME_SHOUT))); +DelayCommand(10.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(12.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); +DelayCommand(13.5,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(13.5,AssignCommand(oTarget1, ActionAttack(oPC))); +DelayCommand(8.5, AssignCommand(oPC, PlaySound("sce_negative"))); +AssignCommand(oLever, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +DelayCommand(8.5, AssignCommand(oCrystal1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +DelayCommand(8.5, AssignCommand(oCrystal2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +DelayCommand(8.5, AssignCommand(oCrystal3, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +SetLocalInt(oMod, "lever_state", 0); +SetLocalInt(oMod, "pool_state", 1); +SetLocalInt(oMod, "fountain_state", 1); +DelayCommand(8.5, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP1)); +DelayCommand(8.5, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP2)); +DelayCommand(8.5, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP3)); +DelayCommand(8.5, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP4)); +} +else +{ +DelayCommand(1.8, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.8, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(6.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); +DelayCommand(7.2,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(7.5,AssignCommand(oTarget1, ActionAttack(oPC))); +} + +} + + diff --git a/_module/nss/duel_time_med.nss b/_module/nss/duel_time_med.nss new file mode 100644 index 0000000..384e21f --- /dev/null +++ b/_module/nss/duel_time_med.nss @@ -0,0 +1,76 @@ +#include "x0_i0_petrify" +#include "nw_i0_generic" +void main() +{ +int nInt; +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oLever = GetObjectByTag("cr_lever"); +object oLever1 = GetObjectByTag("pool_lever"); +object oLever2 = GetObjectByTag("fount_lever"); +object oCrystal1 = GetObjectByTag("crystal1"); +object oCrystal2 = GetObjectByTag("crystal2"); +object oCrystal3 = GetObjectByTag("crystal3"); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +int lState = GetLocalInt(oMod, "lever_state"); +int oState = GetLocalInt(oMod, "fountain_state"); +int oStatep = GetLocalInt(oMod, "pool_state"); +object oSpawner = GetObjectByTag("spawner"); +AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +effect eEffect2 = EffectVisualEffect(VFX_NONE); +AssignCommand(GetObjectByTag("starfall"), ClearAllActions()); +DelayCommand(0.2, AssignCommand(GetObjectByTag("starfall"), ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +SetLocalInt(oMod, "duel_on", 1); +SetLocalInt(oMod, "st2", 1); +oTarget = GetObjectByTag("duel_effect"); +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget); +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget)); +oTarget1 = GetObjectByTag("starfall"); +ClearAllActions(); +SetPlotFlag(GetObjectByTag("starfall"), FALSE); +if ((lState==0)||(oState==1)||(oStatep==0)) +{ +DelayCommand(1.8, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.8, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("You may only use crystals and fountains in medium mode",TALKVOLUME_SHOUT))); +DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Activate!",TALKVOLUME_SHOUT))); +DelayCommand(10.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(12.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); +DelayCommand(13.5,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(13.5,AssignCommand(oTarget1, ActionAttack(oPC))); +DelayCommand(8.5, AssignCommand(oPC, PlaySound("sce_positive"))); +AssignCommand(oLever, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +DelayCommand(8.5, AssignCommand(oCrystal1, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE))); +DelayCommand(8.5, AssignCommand(oCrystal2, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE))); +DelayCommand(8.5, AssignCommand(oCrystal3, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE))); +SetLocalInt(oMod, "lever_state", 1); +SetLocalInt(oMod, "pool_state", 1); +SetLocalInt(oMod, "fountain_state", 0); +DelayCommand(8.5, RemoveEffectOfType(oP3, GetEffectType(eEffect))); +DelayCommand(8.5, RemoveEffectOfType(oP4, GetEffectType(eEffect))); +DelayCommand(8.5, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP1)); +DelayCommand(8.5, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP2)); +RecomputeStaticLighting(GetArea(OBJECT_SELF)); +} +else +{ +DelayCommand(1.8, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.8, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(6.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); +DelayCommand(7.2,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(7.5,AssignCommand(oTarget1, ActionAttack(oPC))); +} + +} + diff --git a/_module/nss/duel_time_vhard.nss b/_module/nss/duel_time_vhard.nss new file mode 100644 index 0000000..5aa98b6 --- /dev/null +++ b/_module/nss/duel_time_vhard.nss @@ -0,0 +1,75 @@ +#include "x0_i0_petrify" +#include "nw_i0_generic" +void main() +{ +int nInt; +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oLever = GetObjectByTag("cr_lever"); +object oLever1 = GetObjectByTag("pool_lever"); +object oLever2 = GetObjectByTag("fount_lever"); +object oCrystal1 = GetObjectByTag("crystal1"); +object oCrystal2 = GetObjectByTag("crystal2"); +object oCrystal3 = GetObjectByTag("crystal3"); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +int lState = GetLocalInt(oMod, "lever_state"); +int oState = GetLocalInt(oMod, "fountain_state"); +int oStatep = GetLocalInt(oMod, "pool_state"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +effect eEffect2 = EffectVisualEffect(VFX_NONE); +object oSpawner = GetObjectByTag("spawner"); +AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(GetObjectByTag("starfall"), ClearAllActions()); +DelayCommand(0.2, AssignCommand(GetObjectByTag("starfall"), ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +SetLocalInt(oMod, "duel_on", 1); +SetLocalInt(oMod, "st4", 1); +oTarget = GetObjectByTag("duel_effect"); +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget); +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget)); +oTarget1 = GetObjectByTag("starfall"); +ClearAllActions(); +SetPlotFlag(GetObjectByTag("starfall"), FALSE); +if ((lState==1)||(oState==1)||(oStatep==0)) +{ +DelayCommand(1.8, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.8, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("You may only use the fountains in very hard mode",TALKVOLUME_SHOUT))); +DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); +DelayCommand(7.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Activate!",TALKVOLUME_SHOUT))); +DelayCommand(10.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(12.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); +DelayCommand(13.5,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(13.5,AssignCommand(oTarget1, ActionAttack(oPC))); +DelayCommand(8.5, AssignCommand(oPC, PlaySound("sce_positive"))); +AssignCommand(oLever, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +DelayCommand(8.5, AssignCommand(oCrystal1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +DelayCommand(8.5, AssignCommand(oCrystal2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +DelayCommand(8.5, AssignCommand(oCrystal3, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE))); +SetLocalInt(oMod, "lever_state", 0); +SetLocalInt(oMod, "pool_state", 1); +SetLocalInt(oMod, "fountain_state", 0); +DelayCommand(8.5, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP1)); +DelayCommand(8.5, ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP2)); +DelayCommand(8.5, RemoveEffectOfType(oP3, GetEffectType(eEffect))); +DelayCommand(8.5, RemoveEffectOfType(oP4, GetEffectType(eEffect))); +} +else +{ +DelayCommand(1.8, AssignCommand(oTarget1, JumpToLocation(GetLocation(GetObjectByTag ("s_duel_wp"))))); +DelayCommand(1.8, AssignCommand(oPC, JumpToLocation(GetLocation(GetObjectByTag ("p_duel_wp"))))); +DelayCommand(5.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("Ready?",TALKVOLUME_SHOUT))); +DelayCommand(6.5, AssignCommand(GetObjectByTag("starfall"), ActionSpeakString("GO!!!",TALKVOLUME_SHOUT))); +DelayCommand(7.2,SetIsTemporaryEnemy(oPC, oTarget1)); +DelayCommand(7.5,AssignCommand(oTarget1, ActionAttack(oPC))); +} + +} + diff --git a/_module/nss/dv_imbue25.nss b/_module/nss/dv_imbue25.nss new file mode 100644 index 0000000..88d6a30 --- /dev/null +++ b/_module/nss/dv_imbue25.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dvdone_1", 1); +DamRes(4,2); +} diff --git a/_module/nss/dv_imbue252.nss b/_module/nss/dv_imbue252.nss new file mode 100644 index 0000000..132ab6c --- /dev/null +++ b/_module/nss/dv_imbue252.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dvdone_12", 1); +DamRes2(4,2); +} diff --git a/_module/nss/dv_imbue252a.nss b/_module/nss/dv_imbue252a.nss new file mode 100644 index 0000000..716a0dd --- /dev/null +++ b/_module/nss/dv_imbue252a.nss @@ -0,0 +1,8 @@ +#include "att_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dvdone_12a", 1); +AttackBonus(1); +} diff --git a/_module/nss/dv_imbue252a1.nss b/_module/nss/dv_imbue252a1.nss new file mode 100644 index 0000000..d0d7642 --- /dev/null +++ b/_module/nss/dv_imbue252a1.nss @@ -0,0 +1,8 @@ +#include "att_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dvdone_22a", 1); +AttackBonus(2); +} diff --git a/_module/nss/dv_imbue252a2.nss b/_module/nss/dv_imbue252a2.nss new file mode 100644 index 0000000..afddcea --- /dev/null +++ b/_module/nss/dv_imbue252a2.nss @@ -0,0 +1,9 @@ +#include "att_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dvdone_32a", 1); +SetLocalInt(oPC, "gab_max",1); +AttackBonus(3); +} diff --git a/_module/nss/dvdone_1.nss b/_module/nss/dvdone_1.nss new file mode 100644 index 0000000..fe76ea5 --- /dev/null +++ b/_module/nss/dvdone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvdone_12.nss b/_module/nss/dvdone_12.nss new file mode 100644 index 0000000..832c441 --- /dev/null +++ b/_module/nss/dvdone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvdone_12a.nss b/_module/nss/dvdone_12a.nss new file mode 100644 index 0000000..042065e --- /dev/null +++ b/_module/nss/dvdone_12a.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_12a") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvdred_imbue_2.nss b/_module/nss/dvdred_imbue_2.nss new file mode 100644 index 0000000..3376113 --- /dev/null +++ b/_module/nss/dvdred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dvdone_2", 1); +DamRes(4,3); +} diff --git a/_module/nss/dvdred_imbue_22.nss b/_module/nss/dvdred_imbue_22.nss new file mode 100644 index 0000000..78324ff --- /dev/null +++ b/_module/nss/dvdred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dvdone_22", 1); +DamRes2(4,3); +} diff --git a/_module/nss/dvdred_imbue_3.nss b/_module/nss/dvdred_imbue_3.nss new file mode 100644 index 0000000..135d782 --- /dev/null +++ b/_module/nss/dvdred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dvdone_3", 1); +DamRes(4,4); +} diff --git a/_module/nss/dvdred_imbue_32.nss b/_module/nss/dvdred_imbue_32.nss new file mode 100644 index 0000000..4a4715f --- /dev/null +++ b/_module/nss/dvdred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dvmax_reduction2", 1); +SetLocalInt(oPC, "dvdone_32", 1); +DamRes2(4,4); +} diff --git a/_module/nss/dvdred_imbue_4.nss b/_module/nss/dvdred_imbue_4.nss new file mode 100644 index 0000000..2934939 --- /dev/null +++ b/_module/nss/dvdred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dvdone_4", 1); +DamRes(4,5); +} diff --git a/_module/nss/dvdred_imbue_5.nss b/_module/nss/dvdred_imbue_5.nss new file mode 100644 index 0000000..e997d13 --- /dev/null +++ b/_module/nss/dvdred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "dvdone_5", 1); +SetLocalInt(oPC, "dvmax_reduction", 1); +DamRes(4,6); +} diff --git a/_module/nss/dved1_1.nss b/_module/nss/dved1_1.nss new file mode 100644 index 0000000..32e3cad --- /dev/null +++ b/_module/nss/dved1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dved1_12.nss b/_module/nss/dved1_12.nss new file mode 100644 index 0000000..c73c44e --- /dev/null +++ b/_module/nss/dved1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dved1_12a.nss b/_module/nss/dved1_12a.nss new file mode 100644 index 0000000..470073a --- /dev/null +++ b/_module/nss/dved1_12a.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dved1_12b.nss b/_module/nss/dved1_12b.nss new file mode 100644 index 0000000..c7e3740 --- /dev/null +++ b/_module/nss/dved1_12b.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_22a") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_12a") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dved1_12c.nss b/_module/nss/dved1_12c.nss new file mode 100644 index 0000000..b7224f0 --- /dev/null +++ b/_module/nss/dved1_12c.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_22a") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_32a") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dved_1.nss b/_module/nss/dved_1.nss new file mode 100644 index 0000000..541a275 --- /dev/null +++ b/_module/nss/dved_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dved_12.nss b/_module/nss/dved_12.nss new file mode 100644 index 0000000..4a831c5 --- /dev/null +++ b/_module/nss/dved_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dved_12a.nss b/_module/nss/dved_12a.nss new file mode 100644 index 0000000..b7e58c7 --- /dev/null +++ b/_module/nss/dved_12a.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_22a") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvmax_damred12.nss b/_module/nss/dvmax_damred12.nss new file mode 100644 index 0000000..e5f700b --- /dev/null +++ b/_module/nss/dvmax_damred12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvmax_reduction2") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "gamemode") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvmax_damred12a.nss b/_module/nss/dvmax_damred12a.nss new file mode 100644 index 0000000..fb34276 --- /dev/null +++ b/_module/nss/dvmax_damred12a.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvmax_reduction2") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "gamemode") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvmax_damred12ab.nss b/_module/nss/dvmax_damred12ab.nss new file mode 100644 index 0000000..8ff7415 --- /dev/null +++ b/_module/nss/dvmax_damred12ab.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "gab_max") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvmax_damred12b.nss b/_module/nss/dvmax_damred12b.nss new file mode 100644 index 0000000..ee4fe4c --- /dev/null +++ b/_module/nss/dvmax_damred12b.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + + + if(!(GetLocalInt(oPC, "gab_max") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvmax_reached.nss b/_module/nss/dvmax_reached.nss new file mode 100644 index 0000000..f047ea0 --- /dev/null +++ b/_module/nss/dvmax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvmax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvmax_reached1.nss b/_module/nss/dvmax_reached1.nss new file mode 100644 index 0000000..7c82985 --- /dev/null +++ b/_module/nss/dvmax_reached1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvmax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvmax_reached12.nss b/_module/nss/dvmax_reached12.nss new file mode 100644 index 0000000..3551a51 --- /dev/null +++ b/_module/nss/dvmax_reached12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvmax_reduction2") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "gamemode") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvmax_reached2.nss b/_module/nss/dvmax_reached2.nss new file mode 100644 index 0000000..ecebf5f --- /dev/null +++ b/_module/nss/dvmax_reached2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvmax_reduction2") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvred_0.nss b/_module/nss/dvred_0.nss new file mode 100644 index 0000000..6a81e97 --- /dev/null +++ b/_module/nss/dvred_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/dvred_02.nss b/_module/nss/dvred_02.nss new file mode 100644 index 0000000..a06241d --- /dev/null +++ b/_module/nss/dvred_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/dvred_02a.nss b/_module/nss/dvred_02a.nss new file mode 100644 index 0000000..c4bff45 --- /dev/null +++ b/_module/nss/dvred_02a.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_12a") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/dvred_10.nss b/_module/nss/dvred_10.nss new file mode 100644 index 0000000..d08d3df --- /dev/null +++ b/_module/nss/dvred_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvred_11.nss b/_module/nss/dvred_11.nss new file mode 100644 index 0000000..c367453 --- /dev/null +++ b/_module/nss/dvred_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvred_12.nss b/_module/nss/dvred_12.nss new file mode 100644 index 0000000..414b24f --- /dev/null +++ b/_module/nss/dvred_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvred_2.nss b/_module/nss/dvred_2.nss new file mode 100644 index 0000000..8c6bbcd --- /dev/null +++ b/_module/nss/dvred_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvred_22.nss b/_module/nss/dvred_22.nss new file mode 100644 index 0000000..cf4c133 --- /dev/null +++ b/_module/nss/dvred_22.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvred_22a.nss b/_module/nss/dvred_22a.nss new file mode 100644 index 0000000..d5057bf --- /dev/null +++ b/_module/nss/dvred_22a.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_12a") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_22a") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvred_22aa.nss b/_module/nss/dvred_22aa.nss new file mode 100644 index 0000000..d5057bf --- /dev/null +++ b/_module/nss/dvred_22aa.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_12a") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_22a") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvred_3.nss b/_module/nss/dvred_3.nss new file mode 100644 index 0000000..65c8963 --- /dev/null +++ b/_module/nss/dvred_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvred_32.nss b/_module/nss/dvred_32.nss new file mode 100644 index 0000000..32a648f --- /dev/null +++ b/_module/nss/dvred_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvred_32a.nss b/_module/nss/dvred_32a.nss new file mode 100644 index 0000000..11d231e --- /dev/null +++ b/_module/nss/dvred_32a.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_32a") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvred_4.nss b/_module/nss/dvred_4.nss new file mode 100644 index 0000000..bf2ac93 --- /dev/null +++ b/_module/nss/dvred_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvred_42.nss b/_module/nss/dvred_42.nss new file mode 100644 index 0000000..27986f8 --- /dev/null +++ b/_module/nss/dvred_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvred_6.nss b/_module/nss/dvred_6.nss new file mode 100644 index 0000000..3c08354 --- /dev/null +++ b/_module/nss/dvred_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvred_62.nss b/_module/nss/dvred_62.nss new file mode 100644 index 0000000..6731915 --- /dev/null +++ b/_module/nss/dvred_62.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvred_62a.nss b/_module/nss/dvred_62a.nss new file mode 100644 index 0000000..4217140 --- /dev/null +++ b/_module/nss/dvred_62a.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_22a") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_32a") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvred_7.nss b/_module/nss/dvred_7.nss new file mode 100644 index 0000000..568815d --- /dev/null +++ b/_module/nss/dvred_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/dvred_8.nss b/_module/nss/dvred_8.nss new file mode 100644 index 0000000..95a46d9 --- /dev/null +++ b/_module/nss/dvred_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dvred_9.nss b/_module/nss/dvred_9.nss new file mode 100644 index 0000000..72c2af9 --- /dev/null +++ b/_module/nss/dvred_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dvdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/dynamic_bell.nss b/_module/nss/dynamic_bell.nss new file mode 100644 index 0000000..db86754 --- /dev/null +++ b/_module/nss/dynamic_bell.nss @@ -0,0 +1,23 @@ +#include "x0_i0_petrify" + +void main() +{ +object oLamp = OBJECT_SELF; +effect eLight = EffectVisualEffect(VFX_DUR_LIGHT_YELLOW_20); +int oTime = GetLocalInt(oLamp, "timeofday"); +int oTime2 = GetLocalInt(oLamp, "timeofday2"); + +if (((GetIsDay()==TRUE)||(GetIsDawn()==TRUE))&&(oTime!=1)) +{ +SoundObjectPlay(GetObjectByTag("bell")); +SetLocalInt(oLamp, "timeofday", 1); +SetLocalInt(oLamp, "timeofday2", 0); +} + +if (((GetIsNight()==TRUE)||(GetIsDusk()==TRUE))&&(oTime2!=1)) +{ +SoundObjectPlay(GetObjectByTag("bell")); +SetLocalInt(oLamp, "timeofday2", 1); +SetLocalInt(oLamp, "timeofday", 0); +} +} diff --git a/_module/nss/dynamic_braz.nss b/_module/nss/dynamic_braz.nss new file mode 100644 index 0000000..c44f8b8 --- /dev/null +++ b/_module/nss/dynamic_braz.nss @@ -0,0 +1,32 @@ +#include "x0_i0_petrify" + +void main() +{ +object oMod=GetModule(); +object oSelf = OBJECT_SELF; +int oTime = GetLocalInt(oSelf, "nightday"); +int oTime2 =GetLocalInt(oSelf, "nightday2"); +location lLocation = GetLocation(oSelf); +effect eLight = EffectVisualEffect(VFX_DUR_LIGHT_YELLOW_20); +string sSound = GetTag(oSelf); +object oTarget =GetObjectByTag(sSound); + + if (((GetIsDay()==TRUE)||(GetIsDawn()==TRUE))&&(oTime!=1)) + { + PlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); + RemoveEffectOfType(oSelf, GetEffectType(eLight)); + SoundObjectStop(oTarget); + SetLocalInt(oSelf, "nightday", 1); + SetLocalInt(oSelf, "nightday2", 0); + } + if (((GetIsNight()==TRUE)||(GetIsDusk()==TRUE))&&(oTime2!=1)) + + { + + PlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLight, oSelf); + SoundObjectPlay(oTarget); + SetLocalInt(oSelf, "nightday2", 1); + SetLocalInt(oSelf, "nightday", 0); + } +} diff --git a/_module/nss/dynamic_braz3.nss b/_module/nss/dynamic_braz3.nss new file mode 100644 index 0000000..6750dcf --- /dev/null +++ b/_module/nss/dynamic_braz3.nss @@ -0,0 +1,30 @@ +#include "x0_i0_petrify" + +void main() +{ +object oMod=GetModule(); +object oSelf = OBJECT_SELF; +int oTime = GetLocalInt(oSelf, "nightday"); +int oTime2 =GetLocalInt(oSelf, "nightday2"); +location lLocation = GetLocation(oSelf); +effect eLight = EffectVisualEffect(VFX_DUR_LIGHT_YELLOW_20); +string sSound = GetTag(oSelf); +object oTarget =GetObjectByTag(sSound); + + if (((GetIsDay()==TRUE)||(GetIsDawn()==TRUE))&&(oTime!=1)) + { + RemoveEffectOfType(oSelf, GetEffectType(eLight)); + PlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); + SetLocalInt(oSelf, "nightday", 1); + SetLocalInt(oSelf, "nightday2", 0); + } + if (((GetIsNight()==TRUE)||(GetIsDusk()==TRUE))&&(oTime2!=1)) + + { + + PlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLight, oSelf); + SetLocalInt(oSelf, "nightday2", 1); + SetLocalInt(oSelf, "nightday", 0); + } +} diff --git a/_module/nss/dynamic_lamp.nss b/_module/nss/dynamic_lamp.nss new file mode 100644 index 0000000..352833a --- /dev/null +++ b/_module/nss/dynamic_lamp.nss @@ -0,0 +1,25 @@ +#include "x0_i0_petrify" + +void main() +{ +object oLamp = OBJECT_SELF; +effect eLight = EffectVisualEffect(VFX_DUR_LIGHT_YELLOW_20); +int oTime = GetLocalInt(oLamp, "timeofday"); +int oTime2 = GetLocalInt(oLamp, "timeofday2"); + +if (((GetIsDay()==TRUE)||(GetIsDawn()==TRUE))&&(oTime!=1)) +{ +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +RemoveEffectOfType(oLamp, GetEffectType(eLight)); +SetLocalInt(oLamp, "timeofday", 1); +SetLocalInt(oLamp, "timeofday2", 0); +} + +if (((GetIsNight()==TRUE)||(GetIsDusk()==TRUE))&&(oTime2!=1)) +{ +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLight, oLamp); +SetLocalInt(oLamp, "timeofday2", 1); +SetLocalInt(oLamp, "timeofday", 0); +} +} diff --git a/_module/nss/dynamic_lamp_wt.nss b/_module/nss/dynamic_lamp_wt.nss new file mode 100644 index 0000000..ff8a226 --- /dev/null +++ b/_module/nss/dynamic_lamp_wt.nss @@ -0,0 +1,25 @@ +#include "x0_i0_petrify" + +void main() +{ +object oLamp = OBJECT_SELF; +effect eLight = EffectVisualEffect(VFX_DUR_LIGHT_WHITE_20); +int oTime = GetLocalInt(oLamp, "timeofday"); +int oTime2 = GetLocalInt(oLamp, "timeofday2"); + +if (((GetIsDay()==TRUE)||(GetIsDawn()==TRUE))&&(oTime!=1)) +{ +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +RemoveEffectOfType(oLamp, GetEffectType(eLight)); +SetLocalInt(oLamp, "timeofday", 1); +SetLocalInt(oLamp, "timeofday2", 0); +} + +if (((GetIsNight()==TRUE)||(GetIsDusk()==TRUE))&&(oTime2!=1)) +{ +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLight, oLamp); +SetLocalInt(oLamp, "timeofday2", 1); +SetLocalInt(oLamp, "timeofday", 0); +} +} diff --git a/_module/nss/el_imbue25.nss b/_module/nss/el_imbue25.nss new file mode 100644 index 0000000..9adf782 --- /dev/null +++ b/_module/nss/el_imbue25.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "eldone_1", 1); +DamRes(5,2); +} diff --git a/_module/nss/el_imbue252.nss b/_module/nss/el_imbue252.nss new file mode 100644 index 0000000..0c99cdd --- /dev/null +++ b/_module/nss/el_imbue252.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "eldone_12", 1); +DamRes2(5,2); +} diff --git a/_module/nss/eldone_1.nss b/_module/nss/eldone_1.nss new file mode 100644 index 0000000..7271901 --- /dev/null +++ b/_module/nss/eldone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/eldone_12.nss b/_module/nss/eldone_12.nss new file mode 100644 index 0000000..f6490f4 --- /dev/null +++ b/_module/nss/eldone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/eldred_imbue_2.nss b/_module/nss/eldred_imbue_2.nss new file mode 100644 index 0000000..353969b --- /dev/null +++ b/_module/nss/eldred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "eldone_2", 1); +DamRes(5,3); +} diff --git a/_module/nss/eldred_imbue_22.nss b/_module/nss/eldred_imbue_22.nss new file mode 100644 index 0000000..41ff834 --- /dev/null +++ b/_module/nss/eldred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "eldone_22", 1); +DamRes2(5,3); +} diff --git a/_module/nss/eldred_imbue_3.nss b/_module/nss/eldred_imbue_3.nss new file mode 100644 index 0000000..7ff3d5b --- /dev/null +++ b/_module/nss/eldred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "eldone_3", 1); +DamRes(5,4); +} diff --git a/_module/nss/eldred_imbue_32.nss b/_module/nss/eldred_imbue_32.nss new file mode 100644 index 0000000..e0817d5 --- /dev/null +++ b/_module/nss/eldred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "elmax_reduction2", 1); +SetLocalInt(oPC, "eldone_32", 1); +DamRes2(5,4); +} diff --git a/_module/nss/eldred_imbue_4.nss b/_module/nss/eldred_imbue_4.nss new file mode 100644 index 0000000..9a9c25b --- /dev/null +++ b/_module/nss/eldred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "eldone_4", 1); +DamRes(5,5); +} diff --git a/_module/nss/eldred_imbue_5.nss b/_module/nss/eldred_imbue_5.nss new file mode 100644 index 0000000..c05fb2e --- /dev/null +++ b/_module/nss/eldred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "eldone_5", 1); +SetLocalInt(oPC, "elmax_reduction", 1); +DamRes(5,6); +} diff --git a/_module/nss/elec_imbue.nss b/_module/nss/elec_imbue.nss new file mode 100644 index 0000000..97a1f16 --- /dev/null +++ b/_module/nss/elec_imbue.nss @@ -0,0 +1,7 @@ +#include "imbue_include" +void main() +{ +SetLocalInt(GetPCSpeaker(), "efire_ldb", 1); +ImbueWeapon(VFX_IMP_LIGHTNING_M, IP_CONST_DAMAGETYPE_ELECTRICAL); +} + diff --git a/_module/nss/elec_imbue_arm.nss b/_module/nss/elec_imbue_arm.nss new file mode 100644 index 0000000..5a8619a --- /dev/null +++ b/_module/nss/elec_imbue_arm.nss @@ -0,0 +1,6 @@ +#include "imbue_include" +void main() +{ +ImbueArmour(VFX_IMP_LIGHTNING_M, IP_CONST_DAMAGETYPE_ELECTRICAL); +} + diff --git a/_module/nss/elkdeath.nss b/_module/nss/elkdeath.nss new file mode 100644 index 0000000..14b7bf7 --- /dev/null +++ b/_module/nss/elkdeath.nss @@ -0,0 +1,133 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//:://////////////////////////////////// Lucifers mistress / Gate Keeper +#include "spawner" +#include "x0_i0_petrify" +#include "loot" +#include "rank" + +void main() +{ + + + object oPC = GetLastKiller(); + object oMod = GetModule(); + int iMode = GetLocalInt(oMod, "gamemode"); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + object oSpawner = GetObjectByTag("spawner"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + int oChest; + int iKilled = GetLocalInt(oPC, "iKilled"); + int oLife = GetLocalInt(oPC, "lives"); + int nInt2=GetLocalInt(oMod, "d2"); + int nInt3=GetLocalInt(oMod, "d4"); + int nInt5=GetLocalInt(oMod, "d5"); + int nInt4=GetLocalInt(oMod, "d2a"); + int nInt6=GetLocalInt(oMod, "d3"); + int oExploit = GetLocalInt(oMod, "xcheck"); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_lm", 0); + SetLocalInt(oMod, "ch_lm", 0); + int nInt; + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + if ((nInt2!=1)&&(nInt3!=1)&&(nInt4!=1)&&(nInt5!=1)&&(nInt6!=1)) + { + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + FloatingTextStringOnCreature("Victory", oPC); + + SetLocalInt(oPC, "bossdead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 12000); + } + } + + if(nInt2==1) + { + QuickRestore(oPC); + ++iKilled; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + SetLocalInt(oMod, "d2_complete", 1); + if (iMode==1) + {AddJournalQuestEntry("boss2_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss2", 1, oPC, FALSE, FALSE);} + DelayCommand(6.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(6.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + + } + + if ((nInt4==1)||(nInt5==1)||(nInt6==1)||(nInt3==1)) + { + ++iKilled; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + ++oLife; + SetLocalInt(oPC, "lives", oLife); + Message(2.4, "Bonus Life Granted", oPC); + PCEffect(3.5, VFX_IMP_SUPER_HEROISM, oPC); + DelayCommand(2.5, AssignCommand(oPC, ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); + if ((nInt3!=1)&&(nInt5!=1)&&(nInt6!=1)) + {BattleRest(oPC);} + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "thor", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "lord", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + } + + AssignCommand(oPC, PlaySound("vs_nzeliepm_dead")); + object oTarget= OBJECT_SELF; + PCEffect(0.0, VFX_IMP_DEATH_L, oTarget); + PCEffect(0.0, VFX_FNF_SCREEN_SHAKE, oTarget); + PCEffect(0.3, VFX_IMP_MAGIC_PROTECTION, oTarget); + + ExecuteScript("nw_c2_default7", OBJECT_SELF); +} diff --git a/_module/nss/elmax_reached.nss b/_module/nss/elmax_reached.nss new file mode 100644 index 0000000..6623959 --- /dev/null +++ b/_module/nss/elmax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "elmax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/elmax_reached2.nss b/_module/nss/elmax_reached2.nss new file mode 100644 index 0000000..104c7d1 --- /dev/null +++ b/_module/nss/elmax_reached2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "elmax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/elmax_reached22.nss b/_module/nss/elmax_reached22.nss new file mode 100644 index 0000000..0c53da4 --- /dev/null +++ b/_module/nss/elmax_reached22.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "elmax_reduction2") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/elmax_reached32.nss b/_module/nss/elmax_reached32.nss new file mode 100644 index 0000000..8ae9256 --- /dev/null +++ b/_module/nss/elmax_reached32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "elmax_reduction2") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/elred1_1.nss b/_module/nss/elred1_1.nss new file mode 100644 index 0000000..7bb133b --- /dev/null +++ b/_module/nss/elred1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "eldone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "eldone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/elred1_12.nss b/_module/nss/elred1_12.nss new file mode 100644 index 0000000..5d85cd0 --- /dev/null +++ b/_module/nss/elred1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "eldone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "eldone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/elred_0.nss b/_module/nss/elred_0.nss new file mode 100644 index 0000000..bf88ea5 --- /dev/null +++ b/_module/nss/elred_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/elred_02.nss b/_module/nss/elred_02.nss new file mode 100644 index 0000000..78743f7 --- /dev/null +++ b/_module/nss/elred_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/elred_10.nss b/_module/nss/elred_10.nss new file mode 100644 index 0000000..3963530 --- /dev/null +++ b/_module/nss/elred_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/elred_11.nss b/_module/nss/elred_11.nss new file mode 100644 index 0000000..1afcac6 --- /dev/null +++ b/_module/nss/elred_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "eldone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/elred_12.nss b/_module/nss/elred_12.nss new file mode 100644 index 0000000..2c5e4f3 --- /dev/null +++ b/_module/nss/elred_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "eldone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/elred_2.nss b/_module/nss/elred_2.nss new file mode 100644 index 0000000..c0b794a --- /dev/null +++ b/_module/nss/elred_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "eldone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/elred_22.nss b/_module/nss/elred_22.nss new file mode 100644 index 0000000..16907eb --- /dev/null +++ b/_module/nss/elred_22.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "eldone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/elred_3.nss b/_module/nss/elred_3.nss new file mode 100644 index 0000000..ffacff2 --- /dev/null +++ b/_module/nss/elred_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/elred_32.nss b/_module/nss/elred_32.nss new file mode 100644 index 0000000..0deebfc --- /dev/null +++ b/_module/nss/elred_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/elred_4.nss b/_module/nss/elred_4.nss new file mode 100644 index 0000000..7744ef5 --- /dev/null +++ b/_module/nss/elred_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "eldone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/elred_42.nss b/_module/nss/elred_42.nss new file mode 100644 index 0000000..827c7dc --- /dev/null +++ b/_module/nss/elred_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "eldone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/elred_6.nss b/_module/nss/elred_6.nss new file mode 100644 index 0000000..2f5981b --- /dev/null +++ b/_module/nss/elred_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "eldone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/elred_62.nss b/_module/nss/elred_62.nss new file mode 100644 index 0000000..e70eb35 --- /dev/null +++ b/_module/nss/elred_62.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "eldone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/elred_7.nss b/_module/nss/elred_7.nss new file mode 100644 index 0000000..af2a410 --- /dev/null +++ b/_module/nss/elred_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/elred_8.nss b/_module/nss/elred_8.nss new file mode 100644 index 0000000..bb05390 --- /dev/null +++ b/_module/nss/elred_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "eldone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/elred_9.nss b/_module/nss/elred_9.nss new file mode 100644 index 0000000..2dbbec6 --- /dev/null +++ b/_module/nss/elred_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "eldone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "eldone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/enh_imbue.nss b/_module/nss/enh_imbue.nss new file mode 100644 index 0000000..5c706b1 --- /dev/null +++ b/_module/nss/enh_imbue.nss @@ -0,0 +1,41 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Enhance(object oPC, object oItem) +{ +int oDamage; +itemproperty ipAdd; +oDamage = IPGetWeaponEnhancementBonus(oItem, + ITEM_PROPERTY_ENHANCEMENT_BONUS); +++oDamage; +ipAdd = ItemPropertyEnhancementBonus(oDamage); +IPSafeAddItemProperty(oItem, ipAdd); +if (oDamage>=20) { + SetLocalInt(oItem, "enhancement_max", 1); + PCEffect(2.0,VFX_FNF_SUMMON_EPIC_UNDEAD, OBJECT_SELF); + Message(2.0, "*** Fully Upgraded ***", oPC); + } +} + + +void main () +{ +object oTarget; +object oItem; +object oPC = GetPCSpeaker(); +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +PCEffect(0.0,VFX_FNF_SUMMON_MONSTER_3, OBJECT_SELF); +PCEffect(1.0,VFX_DUR_ELEMENTAL_SHIELD, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_ELECTRIC_EXPLOSION, OBJECT_SELF); +PCEffect(2.0,VFX_IMP_HARM, OBJECT_SELF); +DelayCommand(1.0, Enhance(oPC, GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/enh_imbue2.nss b/_module/nss/enh_imbue2.nss new file mode 100644 index 0000000..ec8d0e8 --- /dev/null +++ b/_module/nss/enh_imbue2.nss @@ -0,0 +1,37 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Mighty(object oItem) +{ +int oDamage; +itemproperty ipAdd; +oDamage = IPGetWeaponEnhancementBonus(oItem, + ITEM_PROPERTY_ENHANCEMENT_BONUS); +++oDamage; +if (oDamage==21){oDamage=20;} +ipAdd = ItemPropertyMaxRangeStrengthMod(oDamage); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_DUR_ELEMENTAL_SHIELD, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_ELECTRIC_EXPLOSION, OBJECT_SELF); +PCEffect(2.0,VFX_IMP_HARM, OBJECT_SELF); +DelayCommand(1.0, Mighty(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/enhance_chek.nss b/_module/nss/enhance_chek.nss new file mode 100644 index 0000000..04421f3 --- /dev/null +++ b/_module/nss/enhance_chek.nss @@ -0,0 +1,24 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_022 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 26/01/2005 5:27:11 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + int oFlag = 0; + object oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetLocalInt(oItem, "enhancement_max")==1) + {oFlag=1;} + + oItem = GetNextItemInInventory(OBJECT_SELF); + } + // Inspect local variables + if(!(oFlag != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/enhance_chek2.nss b/_module/nss/enhance_chek2.nss new file mode 100644 index 0000000..a8ef3e6 --- /dev/null +++ b/_module/nss/enhance_chek2.nss @@ -0,0 +1,24 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_022 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 26/01/2005 5:27:11 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + int oFlag = 0; + object oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetLocalInt(oItem, "enhancement_max")==1) + {oFlag=1;} + + oItem = GetNextItemInInventory(OBJECT_SELF); + } + // Inspect local variables + if(!(oFlag == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/enter_arena.nss b/_module/nss/enter_arena.nss new file mode 100644 index 0000000..9538bbd --- /dev/null +++ b/_module/nss/enter_arena.nss @@ -0,0 +1,6 @@ +void main() +{ + SetLocalInt(GetEnteringObject(),"arena", TRUE); + SendMessageToPC(GetEnteringObject(),"You are now in ARENA mode"); +} + diff --git a/_module/nss/eradicate.nss b/_module/nss/eradicate.nss new file mode 100644 index 0000000..8e96ee4 --- /dev/null +++ b/_module/nss/eradicate.nss @@ -0,0 +1,294 @@ +#include "cleanup" +#include "spawner" + +void GroupThanks(object oPC) +{ + object oTeam; + object oCreature; + int oDice; + + + oCreature = GetFirstObjectInArea(OBJECT_SELF); + while ((GetObjectType(oCreature)!=OBJECT_TYPE_CREATURE)|| + (GetIsPC(oCreature))||(GetTag(oCreature)=="starfall")||(GetTag(oCreature)=="reaper")) + { + oCreature =GetNextObjectInArea(OBJECT_SELF); + } + + + oTeam = GetFirstFactionMember(oCreature, FALSE); + while (GetIsObjectValid(oTeam)) + { + if (!GetIsDead(oTeam)) + { + NPCvoice(oTeam, oPC, 9); + DelayCommand(0.8, NPCvoice(oTeam, oPC, 10)); + + oDice = d2(); + if (oDice==1) + { + DelayCommand(1.0, AssignCommand(oTeam, ActionPlayAnimation + (ANIMATION_FIREFORGET_GREETING))); + } + else + { + DelayCommand(1.0, AssignCommand(oTeam, ActionPlayAnimation + (ANIMATION_FIREFORGET_BOW))); + } + + } + oTeam = GetNextFactionMember(oCreature, FALSE); + } +} + +void LimboSend(object oPC) +{ +object oTarget1, + oTarget2, + oTarget3, + oTarget4, + oTarget5, + oTarget6, + oTarget7, + oTarget8, + oTarget9, + oTarget10, + oTarget11, + oTarget12, + oTarget13, + oTarget14, + oTarget15, + oTarget16, + oTarget17, + oStuff; + + object oMod = GetModule(); + SetLocalInt(oMod, "d1", 0); + SetLocalInt(oMod, "d2", 0); + SetLocalInt(oMod, "d2a", 0); + SetLocalInt(oMod, "d3", 0); + SetLocalInt(oMod, "d4", 0); + SetLocalInt(oMod, "d5", 0); + SetLocalInt(oMod, "sw_hw", 0); + SetLocalInt(oMod, "sw_dr", 0); + SetLocalInt(oMod, "sw_bl", 0); + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "sw_df", 0); + SetLocalInt(oMod, "sw_pm", 0); + SetLocalInt(oMod, "sw_bm", 0); + SetLocalInt(oMod, "sw_lm", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oMod, "ch_hw", 0); + SetLocalInt(oMod, "ch_dr", 0); + SetLocalInt(oMod, "ch_bl", 0); + SetLocalInt(oMod, "ch_pf", 0); + SetLocalInt(oMod, "ch_df", 0); + SetLocalInt(oMod, "ch_pm", 0); + SetLocalInt(oMod, "ch_bm", 0); + SetLocalInt(oMod, "ch_lm", 0); + SetLocalInt(oMod, "ch_ll", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "challenge", 0); + SetLocalInt(oMod, "hwar_on", 0); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + +object oMonster = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC); +effect eEffect = EffectVisualEffect(VFX_IMP_UNSUMMON); +oTarget1 = GetObjectByTag("zep_balrog001"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget1)); +DestroyObject(GetObjectByTag("zep_balrog001")); +oTarget2 = GetObjectByTag("dragon1"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget2)); +DestroyObject(GetObjectByTag("dragon1")); +oTarget3 = GetObjectByTag("zep_halfdrafn001"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget3)); +DestroyObject(GetObjectByTag("zep_halfdrafn001")); +oTarget4 = GetObjectByTag("zep_marilithb001"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget4)); +DestroyObject(GetObjectByTag("zep_marilithb001")); +oTarget5 = GetObjectByTag("palewarrior"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget5)); +DestroyObject(GetObjectByTag("palewarrior")); +oTarget6 = GetObjectByTag("zep_pitfiend001"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget6)); +DestroyObject(GetObjectByTag("zep_pitfiend001")); +oTarget7 = GetObjectByTag("dopple"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget7)); +DestroyObject(GetObjectByTag("dopple")); +oTarget8 = GetObjectByTag("boss1"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget8)); +DestroyObject(GetObjectByTag("boss1")); +oTarget9 = GetObjectByTag("lord"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget9)); +DestroyObject(GetObjectByTag("lord")); +oTarget10 = GetObjectByTag("lucifer"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget10)); +DestroyObject(GetObjectByTag("lucifer")); +oTarget11 = GetObjectByTag("boss002"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget11)); +DestroyObject(GetObjectByTag("boss002")); +oTarget12 = GetObjectByTag("thor"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget12)); +DestroyObject(GetObjectByTag("thor")); +oTarget13 = GetObjectByTag("angel"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget13)); +DestroyObject(GetObjectByTag("angel")); +oTarget14 = GetObjectByTag("notime1"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget14)); +DestroyObject(GetObjectByTag("notime1")); +oTarget15 = GetObjectByTag("notime2"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget15)); +DestroyObject(GetObjectByTag("notime2")); +oTarget16 = GetObjectByTag("notime3"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget16)); +DestroyObject(GetObjectByTag("notime3")); +oTarget17 = GetObjectByTag("notime4"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("notime4")); +oTarget17 = GetObjectByTag("notime4"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("death")); +oTarget17 = GetObjectByTag("death"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("dragon2"));oTarget17 = GetObjectByTag("notime4"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("dragon2")); +oTarget17 = GetObjectByTag("mistress2"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("mistress2")); +oTarget17 = GetObjectByTag("bard2"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("bard2")); +oTarget17 = GetObjectByTag("darcher"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("darcher")); +oTarget17 = GetObjectByTag("beli2"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("beli2")); +oTarget17 = GetObjectByTag("palewarrior3"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("palewarrior3")); +oTarget17 = GetObjectByTag("hdrag2"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("hdrag2")); +oTarget17 = GetObjectByTag("pfiend2"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("pfiend2")); +oTarget17 = GetObjectByTag("horod2"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("horod2")); +oTarget17 = GetObjectByTag("div2"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("div2")); +oTarget17 = GetObjectByTag("pwar3"); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget17)); +DestroyObject(GetObjectByTag("pwar3")); + +if (GetIsEnemy(oPC, oMonster)) +{ +oStuff = GetFirstItemInInventory(oMonster); + while(GetIsObjectValid(oStuff)) + { + DestroyObject(oStuff); + oStuff = GetNextItemInInventory(oMonster); + } +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oMonster)); +DestroyObject(oMonster); +} +} + +void Limbo(object oPC) +{ +LimboSend(oPC); +DelayCommand(0.5, LimboSend(oPC)); +DelayCommand(1.0, LimboSend(oPC)); +DelayCommand(1.5, LimboSend(oPC)); + +//DelayCommand(5.0, CleanArea(oPC)); +} + + + + + + +void EradS(object oPC) +{ +effect eEffect= EffectDeath(); +object oTarget; +object oStuff; +string sRef; +object oPest; + +oPest= GetFirstObjectInArea(OBJECT_SELF); +while (GetIsObjectValid(oPest)) + { + if ((!GetIsPC(oPest))&&(GetTag(oPest)!="starfall")) + { + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect, oPest); + } + oPest = GetNextObjectInArea(OBJECT_SELF); + } +} + +void Eradicate(object oPC) +{ +object oMod = GetModule(); +int iStatus = GetLocalInt(oMod, "war_won"); +int iTurnFlag = GetLocalInt(oMod, "turn_flag"); +int iPCSide = GetLocalInt(oPC, "pc_side"); +int iHappy = GetLocalInt(oPC, "iHappy"); +int iConvSwitch = GetLocalInt(oPC, "conv_switch"); + +//FloatingTextStringOnCreature("conv switch: "+IntToString(iConvSwitch), oPC); +//FloatingTextStringOnCreature("war won: "+IntToString(iStatus), oPC); +//FloatingTextStringOnCreature("iHappy: "+IntToString(iHappy), oPC); + +if ((iConvSwitch==1)&&(iStatus==1)) + { + if (iHappy==1) + { + + SetLocalInt(oPC, "iHappy", 0); + AssignCommand(oPC, PlayVoiceChat(VOICE_CHAT_GOODBYE)); + GroupThanks(oPC); + DelayCommand(5.0, Limbo(oPC)); + SetLocalInt(oMod, "war_won",0); + return; + } + Limbo(oPC); + return; + } + + + if ((iStatus==1)&&(iTurnFlag!=1)&&(iPCSide!=0)) + { + if (iHappy==1) + { + + SetLocalInt(oPC, "iHappy", 0); + AssignCommand(oPC, PlayVoiceChat(VOICE_CHAT_GOODBYE)); + GroupThanks(oPC); + DelayCommand(5.0, Limbo(oPC)); + SetLocalInt(oMod, "war_won",0); + } + else + { + Limbo(oPC); + } + } +else + { + EradS(oPC); + DelayCommand(0.5, EradS(oPC)); + DelayCommand(1.0, EradS(oPC)); + DelayCommand(1.5, EradS(oPC)); + DelayCommand(5.0, CleanArea(oPC)); + } +} + + + +//void main (){} diff --git a/_module/nss/ered_1.nss b/_module/nss/ered_1.nss new file mode 100644 index 0000000..93850ea --- /dev/null +++ b/_module/nss/ered_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "eldone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ered_12.nss b/_module/nss/ered_12.nss new file mode 100644 index 0000000..c934134 --- /dev/null +++ b/_module/nss/ered_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "eldone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/evade_imbue.nss b/_module/nss/evade_imbue.nss new file mode 100644 index 0000000..f3d395c --- /dev/null +++ b/_module/nss/evade_imbue.nss @@ -0,0 +1,33 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyImprovedEvasion(); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_DUR_ELEMENTAL_SHIELD, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_GAS_EXPLOSION_MIND , OBJECT_SELF); +PCEffect(2.0,VFX_DUR_GLOBE_INVULNERABILITY, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/evil_rollplay.nss b/_module/nss/evil_rollplay.nss new file mode 100644 index 0000000..8553191 --- /dev/null +++ b/_module/nss/evil_rollplay.nss @@ -0,0 +1,31 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); + +if (GetAlignmentGoodEvil(oPC) == ALIGNMENT_EVIL) + { + FloatingTextStringOnCreature("You have been awarded for good rollplay", oPC); + CreateItemOnObject("faithdrink", oPC); + return; + } + else if (GetAlignmentGoodEvil(oPC) == ALIGNMENT_GOOD) + { + FloatingTextStringOnCreature("You have been penalised for poor rollplay", oPC); + AdjustAlignment(oPC, ALIGNMENT_EVIL, 10); + return; + } + else + { + FloatingTextStringOnCreature("Alignment shifted towards evil", oPC); + AdjustAlignment(oPC, ALIGNMENT_EVIL, 10); + } +} + diff --git a/_module/nss/examine_me.nss b/_module/nss/examine_me.nss new file mode 100644 index 0000000..b56ae14 --- /dev/null +++ b/_module/nss/examine_me.nss @@ -0,0 +1,8 @@ +void main() +{ +object oPC = GetLastUsedBy(); + object oObject = OBJECT_SELF; + AssignCommand(oPC,ClearAllActions()); + AssignCommand(oPC,ActionExamine(oObject)); + PlaySound("gui-select"); +} diff --git a/_module/nss/examine_self.nss b/_module/nss/examine_self.nss new file mode 100644 index 0000000..0164ebc --- /dev/null +++ b/_module/nss/examine_self.nss @@ -0,0 +1,5 @@ +void main() +{ +PlaySound("al_mg_ballmagic1"); +AssignCommand(GetLastUsedBy(), ActionExamine(OBJECT_SELF)); +} diff --git a/_module/nss/exit_arena.nss b/_module/nss/exit_arena.nss new file mode 100644 index 0000000..1c3babe --- /dev/null +++ b/_module/nss/exit_arena.nss @@ -0,0 +1,6 @@ +void main() +{ + SetLocalInt(GetExitingObject(),"arena", FALSE); + SendMessageToPC(GetExitingObject(),"You are no longer in ARENA mode. Regular death rules back in effect."); +} + diff --git a/_module/nss/fear_imbue.nss b/_module/nss/fear_imbue.nss new file mode 100644 index 0000000..d01d1e3 --- /dev/null +++ b/_module/nss/fear_imbue.nss @@ -0,0 +1,6 @@ +#include "immune_imbue" + +void main() +{ +ImmuneImbue(IP_CONST_IMMUNITYMISC_FEAR); +} diff --git a/_module/nss/fi_imbue25.nss b/_module/nss/fi_imbue25.nss new file mode 100644 index 0000000..d731e01 --- /dev/null +++ b/_module/nss/fi_imbue25.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "fidone_1", 1); +DamRes(6,2); +} diff --git a/_module/nss/fi_imbue252.nss b/_module/nss/fi_imbue252.nss new file mode 100644 index 0000000..4904004 --- /dev/null +++ b/_module/nss/fi_imbue252.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "fidone_12", 1); +DamRes2(6,2); +} diff --git a/_module/nss/fidone_1.nss b/_module/nss/fidone_1.nss new file mode 100644 index 0000000..eabc2e3 --- /dev/null +++ b/_module/nss/fidone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fidone_12.nss b/_module/nss/fidone_12.nss new file mode 100644 index 0000000..5691658 --- /dev/null +++ b/_module/nss/fidone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fidred_imbue_2.nss b/_module/nss/fidred_imbue_2.nss new file mode 100644 index 0000000..18959d1 --- /dev/null +++ b/_module/nss/fidred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "fidone_2", 1); +DamRes(6,3); +} diff --git a/_module/nss/fidred_imbue_22.nss b/_module/nss/fidred_imbue_22.nss new file mode 100644 index 0000000..06960c5 --- /dev/null +++ b/_module/nss/fidred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "fidone_22", 1); +DamRes2(6,3); +} diff --git a/_module/nss/fidred_imbue_3.nss b/_module/nss/fidred_imbue_3.nss new file mode 100644 index 0000000..c176aac --- /dev/null +++ b/_module/nss/fidred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "fidone_3", 1); +DamRes(6,4); +} diff --git a/_module/nss/fidred_imbue_32.nss b/_module/nss/fidred_imbue_32.nss new file mode 100644 index 0000000..767a50e --- /dev/null +++ b/_module/nss/fidred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "fidone_32", 1); +SetLocalInt(oPC, "fimax_reduction2", 1); +DamRes2(6,4); +} diff --git a/_module/nss/fidred_imbue_4.nss b/_module/nss/fidred_imbue_4.nss new file mode 100644 index 0000000..18966f6 --- /dev/null +++ b/_module/nss/fidred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "fidone_4", 1); +DamRes(6,5); +} diff --git a/_module/nss/fidred_imbue_5.nss b/_module/nss/fidred_imbue_5.nss new file mode 100644 index 0000000..c33536e --- /dev/null +++ b/_module/nss/fidred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "fidone_5", 1); +SetLocalInt(oPC, "fimax_reduction", 1); +DamRes(6,6); +} diff --git a/_module/nss/fied1_1.nss b/_module/nss/fied1_1.nss new file mode 100644 index 0000000..5d48a7e --- /dev/null +++ b/_module/nss/fied1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "fidone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "fidone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fied1_12.nss b/_module/nss/fied1_12.nss new file mode 100644 index 0000000..3d0f01e --- /dev/null +++ b/_module/nss/fied1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "fidone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "fidone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fied_1.nss b/_module/nss/fied_1.nss new file mode 100644 index 0000000..b73a457 --- /dev/null +++ b/_module/nss/fied_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "fidone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fied_12.nss b/_module/nss/fied_12.nss new file mode 100644 index 0000000..9694ff5 --- /dev/null +++ b/_module/nss/fied_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "fidone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fimax_reached.nss b/_module/nss/fimax_reached.nss new file mode 100644 index 0000000..d8c9178 --- /dev/null +++ b/_module/nss/fimax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fimax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fimax_reached1.nss b/_module/nss/fimax_reached1.nss new file mode 100644 index 0000000..7230034 --- /dev/null +++ b/_module/nss/fimax_reached1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fimax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fimax_reached12.nss b/_module/nss/fimax_reached12.nss new file mode 100644 index 0000000..d25f4b6 --- /dev/null +++ b/_module/nss/fimax_reached12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fimax_reduction2") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fimax_reached2.nss b/_module/nss/fimax_reached2.nss new file mode 100644 index 0000000..0984048 --- /dev/null +++ b/_module/nss/fimax_reached2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fimax_reduction2") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/final_boss.nss b/_module/nss/final_boss.nss new file mode 100644 index 0000000..6d7c4c0 --- /dev/null +++ b/_module/nss/final_boss.nss @@ -0,0 +1,57 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_xx", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); + +if (GetItemPossessedBy(oPC, "duel_pass")== OBJECT_INVALID) + { + SetLocalInt(oPC, "final_on", 1); + SetLocalInt(oPC, "pc_FBhit", 0); + SetLocalInt(oPC, "pc_FBdam", 0); + SetLocalInt(oPC, "pc_FBswing", 0); + } + + +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("big_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "lucifer", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/final_boss2.nss b/_module/nss/final_boss2.nss new file mode 100644 index 0000000..aa0b0b1 --- /dev/null +++ b/_module/nss/final_boss2.nss @@ -0,0 +1,56 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_xx", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); + +if (GetItemPossessedBy(oPC, "duel_pass")== OBJECT_INVALID) + { + SetLocalInt(oPC, "final_on", 1); + SetLocalInt(oPC, "pc_FBhit", 0); + SetLocalInt(oPC, "pc_FBdam", 0); + SetLocalInt(oPC, "pc_FBswing", 0); + } + +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("big_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "angel", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/final_boss_n.nss b/_module/nss/final_boss_n.nss new file mode 100644 index 0000000..0f0bc25 --- /dev/null +++ b/_module/nss/final_boss_n.nss @@ -0,0 +1,57 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_xx", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); + +if (GetItemPossessedBy(oPC, "duel_pass")== OBJECT_INVALID) + { + SetLocalInt(oPC, "final_on", 1); + SetLocalInt(oPC, "pc_FBhit", 0); + SetLocalInt(oPC, "pc_FBdam", 0); + SetLocalInt(oPC, "pc_FBswing", 0); + } + + +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("big_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "tith", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/final_conv.nss b/_module/nss/final_conv.nss new file mode 100644 index 0000000..63d375f --- /dev/null +++ b/_module/nss/final_conv.nss @@ -0,0 +1,72 @@ +#include "in_g_cutscene" + +void main() +{ +object oPC = GetLastSpeaker(); +int iDice; +iDice = d20(); +switch (iDice) + { + case 1: {GestaltSpeak(0.0, OBJECT_SELF, + "Congratulations! You have completed the Arena of Champions module!" + ,ANIMATION_FIREFORGET_BOW);}break; + case 2: {GestaltSpeak(0.0, OBJECT_SELF, + "Get Lilac Soul's AMAZING script generator at http://nwvault.ign.com/Files/other/data/1044998316652.shtml" + ,ANIMATION_LOOPING_TALK_FORCEFUL, 8.0);}break; + case 3: {GestaltSpeak(0.0, OBJECT_SELF, + "The stat tracking system is sprawled over about 12 very powerful scripts!" + ,ANIMATION_LOOPING_TALK_PLEADING, 6.0);}break; + case 4: {GestaltSpeak(0.0, OBJECT_SELF, + "This mod was made possible by Lilac Soul's Script Generator! Without it, I wouldn't have gotten such a good start in the world of NWN scripting!" + ,ANIMATION_FIREFORGET_VICTORY2);}break; + case 5: {GestaltSpeak(0.0, OBJECT_SELF, + "Beware of the 'wouldn't be cool if...' ideas! They cost me an extra 300 hours of scripting! But it was worth it!" + ,ANIMATION_LOOPING_TALK_FORCEFUL, 6.0);}break; + case 6: {GestaltSpeak(0.0, OBJECT_SELF, + "Great job finishing this mod! Keep an eye out for the up and comming final version of Dragon's Bane!" + ,ANIMATION_FIREFORGET_BOW);}break; + case 7: {GestaltSpeak(0.0, OBJECT_SELF, + "The fantastic fireworks show was designed and written by Jay Clark (awol@puregamer.com)" + ,ANIMATION_FIREFORGET_VICTORY2);}break; + case 8: {GestaltSpeak(0.0, OBJECT_SELF, + "You can get Jay Clark's amazing fireworks script at http://nwvault.ign.com/Files/scripts/data/1094566001000.shtml" + ,ANIMATION_LOOPING_TALK_FORCEFUL, 8.0);}break; + case 9: {GestaltSpeak(0.0, OBJECT_SELF, + "This module took about 10 months of hardcore scripting to complete." + ,ANIMATION_LOOPING_TALK_PLEADING, 6.0);}break; + case 10: {GestaltSpeak(0.0, OBJECT_SELF, + "Don't be caught dead without having used the NWN Lexicon, your one stop place for all things scripting!" + ,ANIMATION_LOOPING_DEAD_FRONT, 8.0);}break; + case 11: {GestaltSpeak(0.0, OBJECT_SELF, + "Get the essential NWN Lexicon at http://nwvault.ign.com/Files/other/data/1027899441708.shtml!" + ,ANIMATION_LOOPING_TALK_PLEADING, 6.0);}break; + case 12: {GestaltSpeak(0.0, OBJECT_SELF, + "The extensive selection of items in the campaign manager warehouse was brought to you by Tristen!" + ,ANIMATION_FIREFORGET_BOW);}break; + case 13: {GestaltSpeak(0.0, OBJECT_SELF, + "Thanks to Tristen for his awesome work in his module 'Campaign Stockpiles' Store and Character Manager <>" + ,ANIMATION_LOOPING_TALK_PLEADING, 6.0);}break; + case 14: {GestaltSpeak(0.0, OBJECT_SELF, + "Check out Tristen's Campaigns and Stockpiles mod at http://nwvault.ign.com/Files/modules/data/1094498629000.shtml!" + ,ANIMATION_NONE);}break; + case 15: {GestaltSpeak(0.0, OBJECT_SELF, + "Make sure you check out my epic Hack'n'Slash module, Dragon's Bane at http://nwvault.ign.com/Files/modules/data/1093801803000.shtml" + ,ANIMATION_LOOPING_TALK_FORCEFUL, 6.0);}break; + case 16: {GestaltSpeak(0.0, OBJECT_SELF, + "The 'Eye of Amaterasu' is comprised of over 200 scripts!" + ,ANIMATION_LOOPING_DEAD_BACK, 8.0);}break; + case 17: {GestaltSpeak(0.0, OBJECT_SELF, + "This module is held together via a very complex web of about 2000 scripts!" + ,ANIMATION_FIREFORGET_VICTORY2);}break; + case 18: {GestaltSpeak(0.0, OBJECT_SELF, + "Don't be caught dead without having used the NWN Lexicon, your one stop place for all things scripting!" + ,ANIMATION_LOOPING_DEAD_FRONT, 8.0);}break; + case 19: {GestaltSpeak(0.0, OBJECT_SELF, + "Thanks to Bioware for the most replayable game in the history of gaming!" + ,ANIMATION_FIREFORGET_VICTORY3);}break; + case 20: {GestaltSpeak(0.0, OBJECT_SELF, + "The Arena of Champions was playtested for about 4 months solid before it's release!" + ,ANIMATION_LOOPING_DEAD_BACK, 8.0);}break; +} + +} diff --git a/_module/nss/final_conv2.nss b/_module/nss/final_conv2.nss new file mode 100644 index 0000000..338fff5 --- /dev/null +++ b/_module/nss/final_conv2.nss @@ -0,0 +1,72 @@ +#include "in_g_cutscene" + +void main() +{ +object oPC = GetLastSpeaker(); +int iDice; +iDice = d20(); +switch (iDice) + { + case 1: {GestaltSpeak(0.0, OBJECT_SELF, + "Don't forget to keep your eye out for the most awesomely scripted server online, Aventia. Spanned over 5 servers, this is the best out there!" + ,ANIMATION_FIREFORGET_BOW);}break; + case 2: {GestaltSpeak(0.0, OBJECT_SELF, + "For online gaming fun, check out the Australis Nordock HCR Server! It's not for the feint hearted though! *wink*" + ,ANIMATION_FIREFORGET_VICTORY2);}break; + case 3: {GestaltSpeak(0.0, OBJECT_SELF, + "Chris had bags under his eyes for a whole year making the AOC! *chuckle*" + ,ANIMATION_LOOPING_TALK_PLEADING, 6.0);}break; + case 4: {GestaltSpeak(0.0, OBJECT_SELF, + "The AOC started off as a simple character manager for playing around with builds!" + ,ANIMATION_FIREFORGET_VICTORY2);}break; + case 5: {GestaltSpeak(0.0, OBJECT_SELF, + "Always make several backups of your module when you are modding. There is no greater grief than losing hours upon hours of hard work!" + ,ANIMATION_LOOPING_TALK_FORCEFUL, 6.0);}break; + case 6: {GestaltSpeak(0.0, OBJECT_SELF, + "Great job finishing this mod! Keep an eye out for the up and comming final version of Dragon's Bane!" + ,ANIMATION_FIREFORGET_BOW);}break; + case 7: {GestaltSpeak(0.0, OBJECT_SELF, + "I played Dungeons and Dragons at school with 6 other lads. Now they were the days!" + ,ANIMATION_FIREFORGET_VICTORY2);}break; + case 8: {GestaltSpeak(0.0, OBJECT_SELF, + "Make sure you check out my epic Hack'n'Slash module, Dragon's Bane at http://nwvault.ign.com/Files/modules/data/1093801803000.shtml" + ,ANIMATION_LOOPING_TALK_FORCEFUL, 8.0);}break; + case 9: {GestaltSpeak(0.0, OBJECT_SELF, + "The music playing here was written by Slayer in the 1990s and is a track called 'Seasons in the Abyss'." + ,ANIMATION_LOOPING_TALK_PLEADING, 6.0);}break; + case 10: {GestaltSpeak(0.0, OBJECT_SELF, + "Don't be caught dead without having used the NWN Lexicon, your one stop place for all things scripting!" + ,ANIMATION_LOOPING_DEAD_FRONT, 8.0);}break; + case 11: {GestaltSpeak(0.0, OBJECT_SELF, + "Get the essential NWN Lexicon at http://nwvault.ign.com/Files/other/data/1027899441708.shtml!" + ,ANIMATION_LOOPING_TALK_PLEADING, 6.0);}break; + case 12: {GestaltSpeak(0.0, OBJECT_SELF, + "The extensive selection of items in the campaign manager warehouse was brought to you by Tristen!" + ,ANIMATION_FIREFORGET_BOW);}break; + case 13: {GestaltSpeak(0.0, OBJECT_SELF, + "Thanks to Tristen for his awesome work in his module 'Campaign Stockpiles' Store and Character Manager <>" + ,ANIMATION_LOOPING_TALK_PLEADING, 6.0);}break; + case 14: {GestaltSpeak(0.0, OBJECT_SELF, + "The track 'Stay' in Star Lake was written and rendered by Commche using Fruity Loops Studio 4 and Cool Edit Pro 2000!" + ,ANIMATION_NONE);}break; + case 15: {GestaltSpeak(0.0, OBJECT_SELF, + "Make sure you check out my epic Hack'n'Slash module, Dragon's Bane at http://nwvault.ign.com/Files/modules/data/1093801803000.shtml" + ,ANIMATION_LOOPING_TALK_FORCEFUL, 6.0);}break; + case 16: {GestaltSpeak(0.0, OBJECT_SELF, + "The 'Eye of Amaterasu' is comprised of over 200 scripts!" + ,ANIMATION_LOOPING_DEAD_BACK, 8.0);}break; + case 17: {GestaltSpeak(0.0, OBJECT_SELF, + "Commche has written and mastered 14 songs over the last 2 years!" + ,ANIMATION_FIREFORGET_VICTORY2);}break; + case 18: {GestaltSpeak(0.0, OBJECT_SELF, + "For some futuristic 1st person war action, check out Tribes Vengeance, the awesome sequel to Tribes II!" + ,ANIMATION_LOOPING_DEAD_FRONT, 8.0);}break; + case 19: {GestaltSpeak(0.0, OBJECT_SELF, + "Thanks to Bioware for the most replayable game in the history of gaming!" + ,ANIMATION_FIREFORGET_VICTORY3);}break; + case 20: {GestaltSpeak(0.0, OBJECT_SELF, + "Commche is going to put modding on hold until he has finished Uni semester 1 2005!" + ,ANIMATION_LOOPING_DEAD_BACK, 8.0);}break; +} + +} diff --git a/_module/nss/final_conv3.nss b/_module/nss/final_conv3.nss new file mode 100644 index 0000000..a80f0e8 --- /dev/null +++ b/_module/nss/final_conv3.nss @@ -0,0 +1,14 @@ +#include "in_g_cutscene" + +void main() +{ +object oPC = GetLastSpeaker(); +string sTitle; +if (GetGender(oPC)==GENDER_MALE){sTitle="Sir";}else{sTitle="Lady";} + +GestaltSpeak(0.0, OBJECT_SELF, + "I am in complete awe of you, "+sTitle+" "+GetName(oPC) + ,ANIMATION_LOOPING_DEAD_BACK, 8.0); +} + + diff --git a/_module/nss/final_conv4.nss b/_module/nss/final_conv4.nss new file mode 100644 index 0000000..155baa8 --- /dev/null +++ b/_module/nss/final_conv4.nss @@ -0,0 +1,25 @@ +#include "in_g_cutscene" + +void main() +{ +object oPC = GetLastSpeaker(); +int iScore = GetLocalInt(oPC, "a_score"); +int iFs; +if (iScore<=2999) { iFs=1;} + if ((iScore>3000)&&(iScore<=5999)) { iFs=2;} + if ((iScore>6000)&&(iScore<=8999)) { iFs=3;} + if ((iScore>9000)&&(iScore<=11999)) { iFs=4;} + if ((iScore>12000)&&(iScore<=14999)) { iFs=5;} + if ((iScore>15000)&&(iScore<=17999)) { iFs=6;} + if ((iScore>18000)&&(iScore<=20999)) { iFs=7;} + if ((iScore>21000)&&(iScore<=23999)) { iFs=8;} + if ((iScore>24000)&&(iScore<=26999)) { iFs=9;} + if (iScore>27000) { iFs=10;} + +GestaltSpeak(0.0, OBJECT_SELF, + "Your character build and player performance rating on a scale of 1 to 10 is ** " + +IntToString(iFs)+" **" + ,ANIMATION_FIREFORGET_VICTORY2); +} + + diff --git a/_module/nss/final_conv5.nss b/_module/nss/final_conv5.nss new file mode 100644 index 0000000..a50e28d --- /dev/null +++ b/_module/nss/final_conv5.nss @@ -0,0 +1,22 @@ +#include "in_g_cutscene" + +void main() +{ +object oPC = GetLastSpeaker(); +int iScore = GetLocalInt(oPC, "a_score"); +int iFs; +int iDied = GetLocalInt (oPC,"iDied"); +int iKilled = GetLocalInt (oPC,"iKilled"); +int iDam = GetLocalInt(oPC, "player_dd"); +int iHit = GetLocalInt(oPC, "pc_hit"); +int iSwing = GetLocalInt(oPC, "pc_swing"); +string sRank = GetLocalString(oPC, "rank"); +int iRankNo = GetLocalInt(oPC, "status"); + +GestaltSpeak(0.0, OBJECT_SELF, + "You achieved "+IntToString(iKilled)+" victories and "+IntToString(iDied)+ + " defeats" + ,ANIMATION_FIREFORGET_VICTORY1); +} + + diff --git a/_module/nss/final_conv6.nss b/_module/nss/final_conv6.nss new file mode 100644 index 0000000..58b6f0e --- /dev/null +++ b/_module/nss/final_conv6.nss @@ -0,0 +1,26 @@ +#include "in_g_cutscene" + +void main() +{ +object oPC = GetLastSpeaker(); +int iScore = GetLocalInt(oPC, "a_score"); +int iFs; +int iAv; +int iDied = GetLocalInt (oPC,"iDied"); +int iKilled = GetLocalInt (oPC,"iKilled"); +int iDam = GetLocalInt(oPC, "player_dd"); +int iHit = GetLocalInt(oPC, "pc_hit"); +int iSwing = GetLocalInt(oPC, "pc_swing"); +string sRank = GetLocalString(oPC, "rank"); +int iRankNo = GetLocalInt(oPC, "status"); + +if (iHit!=0){iAv = iDam / iHit; } +else {iAv = 0;} + +GestaltSpeak(0.0, OBJECT_SELF, + "You dealt a total of "+IntToString(iDam)+" damage with an average strike dealing "+IntToString(iAv)+ + " points" + ,ANIMATION_FIREFORGET_VICTORY3); +} + + diff --git a/_module/nss/final_conv7.nss b/_module/nss/final_conv7.nss new file mode 100644 index 0000000..1b7c205 --- /dev/null +++ b/_module/nss/final_conv7.nss @@ -0,0 +1,29 @@ +#include "in_g_cutscene" + +void main() +{ +object oPC = GetLastSpeaker(); +int iScore = GetLocalInt(oPC, "a_score"); +int iFs; +float fPerc; +int iPerc; +int iDied = GetLocalInt (oPC,"iDied"); +int iKilled = GetLocalInt (oPC,"iKilled"); +int iDam = GetLocalInt(oPC, "player_dd"); +int iHit = GetLocalInt(oPC, "pc_hit"); +int iSwing = GetLocalInt(oPC, "pc_swing"); +string sRank = GetLocalString(oPC, "rank"); +int iRankNo = GetLocalInt(oPC, "status"); + +if (iSwing!=0){fPerc = (IntToFloat(iHit) / IntToFloat(iSwing))*100;} +else {fPerc = 0.0;} + +iPerc = FloatToInt(fPerc); + +GestaltSpeak(0.0, OBJECT_SELF, + "You unleashed "+IntToString(iSwing)+" attacks and succeeded with "+IntToString(iPerc)+ + "% of them" + ,ANIMATION_FIREFORGET_VICTORY3); +} + + diff --git a/_module/nss/final_cutscene.nss b/_module/nss/final_cutscene.nss new file mode 100644 index 0000000..bc95f94 --- /dev/null +++ b/_module/nss/final_cutscene.nss @@ -0,0 +1,998 @@ +#include "cutscene_ch1" + +void CSsound(float oDelay, string sSound, object oPC) +{ + DelayCommand(oDelay, AssignCommand(oPC, PlaySound(sSound))); +} + +void MCheerDark(object oPC) +{ + CSsound(0.0, "as_pl_nobyaygrp2", oPC); + CSsound(0.1, "as_pl_comyaygrp2", oPC); + CSsound(0.2, "vs_hprostm2_vict", oPC); + CSsound(0.3, "vs_fcallahm_vict", oPC); + CSsound(0.1, "vs_nwncomf4_vict", oPC); + CSsound(0.4, "vs_ngnbarm2_vict", oPC); + CSsound(0.2, "vs_ndwhitem_vict", oPC); +} + +void MCheerLight(object oPC) +{ + CSsound(0.0, "as_pl_nobyaygrp2", oPC); + CSsound(0.1, "as_pl_comyaygrp2", oPC); + CSsound(0.2, "vs_faven3m_vict", oPC); + CSsound(0.3, "vs_ndgreenf_vict", oPC); + CSsound(0.1, "vs_nclerimi_vict", oPC); + CSsound(0.2, "vs_nprostf1_vict", oPC); + CSsound(0.4, "vs_fx0subtm_vict", oPC); +} + + void MCheerNPC(object oPC) +{ + CSsound(0.0, "as_pl_nobyaygrp2", oPC); + CSsound(0.2, "vs_fx2archm_vict", oPC); + CSsound(0.4, "vs_nprelum4_vict", oPC); + CSsound(0.6, "vs_sirilm_vict", oPC); + CSsound(0.8, "vs_ngendm_vict", oPC); +} + + + +void DarkAnim() +{ + int iDice; + GestaltAnimate(0.2, GetObjectByTag("dlarge_1"), ANIMATION_FIREFORGET_TAUNT); + GestaltAnimate(0.4, GetObjectByTag("dlarge_2"), ANIMATION_FIREFORGET_TAUNT); + GestaltAnimate(0.6, GetObjectByTag("dlarge_3"), ANIMATION_FIREFORGET_TAUNT); + GestaltAnimate(0.8, GetObjectByTag("dlarge_4"), ANIMATION_FIREFORGET_TAUNT); + GestaltAnimate(1.0, GetObjectByTag("dlarge_5"), ANIMATION_FIREFORGET_TAUNT); + GestaltAnimate(1.2, GetObjectByTag("dlarge_6"), ANIMATION_FIREFORGET_TAUNT); + GestaltAnimate(1.4, GetObjectByTag("dlarge_7"), ANIMATION_FIREFORGET_TAUNT); + GestaltAnimate(1.6, GetObjectByTag("dlarge_8"), ANIMATION_FIREFORGET_TAUNT); + iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(0.4, GetObjectByTag("d1"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(0.4, GetObjectByTag("d1"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(0.4, GetObjectByTag("d1"), ANIMATION_FIREFORGET_VICTORY3);}break; + } +iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(0.8, GetObjectByTag("d2"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(0.8, GetObjectByTag("d2"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(0.8, GetObjectByTag("d2"), ANIMATION_FIREFORGET_VICTORY3);}break; + } +iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(1.2, GetObjectByTag("d3"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(1.2, GetObjectByTag("d3"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(1.2, GetObjectByTag("d3"), ANIMATION_FIREFORGET_VICTORY3);}break; + } + +} + +void LightAnim() +{ + int iDice; + GestaltAnimate(0.4, GetObjectByTag("llarge_1"), ANIMATION_FIREFORGET_TAUNT); + GestaltAnimate(0.8, GetObjectByTag("llarge_2"), ANIMATION_FIREFORGET_TAUNT); + GestaltAnimate(1.2, GetObjectByTag("llarge_3"), ANIMATION_FIREFORGET_TAUNT); + GestaltAnimate(1.8, GetObjectByTag("llarge_4"), ANIMATION_FIREFORGET_TAUNT); + + iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(0.4, GetObjectByTag("l1"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(0.4, GetObjectByTag("l1"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(0.4, GetObjectByTag("l1"), ANIMATION_FIREFORGET_VICTORY3);}break; + } +iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(0.8, GetObjectByTag("l2"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(0.8, GetObjectByTag("l2"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(0.8, GetObjectByTag("l2"), ANIMATION_FIREFORGET_VICTORY3);}break; + } +iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(0.2, GetObjectByTag("l3"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(0.2, GetObjectByTag("l3"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(0.2, GetObjectByTag("l3"), ANIMATION_FIREFORGET_VICTORY3);}break; + } +iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(0.6, GetObjectByTag("l4"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(0.6, GetObjectByTag("l4"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(0.6, GetObjectByTag("l4"), ANIMATION_FIREFORGET_VICTORY3);}break; + } +iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(1.8, GetObjectByTag("l5"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(1.8, GetObjectByTag("l5"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(1.8, GetObjectByTag("l5"), ANIMATION_FIREFORGET_VICTORY3);}break; + } +iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(1.0, GetObjectByTag("l6"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(1.0, GetObjectByTag("l6"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(1.0, GetObjectByTag("l6"), ANIMATION_FIREFORGET_VICTORY3);}break; + } + +} + +void NPCAnim() +{ + int iDice; + + iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(0.0, GetObjectByTag("npc1"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(0.0, GetObjectByTag("npc1"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(0.0, GetObjectByTag("npc1"), ANIMATION_FIREFORGET_VICTORY3);}break; + } +iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(0.2, GetObjectByTag("npc2"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(0.2, GetObjectByTag("npc2"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(0.2, GetObjectByTag("npc2"), ANIMATION_FIREFORGET_VICTORY3);}break; + } +iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(0.4, GetObjectByTag("npc3"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(0.4, GetObjectByTag("npc3"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(0.4, GetObjectByTag("npc3"), ANIMATION_FIREFORGET_VICTORY3);}break; + } +iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(0.6, GetObjectByTag("npc4"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(0.6, GetObjectByTag("npc4"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(0.6, GetObjectByTag("npc4"), ANIMATION_FIREFORGET_VICTORY3);}break; + } +iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(0.8, GetObjectByTag("g_angel10"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(0.8, GetObjectByTag("g_angel10"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(0.8, GetObjectByTag("g_angel10"), ANIMATION_FIREFORGET_VICTORY3);}break; + } +iDice = d3(); + switch(iDice) + { + case 1:{GestaltAnimate(1.0, GetObjectByTag("g_angel11"), ANIMATION_FIREFORGET_VICTORY1);}break; + case 2:{GestaltAnimate(1.0, GetObjectByTag("g_angel11"), ANIMATION_FIREFORGET_VICTORY2);}break; + case 3:{GestaltAnimate(1.0, GetObjectByTag("g_angel11"), ANIMATION_FIREFORGET_VICTORY3);}break; + } + +} + +void MassCheerDark(float oDelay, object oPC) +{ + DelayCommand(oDelay, DarkAnim()); + DelayCommand(oDelay+0.2, MCheerDark(oPC)); +} + +void MassCheerLight(float oDelay, object oPC) +{ + DelayCommand(oDelay, LightAnim()); + DelayCommand(oDelay+0.2, MCheerLight(oPC)); +} + +void MassCheerAll(float oDelay, object oPC) +{ + DelayCommand(oDelay, DarkAnim()); + DelayCommand(oDelay+0.2, MCheerDark(oPC)); + DelayCommand(oDelay, LightAnim()); + DelayCommand(oDelay+0.2, MCheerLight(oPC)); +} + +void MassCheerNPC(float oDelay, object oPC) +{ + DelayCommand(oDelay, MCheerNPC(oPC)); + DelayCommand(oDelay, NPCAnim()); +} + + +void FlyOff(object oPC) +{ +GestaltApplyEffect(1.0, oPC, EffectVisualEffect(VFX_IMP_PULSE_WIND), INSTANT); +GestaltApplyEffect(0.0, oPC, EffectDisappear(), PERMANENT); +} + + +void TakeFlight(float oDelay, object oPC) +{ +DelayCommand(oDelay, FlyOff(oPC)); +} + + +void Say(object oSelf, int iSet) +{ + +int iVoice; + + switch (iSet) + { + case 1: iVoice = VOICE_CHAT_ATTACK;break; + case 2: iVoice = VOICE_CHAT_BATTLECRY1;break; + case 3: iVoice = VOICE_CHAT_BATTLECRY2;break; + case 4: iVoice = VOICE_CHAT_BATTLECRY3;break; + case 5: iVoice = VOICE_CHAT_THREATEN;break; + case 6: iVoice = VOICE_CHAT_CHEER;break; + case 7: iVoice = VOICE_CHAT_CUSS;break; + case 8: iVoice = VOICE_CHAT_FLEE;break; + case 9: iVoice = VOICE_CHAT_GOODBYE;break; + case 10: iVoice = VOICE_CHAT_THANKS;break; + case 11: iVoice = VOICE_CHAT_WEAPONSUCKS;break; + case 12: iVoice = VOICE_CHAT_LAUGH;break; + case 13: iVoice = VOICE_CHAT_HELLO;break; + case 14: iVoice = VOICE_CHAT_FOLLOWME;break; + case 15: iVoice = VOICE_CHAT_GOODIDEA;break; + case 16: iVoice = VOICE_CHAT_REST;break; + case 17: iVoice = VOICE_CHAT_YES;break; + case 18: iVoice = VOICE_CHAT_THANKS;break; + + } +AssignCommand(oSelf, PlayVoiceChat(iVoice)); +} + +void SetWrath2() +{ +object oTarget = GetWaypointByTag("phoenix_wp"); + object oArea = GetArea(oTarget); + float z = 0.5; + float x,y,tx,ty; + float fAngle = 30.0; + int nCount; + vector nTarget = GetPosition(oTarget); + vector nCreate; + string sTag; + tx = nTarget.x; + ty = nTarget.y; + + //12 small targets in a clock pattern + for(nCount = 1;nCount < 13;nCount++) + { + x = tx + (cos(fAngle)*10); + y = ty + (sin(fAngle)*10); + sTag = "FireworksSTarget" + IntToString(nCount); + CreateObject(OBJECT_TYPE_PLACEABLE,"fireworksstarget",Location(oArea,Vector(x,y,z),0.0),FALSE,sTag); + fAngle += 30.0; + } + + x = tx; + y = ty; + //3 Medium and Large targets same x,y different z + for (nCount = 1;nCount < 4;nCount++) + { + + sTag = "FireworksLTarget" + IntToString(nCount); + CreateObject(OBJECT_TYPE_PLACEABLE,"fireworksltarget",Location(oArea,Vector(x,y,z),0.0),FALSE,sTag); + z += 1.5; + } + +} + +void CleanTargs2() +{ + object oSTarget1 = GetObjectByTag("FireworksSTarget1"); + object oSTarget2 = GetObjectByTag("FireworksSTarget2"); + object oSTarget3 = GetObjectByTag("FireworksSTarget3"); + object oSTarget4 = GetObjectByTag("FireworksSTarget4"); + object oSTarget5 = GetObjectByTag("FireworksSTarget5"); + object oSTarget6 = GetObjectByTag("FireworksSTarget6"); + object oSTarget7 = GetObjectByTag("FireworksSTarget7"); + object oSTarget8 = GetObjectByTag("FireworksSTarget8"); + object oSTarget9 = GetObjectByTag("FireworksSTarget9"); + object oSTarget10 = GetObjectByTag("FireworksSTarget10"); + object oSTarget11 = GetObjectByTag("FireworksSTarget11"); + object oSTarget12 = GetObjectByTag("FireworksSTarget12"); + object oMTarget = GetObjectByTag("FireworksMTarget3"); + object oMTarget1 = GetObjectByTag("FireworksMTarget1"); + object oMTarget2 = GetObjectByTag("FireworksMTarget2"); + object oLTarget = GetObjectByTag("FireworksLTarget3"); + object oLTarget1 = GetObjectByTag("FireworksLTarget1"); + object oLTarget2 = GetObjectByTag("FireworksLTarget2"); + float fTimeDelay = 3.0; + DestroyObject(oSTarget1,fTimeDelay); + DestroyObject(oSTarget2,fTimeDelay); + DestroyObject(oSTarget3,fTimeDelay); + DestroyObject(oSTarget4,fTimeDelay); + DestroyObject(oSTarget5,fTimeDelay); + DestroyObject(oSTarget6,fTimeDelay); + DestroyObject(oSTarget7,fTimeDelay); + DestroyObject(oSTarget8,fTimeDelay); + DestroyObject(oSTarget9,fTimeDelay); + DestroyObject(oSTarget10,fTimeDelay); + DestroyObject(oSTarget11,fTimeDelay); + DestroyObject(oSTarget1,fTimeDelay); + DestroyObject(oMTarget,fTimeDelay); + DestroyObject(oMTarget2,fTimeDelay); + DestroyObject(oMTarget,fTimeDelay); + DestroyObject(oLTarget1,fTimeDelay); + DestroyObject(oLTarget,fTimeDelay); + DestroyObject(oLTarget,fTimeDelay); +} + + + + + +void main() +{ + +// initialise player + +object oPC = GetEnteringObject(); +object oMod = GetModule(); +object oArea = GetArea(oPC); + +if (!GetIsPC(oPC))return; +if (GetItemPossessedBy(oPC, "final_ring")!=OBJECT_INVALID)return; + +// Initialize integers + +int iAv; +float fPerc; +int iPerc; +int tScore; +int iSwing; +int iHit; +int iDam; +int aScore; +int iKilled; +int iDied; +int iRankNo; +string sRank; +string sTookOut; +string sDeaths; +int iDice; +int iAlign; + +int iAlignment = GetAlignmentGoodEvil(oPC); +if (iAlignment == ALIGNMENT_EVIL){iAlign = 2;} +else {iAlign = 1;} + +iDied = GetLocalInt (oPC,"iDied"); +iKilled = GetLocalInt (oPC,"iKilled"); +iDam = GetLocalInt(oPC, "player_dd"); +iHit = GetLocalInt(oPC, "pc_hit"); +iSwing = GetLocalInt(oPC, "pc_swing"); +aScore = GetLocalInt(oPC, "a_score"); +sRank = GetLocalString(oPC, "rank"); +iRankNo = GetLocalInt(oPC, "status"); + +// initialize strings + +string sSFtalk1, sSFtalk2,sSFtalk3,sSFtalk4,sSFtalk5,sSFtalk6,sSFtalk7, + sSFtalk7a, sSFtalk8,sSFtalk9,sSFtalk10; + +CreateItemOnObject("final_ring", oPC); + +string sTitle; +if (GetGender(oPC)==GENDER_MALE){sTitle="Sir";}else{sTitle="Lady";} + +// calculate final stats and score + +if (iHit!=0){iAv = iDam / iHit; } +else {iAv = 0;} + +if (iSwing!=0){fPerc = (IntToFloat(iHit) / IntToFloat(iSwing))*100;} +else {fPerc = 0.0;} + +iPerc = FloatToInt(fPerc); + +tScore = (iPerc * iAv); +if (tScore!=0){aScore+=tScore;} +else {aScore += 0;} + +SetLocalInt(oPC, "a_score", aScore); + +// Construct stat report +iDice = d12(); +switch (iDice) + { + case 1: {sTookOut = "culled";}break; + case 2: {sTookOut = "schooled";}break; + case 3: {sTookOut = "slew";}break; + case 4: {sTookOut = "defeated";}break; + case 5: {sTookOut = "killed";}break; + case 6: {sTookOut = "destroyed";}break; + case 7: {sTookOut = "cleaved";}break; + case 8: {sTookOut = "dispatched";}break; + case 9: {sTookOut = "slaughtered";}break; + case 10: {sTookOut = "took out";}break; + case 11: {sTookOut = "dismembered";}break; + case 12: {sTookOut = "defeated";}break; + } + +sSFtalk1 = "Throughout your career, you "+sTookOut+" "+IntToString(iKilled)+" challengers and fell in battle "+IntToString(iDied)+" times."; +sSFtalk2 = "You gained "+IntToString(iRankNo)+" ranks out of a possible 19 and achieved the rank of "+sRank+"."; +sSFtalk3 = "You swung your weapon "+IntToString(iSwing)+" times and landed "+IntToString(iHit)+" blows."; +sSFtalk4 = "Therefore, "+IntToString(iPerc)+"% of your attacks were effective."; +sSFtalk5 = "You bled your opponents for a total "+IntToString(iDam)+" hit points, dealing an average of "+IntToString(iAv)+" damage per hit."; +sSFtalk8 = "Based on that performance, I award you "+IntToString(tScore)+" championship points, bringing your overall score to "+IntToString(aScore)+"."; + + +if (iPerc>=0) {sSFtalk7 = "Your overall performance was one of little or no skill "; } +if (iPerc>10) {sSFtalk7 = "Your overall performance was one of very low skill "; } +if (iPerc>20) {sSFtalk7 = "Your overall performance was one of average skill "; } +if (iPerc>30) {sSFtalk7 = "Your overall performance was one of moderate skill "; } +if (iPerc>40) {sSFtalk7 = "Your overall performance was one of high skill "; } +if (iPerc>50) {sSFtalk7 = "Your overall performance was one of very high skill "; } +if (iPerc>60) {sSFtalk7 = "Your overall performance was one of impressive skill "; } +if (iPerc>70) {sSFtalk7 = "Your overall performance was one of superior skill "; } +if (iPerc>80) {sSFtalk7 = "Your overall performance was one of incredible skill "; } +if (iPerc>90) {sSFtalk7 = "Your overall performance was one of supreme skill "; } + +if (iAv>=0) {sSFtalk7a = "and almost no power!"; } +if (iAv>10) {sSFtalk7a = "and very low power!"; } +if (iAv>20) {sSFtalk7a = "and low power!"; } +if (iAv>30) {sSFtalk7a = "and average power!"; } +if (iAv>40) {sSFtalk7a = "and threatening power!"; } +if (iAv>50) {sSFtalk7a = "and overwhelming power!"; } +if (iAv>70) {sSFtalk7a = "and formidible power!"; } +if (iAv>90) {sSFtalk7a = "and incredible power!"; } +if (iAv>100) {sSFtalk7a = "and supreme power!"; } +if (iAv>110) {sSFtalk7a = "and devastating power!"; } + +sSFtalk7+=sSFtalk7a; + +sSFtalk9 = "All hail "+sTitle+" "+GetName(oPC)+" the "+sRank+", Master of Champions and our newest... "; + +sSFtalk10 = "Supreeeeeeme Champion of the Areeeenaaaaaaaa!"; + +// initialise characters + +object oStarfall=GetObjectByTag("starfall_mc"), + oGuard1=GetObjectByTag("guard1"), + oGuard2=GetObjectByTag("guard2"), + oAngel1=GetObjectByTag("l_angel1"), + oAngel2=GetObjectByTag("l_angel2"), + oAngel3=GetObjectByTag("l_angel3"), + oAngel4=GetObjectByTag("l_angel4"), + oAngel5=GetObjectByTag("l_angel5"), + oDemon1=GetObjectByTag("d_angel1"), + oDemon2=GetObjectByTag("d_angel2"), + oDemon3=GetObjectByTag("d_angel3"), + oDemon4=GetObjectByTag("d_angel4"), + oDemon5=GetObjectByTag("d_angel5"), + oGabriel=GetObjectByTag("g_angel10"), + oMinion=GetObjectByTag("g_angel11"); + + + +// initialise effects + +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); + + +// initialise waypoionts + +object PCwp1=GetWaypointByTag("pc_final_wp"), + PCwp2=GetWaypointByTag("pc_final_wp2"), + PCwp3=GetWaypointByTag("pc_final_wp3"), + PCwp4=GetWaypointByTag("pc_final_wp4"), + SFwp1=GetWaypointByTag("starfall_final_wp"), + SFwp2=GetWaypointByTag("starfall_final_wp2"), + G1wp1=GetWaypointByTag("guard1_wp1"), + G1wp2=GetWaypointByTag("guard1_wp2"), + G2wp1=GetWaypointByTag("guard2_wp1"), + G2wp2=GetWaypointByTag("guard2_wp2"), + Awp1=GetWaypointByTag("angel_wp1"), + Awp2=GetWaypointByTag("angel_wp2"), + Dwp1=GetWaypointByTag("demon_wp1"), + Dwp2=GetWaypointByTag("demon_wp2"), + GuardFace=GetWaypointByTag("guard_face"), + NPCFace=GetWaypointByTag("npc_face"); + +// call subroutine to create vector waypoint for phoenix effect + +SetWrath2(); + +// phoenix dragon effect + +object oLTarget = GetObjectByTag("FireworksLTarget3"); +DelayCommand(83.0, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(488), + oLTarget)); + +// Initiate cutscene mode + +GestaltStartCutscene(oPC, "",TRUE,TRUE,TRUE,FALSE,2); + +// Fade camera in + +GestaltCameraFade(0.0, oPC, FADE_IN,FADE_SPEED_FAST); + + +DelayCommand(262.0, CutscenePlace("fw_portal3", "pc_final_wp")); + +//////////////////////////////////////////////// +//: :// +//: choreography :// +//: :// +//////////////////////////////////////////////// + +// Dialogue + GestaltSpeak(150.0, oStarfall, sSFtalk1, + ANIMATION_NONE); +GestaltSpeak(160.0, oStarfall, sSFtalk2, + ANIMATION_NONE); + +GestaltSpeak(170.0, oStarfall, sSFtalk3, + ANIMATION_NONE); +GestaltSpeak(180.0, oStarfall, sSFtalk4, + ANIMATION_NONE); + + GestaltSpeak(190.0, oStarfall, sSFtalk5, + ANIMATION_NONE); +GestaltSpeak(200.0, oStarfall, sSFtalk7, + ANIMATION_NONE); + +GestaltSpeak(210.0, oStarfall, sSFtalk8, + ANIMATION_NONE); +GestaltSpeak(220.0, oStarfall, sSFtalk9, + ANIMATION_NONE); + GestaltSpeak(228.0, oStarfall, sSFtalk10, + ANIMATION_FIREFORGET_VICTORY2); + + +DelayCommand(210.0, MusicBackgroundChangeDay(GetArea(oPC), 0)); +DelayCommand(210.0, MusicBackgroundChangeNight(GetArea(oPC), 0)); +DelayCommand(210.0, MusicBackgroundStop(GetArea(oPC))); + +GestaltActionAnimate(232.0, oPC, ANIMATION_FIREFORGET_BOW); +MassCheerNPC (231.5, oPC); + +//GestaltFace (234.0, oPC, 270.0, 0); +GestaltActionAnimate(234.5, oPC, ANIMATION_FIREFORGET_VICTORY3); +//MassCheerAll (235.0, oPC); + +GestaltFace (237.5, oPC, 225.0, 0); +GestaltActionAnimate(238.5, oPC, ANIMATION_FIREFORGET_BOW); +MassCheerLight (239.5, oPC); +GestaltActionAnimate(241.0, oPC, ANIMATION_FIREFORGET_VICTORY3); + +GestaltFace (243.0, oPC, 315.0, 0); +GestaltActionAnimate(244.0, oPC, ANIMATION_FIREFORGET_BOW); +MassCheerDark (245.0, oPC); +GestaltActionAnimate(246.5, oPC, ANIMATION_FIREFORGET_VICTORY3); + +GestaltFace (248.5, oPC, 90.0, 0); + + + +if (iAlign==1) + { + iDice = d4(); + switch(iDice) + { + case 1:{GestaltSpeak(252.5, oPC, "I wear my new title with great pride, mighty Angel...", + ANIMATION_FIREFORGET_BOW);}break; + case 2:{GestaltSpeak(252.5, oPC, "I vow to honour my role as Arena Champion with justice, integrity and might!", + ANIMATION_FIREFORGET_BOW); }break; + case 3:{GestaltSpeak(252.5, oPC, "I am honoured to wear my new title, divine and powerful angel!", + ANIMATION_FIREFORGET_BOW);} break; + case 4:{GestaltSpeak(252.5, oPC, "I bask at the hour of my glory, but I will always remember your superiority immortal overseer!", + ANIMATION_FIREFORGET_BOW); }break; + } + } +else + { + iDice = d4(); + switch(iDice) + { + case 1:{GestaltSpeak(252.5, oPC, "Shouldn't you all be kneeling...whelps...heh heh!", + ANIMATION_FIREFORGET_VICTORY2);}break; + case 2:{GestaltSpeak(252.5, oPC, "Alright! I am the greatest!", + ANIMATION_FIREFORGET_VICTORY3);}break; + case 3:{GestaltSpeak(252.5, oPC, "And just you remember who's boss around here from now on ok!!!!", + ANIMATION_LOOPING_TALK_FORCEFUL, 4.0); }break; + case 4:{GestaltSpeak(252.5, oPC, "Ahh the sweet taste of recognition! All hail to meeeee!", + ANIMATION_FIREFORGET_VICTORY2);}break; + } + } + +GestaltSpeak(258.0, oStarfall, "Congratulations and Farewell, "+sTitle+" "+GetName(oPC)+". See you back at the arena.", + ANIMATION_FIREFORGET_GREETING); + + + +GestaltFace (270.0, oGabriel, 0.0, 2, oPC); +GestaltActionAnimate(270.2, oGabriel, ANIMATION_FIREFORGET_GREETING); +GestaltFace (270.0, oMinion, 0.0, 2, oPC); +GestaltActionAnimate(270.2, oMinion, ANIMATION_FIREFORGET_GREETING); +TakeFlight(272.0, oStarfall); +TakeFlight(272.3, oGabriel); +TakeFlight(272.6, oMinion); + +// PC and guards move to WP1 + +AssignCommand(oPC, ClearAllActions()); + +GestaltActionMove(0.0,oPC, PCwp2, FALSE, 0.0, 35.0); +GestaltActionMove(0.0,oGuard1, G1wp1, FALSE, 0.0, 25.0); +GestaltActionMove(0.0,oGuard2, G2wp1, FALSE, 0.0, 25.0); + +// Angels & Demons kneel as Hero passes + +GestaltActionAnimate(3.0, oAngel1, ANIMATION_LOOPING_MEDITATE, 500.0); +GestaltActionAnimate(3.0, oDemon1, ANIMATION_LOOPING_MEDITATE, 500.0); + + +GestaltActionAnimate(6.5, oAngel2, ANIMATION_LOOPING_MEDITATE, 500.0); +GestaltActionAnimate(6.5, oDemon2, ANIMATION_LOOPING_MEDITATE, 500.0); + + + +GestaltActionAnimate(10.5, oAngel3, ANIMATION_LOOPING_MEDITATE, 500.0); +GestaltActionAnimate(10.5, oDemon3, ANIMATION_LOOPING_MEDITATE, 500.0); + + +GestaltActionAnimate(14.5, oAngel4, ANIMATION_LOOPING_MEDITATE, 500.0); +GestaltActionAnimate(14.5, oDemon4, ANIMATION_LOOPING_MEDITATE, 500.0); + + +// effect on kneeling angels +int eVisual = VFX_DUR_GLOBE_INVULNERABILITY; + + +GestaltApplyEffect(4.0, oAngel1, EffectVisualEffect(VFX_IMP_MAGIC_PROTECTION), PERMANENT); +GestaltApplyEffect(5.0, oAngel1, EffectVisualEffect(eVisual), PERMANENT); +GestaltApplyEffect(4.5, oDemon1, EffectVisualEffect(VFX_DUR_ELEMENTAL_SHIELD), PERMANENT); + +GestaltApplyEffect(7.5, oAngel2, EffectVisualEffect(VFX_IMP_MAGIC_PROTECTION), PERMANENT); +GestaltApplyEffect(8.5, oAngel2, EffectVisualEffect(eVisual), PERMANENT); +GestaltApplyEffect(8.0, oDemon2, EffectVisualEffect(VFX_DUR_ELEMENTAL_SHIELD), PERMANENT); + +GestaltApplyEffect(11.5, oAngel3, EffectVisualEffect(VFX_IMP_MAGIC_PROTECTION), PERMANENT); +GestaltApplyEffect(12.5, oAngel3, EffectVisualEffect(eVisual), PERMANENT); +GestaltApplyEffect(12.0, oDemon3, EffectVisualEffect(VFX_DUR_ELEMENTAL_SHIELD), PERMANENT); + +GestaltApplyEffect(15.5, oAngel4, EffectVisualEffect(VFX_IMP_MAGIC_PROTECTION), PERMANENT); +GestaltApplyEffect(16.5, oAngel4, EffectVisualEffect(eVisual), PERMANENT); +GestaltApplyEffect(16.0, oDemon4, EffectVisualEffect(VFX_DUR_ELEMENTAL_SHIELD), PERMANENT); + + +// Guards peel off, face PC and worship + +GestaltActionMove(13.5, oGuard1, G1wp2, FALSE, 0.0, 0.0); +GestaltActionMove(13.5, oGuard2, G2wp2, FALSE, 0.0, 0.0); + +GestaltFace(18.5, oGuard1, 0.0, 0); +GestaltFace(18.5, oGuard2, 180.0, 0); + +GestaltActionAnimate(19.0, oGuard1, ANIMATION_LOOPING_WORSHIP, 10.0); +GestaltActionAnimate(19.0, oGuard2, ANIMATION_LOOPING_WORSHIP, 10.0); + +GestaltAmbientSound(32.0,oArea, TRUE, 0.0, 80); +GestaltAmbientSound(42.0,oArea, TRUE, 0.0, 90); +GestaltAmbientSound(50.0,oArea, TRUE, 0.0, 100); + +// Angels fall in and escort PC + +GestaltActionAnimate(35.0, oAngel5, ANIMATION_FIREFORGET_BOW); +GestaltActionAnimate(35.0, oDemon5, ANIMATION_FIREFORGET_BOW); + +GestaltActionMove(39.0, oAngel5, Awp1, FALSE, 0.0, 3.0); +GestaltActionMove(39.0, oDemon5, Dwp1, FALSE, 0.0, 3.0); + +GestaltActionMove(41.0, oAngel5, Awp2, FALSE, 0.0, 26.0); +GestaltActionMove(41.0, oDemon5, Dwp2, FALSE, 0.0, 26.0); + +// PC puts away arms + +GestaltActionUnequip(46.0, oPC, INVENTORY_SLOT_LEFTHAND); +GestaltActionUnequip(46.5, oPC, INVENTORY_SLOT_RIGHTHAND); + + +// Starfall walks out to greet PC + + +iDice = d4(); +switch (iDice) + { + case 1: {GestaltSpeak(59.0, oStarfall, "Well, I'm glad you decided to show up *wink*!", + ANIMATION_NONE);}break; + case 2: {GestaltSpeak(59.0, oStarfall, "Good to see you here, "+GetName(oPC)+".", + ANIMATION_NONE);}break; + case 3: {GestaltSpeak(59.0, oStarfall, "Rather peaceful in Limbo isn't it! Let the ceremony begin!", + ANIMATION_NONE);}break; + case 4: {GestaltSpeak(59.0, oStarfall, "Welcome to the hall of champions!", + ANIMATION_NONE);}break; + } + + +if (iAlign==1) + { + iDice = d4(); + switch(iDice) + { + case 1:{GestaltSpeak(65.0, oPC, "I am ready, great Starfall!", + ANIMATION_FIREFORGET_BOW);}break; + case 2:{GestaltSpeak(65.0, oPC, "I am ready to begin the ceremony!", + ANIMATION_FIREFORGET_BOW); }break; + case 3:{GestaltSpeak(65.0, oPC, "I am honured to recieve your recognition, mighty Starfall!", + ANIMATION_FIREFORGET_BOW);} break; + case 4:{GestaltSpeak(65.0, oPC, "Begin as you like, Starfall. I am ready", + ANIMATION_FIREFORGET_BOW); }break; + } + } +else + { + iDice = d4(); + switch(iDice) + { + case 1:{GestaltSpeak(65.0, oPC, "Hey! Where's Mephisto? And who are you?!", + ANIMATION_NONE);}break; + case 2:{GestaltSpeak(65.0, oPC, "Limbo shmimbo! And where's Mephisto? That ship jumper!!!", + ANIMATION_LOOPING_TALK_FORCEFUL, 3.0);}break; + case 3:{GestaltSpeak(65.0, oPC, "Warm up the cheerios, I'm here to partaaay!", + ANIMATION_LOOPING_TALK_FORCEFUL, 3.0); }break; + case 4:{GestaltSpeak(65.0, oPC, "Where did that goat headed fool, Mephisto go? And who are you?!", + ANIMATION_LOOPING_TALK_FORCEFUL, 3.0);}break; + } + } + +iDice = d4(); +switch (iDice) + { + case 1: {GestaltSpeak(70.0, oStarfall, "We gather here today to appoint our newest Supreme Champion of the Arena.", + ANIMATION_NONE);}break; + case 2: {GestaltSpeak(70.0, oStarfall, "We are here to witness the making of our new Supreme Champion of the Arena.", + ANIMATION_NONE);}break; + case 3: {GestaltSpeak(70.0, oStarfall, "Today is a celebration of our newest Supreme Champion of the Arena.", + ANIMATION_NONE);}break; + case 4: {GestaltSpeak(70.0, oStarfall, "We all come together today to honour our newest Supreme Champion of the Arena.", + ANIMATION_NONE);}break; + } + +iDice = d4(); +switch (iDice) + { + case 1: {GestaltSpeak(75.0, oStarfall, "The Phoenix Dragon is about to fly in your honour!", + ANIMATION_NONE);}break; + case 2: {GestaltSpeak(75.0, oStarfall, "Look to the skies! The Phoenix Dragon will soar in your honour!", + ANIMATION_NONE);}break; + case 3: {GestaltSpeak(75.0, oStarfall, "The sky will fill with fire as the Phoenix Dragon honours your name!", + ANIMATION_NONE);}break; + case 4: {GestaltSpeak(75.0, oStarfall, "You have earned the respect of the immortal Phoenix Dragon!", + ANIMATION_NONE);}break; + } + + + +GestaltActionMove(41.0,oPC, PCwp3, FALSE, 0.0, 12.0); +GestaltActionMove(60.0,oStarfall, SFwp1, FALSE, 0.0, 10.0); + +// Angels fly off + +GestaltApplyEffect(54.7, oAngel5, EffectVisualEffect(VFX_IMP_PULSE_WIND), INSTANT); +GestaltApplyEffect(55.0, oDemon5, EffectVisualEffect(VFX_IMP_PULSE_WIND), INSTANT); + +GestaltApplyEffect(54.0, oAngel5, EffectDisappear(), PERMANENT); +GestaltApplyEffect(54.3, oDemon5, EffectDisappear(), PERMANENT); + +// Starfall calls phoenix dragon + +GestaltSpeak(82.0, oStarfall, "Behold the great Phoenix Dragon...!", + ANIMATION_FIREFORGET_VICTORY2); + + if (iAlign==1) + { + iDice = d4(); + switch(iDice) + { + case 1:{GestaltSpeak(88.0, oPC, "It truly is a magnificent creature!", + ANIMATION_NONE);}break; + case 2:{GestaltSpeak(88.0, oPC, "I am deeply honoured by this!", + ANIMATION_NONE); }break; + case 3:{GestaltSpeak(88.0, oPC, "While I am grateful...I am not worthy of such a beautiful creature!", + ANIMATION_NONE);} break; + case 4:{GestaltSpeak(88.0, oPC, "I am but a grain of sand next to the vast power of that creature!", + ANIMATION_NONE); }break; + } + } +else + { + iDice = d4(); + switch(iDice) + { + case 1:{GestaltSpeak(88.0, oPC, "I'd love to put a saddle on that baby!!", + ANIMATION_NONE);}break; + case 2:{GestaltSpeak(88.0, oPC, "Yeehaaar! Now THAT'S the shiyaaart!", + ANIMATION_NONE);}break; + case 3:{GestaltSpeak(88.0, oPC, "If only I had that sort of power at my disposal!", + ANIMATION_NONE); }break; + case 4:{GestaltSpeak(88.0, oPC, "Yeah BIG DEAL, its an oversized overcooked bird! Neeext!", + ANIMATION_NONE);}break; + } + } + +GestaltSpeak(96.0, oStarfall, "We still have much to learn from the Phoenix Dragon's immeasurable power.", + ANIMATION_NONE); + + +iDice = d4(); +switch (iDice) + { + case 1: {GestaltSpeak(104.0, oStarfall, "The time has come...Please step forward and kneel before me, champion", + ANIMATION_NONE);}break; + case 2: {GestaltSpeak(104.0, oStarfall, "It is time for you to recieve your new title as Supreme Champion! Kneel before me, "+GetName(oPC), + ANIMATION_NONE);}break; + case 3: {GestaltSpeak(104.0, oStarfall, "It gives me great pleasure to present to you your new title! Step forward and kneel, champion.", + ANIMATION_NONE);}break; + case 4: {GestaltSpeak(104.0, oStarfall, "Come forward and kneel before me, great champion. I have something for you!", + ANIMATION_NONE);}break; + } + + +iDice = d4(); +switch (iDice) + { + case 1: {GestaltSpeak(120.0, oStarfall, "I give you this ring, bestowed only upon those who have been deemed worthy of the title...", + ANIMATION_LOOPING_GET_MID, 5.0);}break; + case 2: {GestaltSpeak(120.0, oStarfall, "I place this ring on your finger, symbolising the eternal cycle of the giving and recieving of great power...", + ANIMATION_LOOPING_GET_MID, 5.0);}break; + case 3: {GestaltSpeak(120.0, oStarfall, "With this ring, I vest within thee the power to rightfully claim the title of....", + ANIMATION_LOOPING_GET_MID, 5.0);}break; + case 4: {GestaltSpeak(120.0, oStarfall, "As a symbol of the fellowship within the Academy of Champions, I present you this ring and give you your new title...", + ANIMATION_LOOPING_GET_MID, 5.0);}break; + } + + +GestaltSpeak(129.0, oStarfall, "Arise, "+sTitle+" "+GetName(oPC)+".", + ANIMATION_NONE, 5.0); + + +GestaltSpeak(134.0, oStarfall, "I now proclaim thee as the new...Supreme Champion of the Arena!", + ANIMATION_FIREFORGET_VICTORY1, 5.0); + + + iDice = d4(); +switch (iDice) + { + case 1: {GestaltSpeak(144.0, oStarfall, "Let us reflect on your performance throughout this season in the arena...", + ANIMATION_LOOPING_GET_MID, 5.0);}break; + case 2: {GestaltSpeak(144.0, oStarfall, "I would now like to reflect on your overall performance as you rose to supreme champion status...", + ANIMATION_LOOPING_GET_MID, 5.0);}break; + case 3: {GestaltSpeak(144.0, oStarfall, "It is now time to appraise your performance as a supreme champion in the Arena of Champions...", + ANIMATION_LOOPING_GET_MID, 5.0);}break; + case 4: {GestaltSpeak(144.0, oStarfall, "Let us follow tradition and look back on your overall performance...", + ANIMATION_LOOPING_GET_MID, 5.0);}break; + } + + + + +// PC turns, looks at dragon and looks back after sequence + +GestaltFace(84.0, oPC, 270.0, 0); +GestaltFace(91.0, oPC, 90.0, 0); + +// PC moves in and kneels in front of Starfall + +GestaltActionMove(112.0,oPC, PCwp4, FALSE, 0.0, 3.0); +GestaltActionAnimate(115.2, oPC, ANIMATION_LOOPING_MEDITATE, 15.0); + +// Starfall places ring on finger of PC + +//GestaltActionAnimate(120.5, oStarfall, ANIMATION_LOOPING_GET_MID, 5.0); + +// Starfall moves away and after a brief pause, turns to meet PC + +GestaltActionMove(126.0,oStarfall, SFwp2, FALSE, 0.0, 6.0); +GestaltFace(130.0, oStarfall, 270.0, 0); + +// All creatures cheer using their voice commands + +MassCheerAll(138.0, oPC); + +// Set up camera + +SetLocalFloat(oPC,"fCameraDirection",90.0); +SetLocalFloat(oPC,"fCameraRange",20.0); +SetLocalFloat(oPC,"fCameraPitch",10.0); + +// camera choreograpgy + +GestaltCameraMove (0.0, + 90.0,20.0,10.0, + 90.0, 12.0,70.0, + 10.0,30.0,oPC); + +GestaltCameraMove (10.0, + 90.0,12.0,70.0, + 90.0,12.0,80.0, + 20.0,30.0,oPC); + +GestaltCameraMove (30.0, + 90.0,12.0,80.0, + 90.0,15.0,70.0, + 10.0,30.0,oPC); + +GestaltCameraMove (40.0, + 90.0,15.0,70.0, + 90.0,11.0,75.0, + 10.0,30.0,oPC); + +GestaltCameraMove (50.0, + 90.0,11.0,75.0, + 90.0,14.0,70.0, + 4.0,30.0,oPC); + + +GestaltCameraMove (70.0, + 90.0,14.0,70.0, + 270.0,12.0,65.0, + 5.0,30.0,oPC); + +GestaltCameraMove (75.0, + 270.0,12.0,65.0, + 270.0,11.0,100.0, + 10.0,30.0,oPC); + +GestaltCameraMove (90.0, + 270.0,11.0,100.0, + 270.0,13.0,87.0, + 7.0,30.0,oPC); + +GestaltCameraMove (104.0, + 270.0,13.0,87.0, + 405.0,10.0,70.0, + 6.0,30.0,oPC); + +GestaltCameraMove (110.0, + 405.0,10.0,70.0, + 540.0,5.0,85.0, + 8.0,30.0,oPC); + +GestaltCameraMove (130.0, + 540.0,5.0,85.0, + 630.0,11.0,77.0, + 8.0,30.0,oPC); + +GestaltCameraMove (160.0, + 630.0,11.0,77.0, + 855.0,10.0,75.0, + 30.0,30.0,oPC); + + +GestaltCameraMove (190.0, + 855.0,10.0,75.0, + 990.0,25.0,35.0, + 20.0,30.0,oPC); + +GestaltCameraMove (210.0, + 990.0,25.0,35.0, + 1170.0,25.0,75.0, + 20.0,30.0,oPC); + +GestaltCameraMove (252.0, + 1170.0,25.0,75.0, + 1170.0,16.0,70.0, + 8.0,30.0,oPC); + +// Fade camera out + +GestaltCameraFade (275.0, oPC, FADE_OUT, FADE_SPEED_SLOW, 3.0); + +// end of cutscene + +GestaltStopCutscene (278.0, oPC); + + + +//clean all waypoints + +DelayCommand(300.0, CleanTargs2()); +} diff --git a/_module/nss/fire_check.nss b/_module/nss/fire_check.nss new file mode 100644 index 0000000..6071645 --- /dev/null +++ b/_module/nss/fire_check.nss @@ -0,0 +1,24 @@ +#include "prc_x2_itemprop" + +int StartingConditional() +{ + int oRapier = BASE_ITEM_RAPIER; + + object oItem = GetFirstItemInInventory(OBJECT_SELF); + if (GetBaseItemType(oItem)==oRapier) + { + if (GetItemHasItemProperty(oItem, IP_CONST_DAMAGETYPE_FIRE)) + return FALSE; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + if (GetBaseItemType(oItem)==oRapier) + { + if (GetItemHasItemProperty(oItem, IP_CONST_DAMAGETYPE_FIRE)) + return FALSE; + } + return TRUE; + + + + +} diff --git a/_module/nss/fire_imbue.nss b/_module/nss/fire_imbue.nss new file mode 100644 index 0000000..5c906b9 --- /dev/null +++ b/_module/nss/fire_imbue.nss @@ -0,0 +1,8 @@ +#include "imbue_include" +void main() +{ +SetLocalInt(GetPCSpeaker(), "fire_ldb", 1); +ImbueWeapon(VFX_FNF_GAS_EXPLOSION_FIRE, IP_CONST_DAMAGETYPE_FIRE); +} + + diff --git a/_module/nss/fire_imbue_arm.nss b/_module/nss/fire_imbue_arm.nss new file mode 100644 index 0000000..a976bd8 --- /dev/null +++ b/_module/nss/fire_imbue_arm.nss @@ -0,0 +1,7 @@ +#include "imbue_include" +void main() +{ +ImbueArmour(VFX_FNF_SUMMONDRAGON, IP_CONST_DAMAGETYPE_FIRE); +} + + diff --git a/_module/nss/fire_lbd1.nss b/_module/nss/fire_lbd1.nss new file mode 100644 index 0000000..284b1d2 --- /dev/null +++ b/_module/nss/fire_lbd1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fire_ldb") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1a.nss b/_module/nss/fire_lbd1a.nss new file mode 100644 index 0000000..f5878a3 --- /dev/null +++ b/_module/nss/fire_lbd1a.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "afire_ldb") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1aa.nss b/_module/nss/fire_lbd1aa.nss new file mode 100644 index 0000000..7608619 --- /dev/null +++ b/_module/nss/fire_lbd1aa.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "afire_ldb") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1b.nss b/_module/nss/fire_lbd1b.nss new file mode 100644 index 0000000..7ee8fd6 --- /dev/null +++ b/_module/nss/fire_lbd1b.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bfire_ldb") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1bb.nss b/_module/nss/fire_lbd1bb.nss new file mode 100644 index 0000000..8b81689 --- /dev/null +++ b/_module/nss/fire_lbd1bb.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bfire_ldb") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1c.nss b/_module/nss/fire_lbd1c.nss new file mode 100644 index 0000000..e529a09 --- /dev/null +++ b/_module/nss/fire_lbd1c.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "cfire_ldb") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1cc.nss b/_module/nss/fire_lbd1cc.nss new file mode 100644 index 0000000..a951dc2 --- /dev/null +++ b/_module/nss/fire_lbd1cc.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "cfire_ldb") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1d.nss b/_module/nss/fire_lbd1d.nss new file mode 100644 index 0000000..218c141 --- /dev/null +++ b/_module/nss/fire_lbd1d.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dfire_ldb") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "gamemode") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fire_lbd1da.nss b/_module/nss/fire_lbd1da.nss new file mode 100644 index 0000000..30e2a4a --- /dev/null +++ b/_module/nss/fire_lbd1da.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dfire_ldb") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "gamemode") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fire_lbd1dd.nss b/_module/nss/fire_lbd1dd.nss new file mode 100644 index 0000000..1028c84 --- /dev/null +++ b/_module/nss/fire_lbd1dd.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dfire_ldb") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1e.nss b/_module/nss/fire_lbd1e.nss new file mode 100644 index 0000000..401cccc --- /dev/null +++ b/_module/nss/fire_lbd1e.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "efire_ldb") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1ee.nss b/_module/nss/fire_lbd1ee.nss new file mode 100644 index 0000000..8ee66c5 --- /dev/null +++ b/_module/nss/fire_lbd1ee.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "efire_ldb") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1f.nss b/_module/nss/fire_lbd1f.nss new file mode 100644 index 0000000..8a1249b --- /dev/null +++ b/_module/nss/fire_lbd1f.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fire_ldb") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1mc.nss b/_module/nss/fire_lbd1mc.nss new file mode 100644 index 0000000..f33c884 --- /dev/null +++ b/_module/nss/fire_lbd1mc.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mcfire_ldb") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1mcmc.nss b/_module/nss/fire_lbd1mcmc.nss new file mode 100644 index 0000000..d361cca --- /dev/null +++ b/_module/nss/fire_lbd1mcmc.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mcfire_ldb") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1n.nss b/_module/nss/fire_lbd1n.nss new file mode 100644 index 0000000..f2c72d3 --- /dev/null +++ b/_module/nss/fire_lbd1n.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "nfire_ldb") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "gamemode") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fire_lbd1nn.nss b/_module/nss/fire_lbd1nn.nss new file mode 100644 index 0000000..5d6bd72 --- /dev/null +++ b/_module/nss/fire_lbd1nn.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "nfire_ldb") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "gamemode") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fire_lbd1p.nss b/_module/nss/fire_lbd1p.nss new file mode 100644 index 0000000..8794e3f --- /dev/null +++ b/_module/nss/fire_lbd1p.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "pfire_ldb") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1po.nss b/_module/nss/fire_lbd1po.nss new file mode 100644 index 0000000..01be306 --- /dev/null +++ b/_module/nss/fire_lbd1po.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "posfire_ldb") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1popo.nss b/_module/nss/fire_lbd1popo.nss new file mode 100644 index 0000000..c223fdb --- /dev/null +++ b/_module/nss/fire_lbd1popo.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "posfire_ldb") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1pp.nss b/_module/nss/fire_lbd1pp.nss new file mode 100644 index 0000000..c76e72c --- /dev/null +++ b/_module/nss/fire_lbd1pp.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "pfire_ldb") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1s.nss b/_module/nss/fire_lbd1s.nss new file mode 100644 index 0000000..5d00274 --- /dev/null +++ b/_module/nss/fire_lbd1s.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sfire_ldb") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1so.nss b/_module/nss/fire_lbd1so.nss new file mode 100644 index 0000000..d6693ed --- /dev/null +++ b/_module/nss/fire_lbd1so.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sofire_ldb") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1soso.nss b/_module/nss/fire_lbd1soso.nss new file mode 100644 index 0000000..962c0ea --- /dev/null +++ b/_module/nss/fire_lbd1soso.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sofire_ldb") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fire_lbd1ss.nss b/_module/nss/fire_lbd1ss.nss new file mode 100644 index 0000000..c2c5294 --- /dev/null +++ b/_module/nss/fire_lbd1ss.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fire_lbd1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 1:54:22 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sfire_ldb") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fired_0.nss b/_module/nss/fired_0.nss new file mode 100644 index 0000000..cc015ba --- /dev/null +++ b/_module/nss/fired_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/fired_02.nss b/_module/nss/fired_02.nss new file mode 100644 index 0000000..f2956b9 --- /dev/null +++ b/_module/nss/fired_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/fired_10.nss b/_module/nss/fired_10.nss new file mode 100644 index 0000000..bb2fb69 --- /dev/null +++ b/_module/nss/fired_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fired_11.nss b/_module/nss/fired_11.nss new file mode 100644 index 0000000..4d21d2c --- /dev/null +++ b/_module/nss/fired_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "fidone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fired_12.nss b/_module/nss/fired_12.nss new file mode 100644 index 0000000..157bdca --- /dev/null +++ b/_module/nss/fired_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "fidone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fired_2.nss b/_module/nss/fired_2.nss new file mode 100644 index 0000000..4a19f88 --- /dev/null +++ b/_module/nss/fired_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "fidone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fired_22.nss b/_module/nss/fired_22.nss new file mode 100644 index 0000000..ebe455c --- /dev/null +++ b/_module/nss/fired_22.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "fidone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fired_3.nss b/_module/nss/fired_3.nss new file mode 100644 index 0000000..3711b53 --- /dev/null +++ b/_module/nss/fired_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fired_32.nss b/_module/nss/fired_32.nss new file mode 100644 index 0000000..5ce9c6b --- /dev/null +++ b/_module/nss/fired_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fired_4.nss b/_module/nss/fired_4.nss new file mode 100644 index 0000000..5435825 --- /dev/null +++ b/_module/nss/fired_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "fidone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fired_42.nss b/_module/nss/fired_42.nss new file mode 100644 index 0000000..8ccd9fe --- /dev/null +++ b/_module/nss/fired_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "fidone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fired_6.nss b/_module/nss/fired_6.nss new file mode 100644 index 0000000..82c2d1a --- /dev/null +++ b/_module/nss/fired_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "fidone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fired_62.nss b/_module/nss/fired_62.nss new file mode 100644 index 0000000..6eb73e5 --- /dev/null +++ b/_module/nss/fired_62.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "fidone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fired_7.nss b/_module/nss/fired_7.nss new file mode 100644 index 0000000..38d5a3d --- /dev/null +++ b/_module/nss/fired_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fired_8.nss b/_module/nss/fired_8.nss new file mode 100644 index 0000000..e437731 --- /dev/null +++ b/_module/nss/fired_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "fidone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/fired_9.nss b/_module/nss/fired_9.nss new file mode 100644 index 0000000..164b374 --- /dev/null +++ b/_module/nss/fired_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "fidone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "fidone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/firedeath.nss b/_module/nss/firedeath.nss new file mode 100644 index 0000000..56d0489 --- /dev/null +++ b/_module/nss/firedeath.nss @@ -0,0 +1,51 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + } + int nInt; + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), GetLocation(oTarget)); +int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +} diff --git a/_module/nss/firedeath1.nss b/_module/nss/firedeath1.nss new file mode 100644 index 0000000..5b209f7 --- /dev/null +++ b/_module/nss/firedeath1.nss @@ -0,0 +1,72 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::///////////////////////////War Demon +#include "x0_i0_petrify" +#include "loot" +#include "rank" +#include "spawner" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + + int nInt; + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "ch_pf", 0); + SetLocalInt(oMod, "gr_xx", 0); + nInt = GetObjectType(oTarget); + + + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + SetLocalInt(oPC, "pitfienddead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 5500); + } + } + int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); +int sw10 = GetLocalInt(oMod, "sw_xx"); +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(sw10==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), GetLocation(oTarget)); +} diff --git a/_module/nss/firedeath3.nss b/_module/nss/firedeath3.nss new file mode 100644 index 0000000..cb41245 --- /dev/null +++ b/_module/nss/firedeath3.nss @@ -0,0 +1,85 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::///////////////////////////Wurm Death +#include "loot" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + SetLocalInt(oMod, "sw_hw", 0); + SetLocalInt(oMod, "ch_hw", 0); + SetLocalInt(oMod, "gr_xx", 0); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + + + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + DeathStats(oPC); + if (GetLocalInt(oMod, "nordock")!=1) + { + GetRank(oPC); + + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + SetLocalInt(oPC, "wurmdead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 2500); + } + } + } + + + int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +if (GetLocalInt(oMod, "nordock")!=1) + { + +int nInt; +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), oTarget); +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), GetLocation(oTarget)); +} +else +{ +int nInt; +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); +} +} diff --git a/_module/nss/firstsmith.nss b/_module/nss/firstsmith.nss new file mode 100644 index 0000000..fb24272 --- /dev/null +++ b/_module/nss/firstsmith.nss @@ -0,0 +1,8 @@ +int StartingConditional() +{ + if (GetLocalInt(OBJECT_SELF,"NW_L_TALKTIMES") == 0) + { + return TRUE; + } + return FALSE; +} diff --git a/_module/nss/follow.nss b/_module/nss/follow.nss new file mode 100644 index 0000000..1355ec3 --- /dev/null +++ b/_module/nss/follow.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +ActionForceFollowObject(oPC); +} diff --git a/_module/nss/fount_off.nss b/_module/nss/fount_off.nss new file mode 100644 index 0000000..ae752af --- /dev/null +++ b/_module/nss/fount_off.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fount_off +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/12/2004 3:06:19 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "fountain_state") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fount_on.nss b/_module/nss/fount_on.nss new file mode 100644 index 0000000..3e5f937 --- /dev/null +++ b/_module/nss/fount_on.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName fount_off +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/12/2004 3:06:19 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "fountain_state") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/fountain_switch.nss b/_module/nss/fountain_switch.nss new file mode 100644 index 0000000..1415eb6 --- /dev/null +++ b/_module/nss/fountain_switch.nss @@ -0,0 +1,33 @@ +#include "x0_i0_petrify" +#include "nw_i0_generic" +void main() +{ + +object oTarget; +object oTarget1; +object oPC = GetLastUsedBy(); +object oMod = GetModule(); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +int oState = GetLocalInt(oMod, "fountain_state"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +if (oState!=1) +{ +DelayCommand(0.0, PlaySound("sce_positive")); +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Restoration Fountains now inaccessable", oPC)); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP3); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP4); +SetLocalInt(oMod, "fountain_state", 1); +} +else +{ + +DelayCommand(0.0, PlaySound("sce_negative")); +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Restoration Fountains now accessable", oPC)); +RemoveEffectOfType(oP3, GetEffectType(eEffect)); +RemoveEffectOfType(oP4, GetEffectType(eEffect)); +SetLocalInt(oMod, "fountain_state", 0); +} +} diff --git a/_module/nss/free_imbue.nss b/_module/nss/free_imbue.nss new file mode 100644 index 0000000..c198521 --- /dev/null +++ b/_module/nss/free_imbue.nss @@ -0,0 +1,6 @@ +#include "freedom_imbue" + +void main() +{ +FreedomImbue(); +} diff --git a/_module/nss/freedom_imbue.nss b/_module/nss/freedom_imbue.nss new file mode 100644 index 0000000..8f4ae92 --- /dev/null +++ b/_module/nss/freedom_imbue.nss @@ -0,0 +1,33 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Freedom(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyFreeAction(); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void FreedomImbue () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_WORD, OBJECT_SELF); +PCEffect(1.5,VFX_DUR_FREEDOM_OF_MOVEMENT, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +DelayCommand(1.0, Freedom(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} +//void main (){} diff --git a/_module/nss/full_buff.nss b/_module/nss/full_buff.nss new file mode 100644 index 0000000..3612c2e --- /dev/null +++ b/_module/nss/full_buff.nss @@ -0,0 +1,56 @@ +#include "spawner" + +void main() +{ +object oPC = GetLastUsedBy(); +if (!GetIsPC(oPC)) return; +object oMod = GetModule(); +int iScore = GetLocalInt(oPC, "a_score"); +int iChall = GetLocalInt(oMod, "challenge"); +int nIntd4=GetLocalInt(oMod, "d4"); +int nIntd2=GetLocalInt(oMod, "d2"); +int nIntd2a=GetLocalInt(oMod, "d2a"); +int nIntd3=GetLocalInt(oMod, "d3"); + +if (nIntd2a==1) +{ + iScore-=50; + SetLocalInt(oPC, "a_score", iScore); + SendMessageToPC(oPC, "** You spent 50 AOC score points **"); +} +if (nIntd3==1) +{ + iScore-=50; + SetLocalInt(oPC, "a_score", iScore); + SendMessageToPC(oPC, "** You spent 75 AOC score points **"); +} +if (nIntd2==1) +{ + iScore-=25; + SetLocalInt(oPC, "a_score", iScore); + SendMessageToPC(oPC, "** You spent 25 AOC score points **"); +} + + + + +int oState = GetLocalInt(oMod, "lever_state"); +if (oState==1) +{ +Cast(SPELL_BATTLETIDE, oPC); +//Cast(SPELL_FLAME_WEAPON, oPC); +Cast(SPELL_AID, oPC); +Cast(SPELL_EAGLE_SPLEDOR, oPC); +Cast(SPELL_AURA_OF_VITALITY, oPC); +Cast(SPELL_BULLS_STRENGTH, oPC); +Cast(SPELL_DIVINE_FAVOR, oPC); +Cast(SPELL_PRAYER, oPC); +Cast(SPELL_DIVINE_POWER, oPC); +Cast(SPELL_TRUE_STRIKE, oPC); +} +else +{ +PlaySound("sim_cntresist"); +FloatingTextStringOnCreature( "This crystal is not active",oPC); +} +} diff --git a/_module/nss/fullheal.nss b/_module/nss/fullheal.nss new file mode 100644 index 0000000..25daf43 --- /dev/null +++ b/_module/nss/fullheal.nss @@ -0,0 +1,97 @@ +#include "prc_inc_util" +#include "prc_inc_racial" + +void FakeRestore(object oTarget); +void main() +{ +object oPC = GetLastUsedBy(); +if (GetIsPC(oPC)) +{ + object oHenchman = GetAssociate(ASSOCIATE_TYPE_HENCHMAN,oPC,1); + object oHenchman2 = GetAssociate(ASSOCIATE_TYPE_HENCHMAN,oPC,2); + object oHenchman3 = GetAssociate(ASSOCIATE_TYPE_HENCHMAN,oPC,3); + object oAnimal = GetAssociate(ASSOCIATE_TYPE_ANIMALCOMPANION,oPC); + object oFamiliar = GetAssociate(ASSOCIATE_TYPE_FAMILIAR,oPC); + object oDominated = GetAssociate(ASSOCIATE_TYPE_DOMINATED,oPC); + object oSummoned = GetAssociate(ASSOCIATE_TYPE_SUMMONED,oPC); + ActionDoCommand(FakeRestore(oPC)); + if(GetIsObjectValid(oHenchman)) + { + ActionDoCommand(FakeRestore(oHenchman)); + if (!GetIsObjectValid(GetItemPossessedBy(oHenchman,"NW_IT_MPOTION003"))) + { + CreateItemOnObject("NW_IT_MPOTION003",oHenchman,3); + } + } + if(GetIsObjectValid(oHenchman2)) + { + ActionDoCommand(FakeRestore(oHenchman2)); + if (!GetIsObjectValid(GetItemPossessedBy(oHenchman2,"NW_IT_MPOTION003"))) + { + CreateItemOnObject("NW_IT_MPOTION003",oHenchman2,3); + } + } + if(GetIsObjectValid(oHenchman3)) + { + ActionDoCommand(FakeRestore(oHenchman3)); + if (!GetIsObjectValid(GetItemPossessedBy(oHenchman3,"NW_IT_MPOTION003"))) + { + CreateItemOnObject("NW_IT_MPOTION003",oHenchman3,3); + } + } + if(GetIsObjectValid(oAnimal)) + { + ActionDoCommand(FakeRestore(oAnimal)); + } + if(GetIsObjectValid(oFamiliar)) + { + ActionDoCommand(FakeRestore(oFamiliar)); + } + if(GetIsObjectValid(oDominated)) + { + ActionDoCommand(FakeRestore(oDominated)); + } + if(GetIsObjectValid(oSummoned)) + { + ActionDoCommand(FakeRestore(oSummoned)); + } +} +} +void FakeRestore(object oTarget) +{ + effect eVisual = EffectVisualEffect(VFX_IMP_RESTORATION_GREATER); + + effect eBad = GetFirstEffect(oTarget); + while(GetIsEffectValid(eBad)) + { + if (GetEffectType(eBad) == EFFECT_TYPE_ABILITY_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_AC_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_ATTACK_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_DAMAGE_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_DAMAGE_IMMUNITY_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_SAVING_THROW_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_SPELL_RESISTANCE_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_SKILL_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_BLINDNESS || + GetEffectType(eBad) == EFFECT_TYPE_DEAF || + GetEffectType(eBad) == EFFECT_TYPE_CURSE || + GetEffectType(eBad) == EFFECT_TYPE_DISEASE || + GetEffectType(eBad) == EFFECT_TYPE_POISON || + GetEffectType(eBad) == EFFECT_TYPE_PARALYZE || + GetEffectType(eBad) == EFFECT_TYPE_NEGATIVELEVEL) + { + RemoveEffect(oTarget, eBad); + } + eBad = GetNextEffect(oTarget); + } + if(MyPRCGetRacialType(oTarget) != RACIAL_TYPE_UNDEAD) + { + int nHeal = GetMaxHitPoints(oTarget) - GetCurrentHitPoints(oTarget); + effect eHeal = EffectHeal(nHeal); + if (nHeal > 0) + ApplyEffectToObject(DURATION_TYPE_INSTANT, eHeal, oTarget); + + } + PRCForceRest(oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVisual, OBJECT_SELF); +} diff --git a/_module/nss/g_firework_wand.nss b/_module/nss/g_firework_wand.nss new file mode 100644 index 0000000..de5c5bd --- /dev/null +++ b/_module/nss/g_firework_wand.nss @@ -0,0 +1,26 @@ +//:://///////////////////////////////////////////// +//:: Firework Wand +//:: g_firework_wand.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* +This is the OnActivate Event for the Firework Wand +And items that will shoot a firework in the sky above the PCs head and do a small +firework. Give it to you players for some fun. +*/ +//::////////////////////////////////////////////// +//:: Created By: Jay Clark +//:: Created On: August 31, 2004 +//::////////////////////////////////////////////// + +#include "x2_inc_switches" + +void main() +{ + int nEvent = GetUserDefinedItemEventNumber(); + if (nEvent == X2_ITEM_EVENT_ACTIVATE) + { + object oPC = GetItemActivator(); + ExecuteScript("g_missile",oPC); + } +} diff --git a/_module/nss/g_fireworks.nss b/_module/nss/g_fireworks.nss new file mode 100644 index 0000000..14670d2 --- /dev/null +++ b/_module/nss/g_fireworks.nss @@ -0,0 +1,94 @@ +//:://///////////////////////////////////////////// +//:: Firework Show +//:: g_fireworks.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + +This script is the heartbeat of the Firework show. Not much you need to do in +this file as it will handle everything on its own. + +*/ +//::////////////////////////////////////////////// +//:: Created By: Jay Clark +//:: Created On: August 31, 2004 +//::////////////////////////////////////////////// + + +void main() +{ + object oMod = GetModule(); + object oTarget; + object oSource = GetObjectByTag("FireworksSource"); + effect eMissile = EffectVisualEffect(VFX_IMP_MIRV); + effect eDam = EffectDamage(1); + effect eFire = EffectVisualEffect(VFX_COM_HIT_FIRE); + int nNum; + string sTag; + int TotalCount; + + TotalCount = GetLocalInt(oSource,"FireworkCount"); + TotalCount++; + SetLocalInt(oSource,"FireworkCount",TotalCount); + + //Make sure the new fireworks will happen which could be turned off in other scripts + SetLocalInt(oSource,"NEWFIREWORK",TRUE); + SetLocalInt(oSource,"SmallFireWorks",0); + SetLocalInt(oSource,"NewMedFire",TRUE); + SetLocalInt(oSource,"NOSPAWN",FALSE); + + if (TotalCount > 10) + { + + //Finale, Prescripted for the most part in g_fireworksfinal + ExecuteScript("g_fireworksfinal",oSource); + } + + //Roll to see what type of firework we are doing + int nRoll = Random(100)+1; + if (nRoll < 40) + { + //Small Firework One Target One Effect + nNum = Random(12)+1; + sTag = "FireworksSTarget" + IntToString(nNum); + oTarget = GetObjectByTag(sTag); + } + else if (nRoll < 65) + { + //Medium Size One Target Many Effects might spawn other Targets + nNum = Random(3)+1; + sTag = "FireworksMTarget" + IntToString(nNum); + oTarget = GetObjectByTag(sTag); + } + else if (nRoll < 90) + { + //Large One Target Many effect will spawn other targets with many effects + nNum = Random(3)+1; + sTag = "FireworksLTarget" + IntToString(nNum); + oTarget = GetObjectByTag(sTag); + } + else if (TotalCount <= 10) + { + //if (TotalCount > 8) + //{ + //Finale, Prescripted for the most part in g_fireworksfinal + // ExecuteScript("g_fireworksfinal",oSource); + //} + // else + // { + + ExecuteScript("g_fireworks",oSource); + } + // } + + float fDist = GetDistanceBetween(oSource, oTarget); + float fDelay = fDist/(3.0 * log(fDist) + 2.0); + float fDelay2, fTime; + fTime = fDelay; + fDelay2 += 0.1; + fTime += fDelay2; + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource); + DelayCommand(fTime, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + DelayCommand(fDelay2, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oTarget)); +} diff --git a/_module/nss/g_fireworksfinal.nss b/_module/nss/g_fireworksfinal.nss new file mode 100644 index 0000000..b57095d --- /dev/null +++ b/_module/nss/g_fireworksfinal.nss @@ -0,0 +1,329 @@ +//:://///////////////////////////////////////////// +//:: Fireworks Finale +//:: g_fireworksfinal +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + +This is called by g_fireworks after so many fireworks have been shot. This is a +heavily scripted event. If you don't know what to do don't mess with it. + +If you do edit it make sure you always use DelayCommand with the varible +"fTimeDelay" Make sure you increase "fTimeDelay" or everything will happen at +the same time. + +*/ +//::////////////////////////////////////////////// +//:: Created By: Jay Clark +//:: Created On: August 31, 2004 +//::////////////////////////////////////////////// + +void main() +{ + object oSource = GetObjectByTag("FireworksSource"); + object oArea = GetArea(oSource); + object oTarget; + string sTag; + effect eMissile = EffectVisualEffect(VFX_IMP_MIRV); + effect eDam = EffectDamage(1); + effect eFire = EffectVisualEffect(VFX_COM_HIT_FIRE); + + //Single Targets to use later On! + //These can be used by you to make other patterns for the finale + object oSTarget1 = GetObjectByTag("FireworksSTarget1"); + object oSTarget2 = GetObjectByTag("FireworksSTarget2"); + object oSTarget3 = GetObjectByTag("FireworksSTarget3"); + object oSTarget4 = GetObjectByTag("FireworksSTarget4"); + object oSTarget5 = GetObjectByTag("FireworksSTarget5"); + object oSTarget6 = GetObjectByTag("FireworksSTarget6"); + object oSTarget7 = GetObjectByTag("FireworksSTarget7"); + object oSTarget8 = GetObjectByTag("FireworksSTarget8"); + object oSTarget9 = GetObjectByTag("FireworksSTarget9"); + object oSTarget10 = GetObjectByTag("FireworksSTarget10"); + object oSTarget11 = GetObjectByTag("FireworksSTarget11"); + object oSTarget12 = GetObjectByTag("FireworksSTarget12"); + object oMTarget = GetObjectByTag("FireworksMTarget3"); + object oMTarget1 = GetObjectByTag("FireworksMTarget1"); + object oMTarget2 = GetObjectByTag("FireworksMTarget2"); + object oLTarget = GetObjectByTag("FireworksLTarget3"); + object oLTarget1 = GetObjectByTag("FireworksLTarget1"); + object oLTarget2 = GetObjectByTag("FireworksLTarget2"); + + int EffectNum; + int EffectNum1; + + int i; + + float fTimeDelay = 1.0; + float fDist, fDelay; + SetLocalInt(oSource,"NewMedFire",FALSE); + SetLocalInt(oSource,"NEWFIREWORK",FALSE); + SetLocalInt(oSource,"NOSPAWN",TRUE); + + //Counter Clockwise with Howl + DelayCommand(fTimeDelay,SetLocalInt(oSource,"SmallFireWorks",3));; //Howl Circle + for(i=1;i<13;i++) + { + sTag = "FireworksSTarget" + IntToString(i); + oTarget = GetObjectByTag(sTag); + fDist = GetDistanceBetween(oSource, oTarget); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oTarget)); + fTimeDelay += 0.5; + fDelay += fTimeDelay; + } + fTimeDelay += 3.0; + + //Clockwise with dispel + DelayCommand(fTimeDelay,SetLocalInt(oSource,"SmallFireWorks",2)); //Dispel + for(i=12;i>0;i--) + { + sTag = "FireworksSTarget" + IntToString(i); + oTarget = GetObjectByTag(sTag); + fDist = GetDistanceBetween(oSource, oTarget); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oTarget)); + fTimeDelay += 0.5; + fDelay += fTimeDelay; + } + fTimeDelay += 3.0; + + //Order fire with Electric Burst + DelayCommand(fTimeDelay,SetLocalInt(oSource,"SmallFireWorks",9)); + for(i=1;i<7;i++) + { + sTag = "FireworksSTarget" + IntToString(i); + oTarget = GetObjectByTag(sTag); + fDist = GetDistanceBetween(oSource, oTarget); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oTarget)); + fTimeDelay += 0.5; + fDelay += fTimeDelay; + + sTag = "FireworksSTarget" + IntToString(i+6); + oTarget = GetObjectByTag(sTag); + fDist = GetDistanceBetween(oSource, oTarget); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oTarget)); + fTimeDelay += 0.5; + fDelay += fTimeDelay; + } + + for(i=7;i<13;i++) + { + sTag = "FireworksSTarget" + IntToString(i); + oTarget = GetObjectByTag(sTag); + fDist = GetDistanceBetween(oSource, oTarget); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oTarget)); + fTimeDelay += 0.5; + fDelay += fTimeDelay; + sTag = "FireworksSTarget" + IntToString(i-6); + oTarget = GetObjectByTag(sTag); + fDist = GetDistanceBetween(oSource, oTarget); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oTarget)); + fTimeDelay += 0.5; + fDelay += fTimeDelay; + } + fTimeDelay += 3.0; + + //Fire Medium Firework off followed by a Large shortly after + fDist = GetDistanceBetween(oSource, oMTarget); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oMTarget)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oMTarget)); + fTimeDelay += 3.0; + fDist = GetDistanceBetween(oSource, oLTarget); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oLTarget)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oLTarget)); + + + //Odd smalls go off with unused effects + fTimeDelay += 10.0; + EffectNum = 13; + fDist = GetDistanceBetween(oSource, oSTarget1); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oSTarget1)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oSTarget1)); + DelayCommand(fDelay+0.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(EffectNum),oSTarget1)); + fDist = GetDistanceBetween(oSource, oSTarget3); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oSTarget3)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oSTarget3)); + DelayCommand(fDelay+0.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(EffectNum),oSTarget3)); + fDist = GetDistanceBetween(oSource, oSTarget5); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oSTarget5)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oSTarget5)); + DelayCommand(fDelay+0.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(EffectNum),oSTarget5)); + fDist = GetDistanceBetween(oSource, oSTarget7); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oSTarget7)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oSTarget7)); + DelayCommand(fDelay+0.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(EffectNum),oSTarget7)); + fDist = GetDistanceBetween(oSource, oSTarget9); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oSTarget9)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oSTarget9)); + DelayCommand(fDelay+0.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(EffectNum),oSTarget9)); + fDist = GetDistanceBetween(oSource, oSTarget11); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oSTarget11)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oSTarget11)); + DelayCommand(fDelay+0.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(EffectNum),oSTarget11)); + + + //Even Small go off now + fTimeDelay += 2.0; + EffectNum1 = 13; + fDist = GetDistanceBetween(oSource, oSTarget2); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oSTarget2)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oSTarget2)); + DelayCommand(fDelay+0.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(EffectNum1),oSTarget2)); + fDist = GetDistanceBetween(oSource, oSTarget4); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oSTarget4)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oSTarget4)); + DelayCommand(fDelay+0.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(EffectNum1),oSTarget4)); + fDist = GetDistanceBetween(oSource, oSTarget6); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oSTarget6)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oSTarget6)); + DelayCommand(fDelay+0.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(EffectNum1),oSTarget6)); + fDist = GetDistanceBetween(oSource, oSTarget8); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oSTarget8)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oSTarget8)); + DelayCommand(fDelay+0.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(EffectNum1),oSTarget8)); + fDist = GetDistanceBetween(oSource, oSTarget10); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oSTarget10)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oSTarget10)); + DelayCommand(fDelay+0.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(EffectNum1),oSTarget10)); + fDist = GetDistanceBetween(oSource, oSTarget12); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oSTarget12)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oSTarget12)); + DelayCommand(fDelay+0.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(EffectNum1),oSTarget12)); + + //Put some Rapid shot Random Mediums here + for(i=1;i<11;i++) + { + fDist = GetDistanceBetween(oSource, oMTarget); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oMTarget)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oMTarget)); + fTimeDelay += 2.5; + } + + + + //GRAND ENDING! + fTimeDelay += 6.0; + //Grand Ending here Weird without darkness with a dragon flight to a big explosion. + fDist = GetDistanceBetween(oSource, oLTarget); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oLTarget)); + DelayCommand(fDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_FIREBALL),oLTarget)); + + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(323), oLTarget)); + fTimeDelay = fDelay + 1.0; + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(488), oLTarget)); + fTimeDelay += 5.0; + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(464), oLTarget)); + fTimeDelay += 4.0; + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(477), oLTarget)); + for(i=1;i<13;i++) + { + sTag = "FireworksSTarget" + IntToString(i); + oTarget = GetObjectByTag(sTag); + fDist = GetDistanceBetween(oSource, oTarget); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay,ApplyEffectToObject(DURATION_TYPE_INSTANT, eFire, oSource)); + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(193), oTarget)); + DelayCommand(fDelay+0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(407), oTarget)); + DelayCommand(fDelay+1.0, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(459), oTarget)); + } + fTimeDelay += 5.0; + //Stop the Music + DelayCommand(fTimeDelay,MusicBattleStop(oArea)); + //Turn TileLights back on + DelayCommand(fTimeDelay,ExecuteScript("g_lightson",oTarget)); + //Clean up all the targets + fTimeDelay += 5.0; + DestroyObject(oSTarget1,fTimeDelay); + DestroyObject(oSTarget2,fTimeDelay); + DestroyObject(oSTarget3,fTimeDelay); + DestroyObject(oSTarget4,fTimeDelay); + DestroyObject(oSTarget5,fTimeDelay); + DestroyObject(oSTarget6,fTimeDelay); + DestroyObject(oSTarget7,fTimeDelay); + DestroyObject(oSTarget8,fTimeDelay); + DestroyObject(oSTarget9,fTimeDelay); + DestroyObject(oSTarget10,fTimeDelay); + DestroyObject(oSTarget11,fTimeDelay); + DestroyObject(oSTarget1,fTimeDelay); + DestroyObject(oMTarget,fTimeDelay); + DestroyObject(oMTarget2,fTimeDelay); + DestroyObject(oMTarget,fTimeDelay); + DestroyObject(oLTarget1,fTimeDelay); + DestroyObject(oLTarget,fTimeDelay); + DestroyObject(oLTarget,fTimeDelay); + //Allow for another show to start + DelayCommand(fTimeDelay,SetLocalInt(oArea,"FIREWORKSHOW",FALSE)); +} diff --git a/_module/nss/g_larfireworks.nss b/_module/nss/g_larfireworks.nss new file mode 100644 index 0000000..7fdeac1 --- /dev/null +++ b/_module/nss/g_larfireworks.nss @@ -0,0 +1,188 @@ +//:://///////////////////////////////////////////// +//:: Large Fireworks Explosion +//:: g_smallfireworks +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + +This is the OnDamaged Event for the firework targets. Do not Edit unless you know +what you are doing. + +*/ +//::////////////////////////////////////////////// +//:: Created By: Jay Clark +//:: Created On: August 31, 2004 +//::////////////////////////////////////////////// + +void main() +{ + object oSource = GetObjectByTag("FireworksSource"); + object oTarget = OBJECT_SELF; + effect eExplode = EffectVisualEffect(VFX_FNF_FIREBALL); + ApplyEffectToObject(DURATION_TYPE_INSTANT,eExplode,oTarget); + effect eExtra; + int i; + int SmallTarget; + string sTag; + effect eMissile = EffectVisualEffect(VFX_IMP_MIRV); + effect eDam = EffectDamage(1); + int nMissiles = 1; + float fDist = GetDistanceBetween(OBJECT_SELF, oTarget); + float fDelay = fDist/(3.0 * log(fDist) + 2.0); + float fDelay2, fTime; + fTime = fDelay+1.0; + float fFire = 0.5; + + SetLocalInt(oSource,"NewMedFire",FALSE); + SetLocalInt(oSource,"NEWFIREWORK",FALSE); + //Get Random small firework targets and fire a Magic Missile at it + //No more than 12 smaller target at least 6. + //Get 1 random medium and fire at it. + + int nNumSmall = Random(2)+1; + + for(i=1;i<13;i=i+nNumSmall) + { + sTag = "FireworksSTarget" + IntToString(i); + oTarget = GetObjectByTag(sTag); + DelayCommand(fTime, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + DelayCommand(0.1,ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oTarget)); + SetLocalInt(oSource,"SmallFireWorks",Random(20)+1); + } + + nNumSmall = Random(3)+1; + sTag = "FireworksMTarget" + IntToString(nNumSmall); + oTarget = GetObjectByTag(sTag); + DelayCommand(4.0, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + + oTarget = OBJECT_SELF; + + int nNum = Random(19)+1; + + switch(nNum) + { + case 1: + { + eExtra = EffectVisualEffect(VFX_FNF_DISPEL_DISJUNCTION); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 2: + { + eExtra = EffectVisualEffect(VFX_FNF_DISPEL); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 3: + { + eExtra = EffectVisualEffect(VFX_FNF_FIRESTORM); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 4: + { + eExtra = EffectVisualEffect(VFX_FNF_HOWL_MIND); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 5: + { + eExtra = EffectVisualEffect(VFX_FNF_SOUND_BURST); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 6: + { + eExtra = EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + + case 7: + { + eExtra = EffectVisualEffect(VFX_FNF_ELECTRIC_EXPLOSION); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 8: + { + eExtra = EffectVisualEffect(VFX_FNF_METEOR_SWARM); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 9: + { + eExtra = EffectVisualEffect(VFX_FNF_SUMMONDRAGON); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 10: + { + eExtra = EffectVisualEffect(VFX_FNF_SUNBEAM); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 11: + { + eExtra = EffectVisualEffect(223); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 12: + { + eExtra = EffectVisualEffect(231); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 13: + { + eExtra = EffectVisualEffect(254); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 14: + { + eExtra = EffectVisualEffect(29); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 15: + { + eExtra = EffectVisualEffect(497); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 16: + { + eExtra = EffectVisualEffect(487); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 17: + { + eExtra = EffectVisualEffect(477); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 18: + { + eExtra = EffectVisualEffect(464); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 19: + { + eExtra = EffectVisualEffect(467); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + default : + { + break; + } + } + if (GetLocalInt(oSource,"NOSPAWN") == FALSE) + { + DelayCommand(12.0,ExecuteScript("g_fireworks",oSource)); + } +} diff --git a/_module/nss/g_lightson.nss b/_module/nss/g_lightson.nss new file mode 100644 index 0000000..ea08814 --- /dev/null +++ b/_module/nss/g_lightson.nss @@ -0,0 +1,44 @@ +//:://///////////////////////////////////////////// +//:: Lights On +//:: g_lightson.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + +Will turn all the Tilelights in the current area back to their normal color. +Color was saved from the Light Out script. + +*/ +//::////////////////////////////////////////////// +//:: Created By: Jay Clark +//:: Created On: August 31, 2004 +//::////////////////////////////////////////////// + +void main() +{ + object oArea = GetArea(OBJECT_SELF); + int x,y; + vector vLoc; + location lLoc; + string sLight; + string sLight2; + for(x=0;x<32;x++) + { + for(y=0;y<32;y++) + { + vLoc = Vector(IntToFloat(x),IntToFloat(y),0.0); + lLoc = Location(oArea,vLoc,0.0); + sLight = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".1"; + sLight2 = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".2"; + SetTileMainLightColor(lLoc,GetLocalInt(oArea,sLight),GetLocalInt(oArea,sLight2)); + DeleteLocalInt(oArea,sLight); + DeleteLocalInt(oArea,sLight2); + sLight = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".3"; + sLight2 = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".4"; + SetTileSourceLightColor(lLoc,GetLocalInt(oArea,sLight),GetLocalInt(oArea,sLight2)); + DeleteLocalInt(oArea,sLight); + DeleteLocalInt(oArea,sLight2); + } + } + RecomputeStaticLighting(oArea); +} diff --git a/_module/nss/g_lightsout.nss b/_module/nss/g_lightsout.nss new file mode 100644 index 0000000..58e526d --- /dev/null +++ b/_module/nss/g_lightsout.nss @@ -0,0 +1,44 @@ +//:://///////////////////////////////////////////// +//:: Lights Out +//:: g_lightsout.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + +Will turn all the Tilelights in the current area to black. Save the light +settings so they can be turned back on later. + +*/ +//::////////////////////////////////////////////// +//:: Created By: Jay Clark +//:: Created On: August 31, 2004 +//::////////////////////////////////////////////// + +void main() +{ + object oArea = GetArea(OBJECT_SELF); + int x,y; + vector vLoc; + location lLoc; + string sLight; + for(x=0;x<32;x++) + { + for(y=0;y<32;y++) + { + vLoc = Vector(IntToFloat(x),IntToFloat(y),0.0); + lLoc = Location(oArea,vLoc,0.0); + //Save Color first for all lights + sLight = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".1"; + SetLocalInt(oArea,sLight,GetTileMainLight1Color(lLoc)); + sLight = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".2"; + SetLocalInt(oArea,sLight,GetTileMainLight2Color(lLoc)); + sLight = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".3"; + SetLocalInt(oArea,sLight,GetTileSourceLight1Color(lLoc)); + sLight = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".4"; + SetLocalInt(oArea,sLight,GetTileSourceLight2Color(lLoc)); + SetTileMainLightColor(lLoc,TILE_MAIN_LIGHT_COLOR_BLACK,TILE_MAIN_LIGHT_COLOR_BLACK); + SetTileSourceLightColor(lLoc,TILE_MAIN_LIGHT_COLOR_BLACK,TILE_MAIN_LIGHT_COLOR_BLACK); + } + } + RecomputeStaticLighting(oArea); +} diff --git a/_module/nss/g_medfireworks.nss b/_module/nss/g_medfireworks.nss new file mode 100644 index 0000000..5345ec8 --- /dev/null +++ b/_module/nss/g_medfireworks.nss @@ -0,0 +1,159 @@ +//:://///////////////////////////////////////////// +//:: Medium Fireworks Explosion +//:: g_medfireworks +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + +This is the OnDamaged Event for the firework targets. Do not Edit unless you know +what you are doing. + +*/ +//::////////////////////////////////////////////// +//:: Created By: Jay Clark +//:: Created On: August 31, 2004 +//::////////////////////////////////////////////// + +void main() +{ + object oSource = GetObjectByTag("FireworksSource"); + object oTarget = OBJECT_SELF; + effect eExplode = EffectVisualEffect(VFX_FNF_FIREBALL); + ApplyEffectToObject(DURATION_TYPE_INSTANT,eExplode,oTarget); + effect eExtra; + int i; + int SmallTarget; + string sTag; + effect eMissile = EffectVisualEffect(VFX_IMP_MIRV); + effect eDam = EffectDamage(1); + int nMissiles = 1; + float fDist = GetDistanceBetween(OBJECT_SELF, oTarget); + float fDelay = fDist/(3.0 * log(fDist) + 2.0); + float fDelay2, fTime; + fTime = fDelay+1.0; +// fDelay2 += 0.1; +// fTime += fDelay2; + float fFire = 0.5; + SetLocalInt(oSource,"NEWFIREWORK",FALSE); + + //Get Random small firework targets and fire a Magic Missile at it + //No more than 6 smaller target at least 3. + int nNumSmall = Random(2)+1+2; + + + for(i=1;i<13;i=i+nNumSmall) + { + sTag = "FireworksSTarget" + IntToString(i); + oTarget = GetObjectByTag(sTag); + DelayCommand(fTime, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + DelayCommand(0.1,ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oTarget)); + SetLocalInt(oSource,"SmallFireWorks",Random(20)+1); + } + + oTarget = OBJECT_SELF; + //Random Effect on Medium burst (need to edit effects) + int nNum = Random(15)+1; + + switch(nNum) + { + case 1: + { + eExtra = EffectVisualEffect(VFX_FNF_DISPEL_DISJUNCTION); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 2: + { + eExtra = EffectVisualEffect(VFX_FNF_DISPEL); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 3: + { + eExtra = EffectVisualEffect(VFX_FNF_FIRESTORM); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 4: + { + eExtra = EffectVisualEffect(VFX_FNF_HOWL_MIND); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 5: + { + eExtra = EffectVisualEffect(VFX_FNF_SOUND_BURST); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 6: + { + eExtra = EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + + case 7: + { + eExtra = EffectVisualEffect(VFX_FNF_ELECTRIC_EXPLOSION); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 8: + { + eExtra = EffectVisualEffect(VFX_FNF_METEOR_SWARM); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 9: + { + eExtra = EffectVisualEffect(VFX_FNF_SUMMONDRAGON); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 10: + { + eExtra = EffectVisualEffect(VFX_FNF_SUNBEAM); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 11: + { + eExtra = EffectVisualEffect(223); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 12: + { + eExtra = EffectVisualEffect(231); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 13: + { + eExtra = EffectVisualEffect(254); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 14: + { + eExtra = EffectVisualEffect(29); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 15: + { + eExtra = EffectVisualEffect(497); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + default : + { + break; + } + } + if (GetLocalInt(oSource,"NewMedFire") == TRUE) + { + DelayCommand(6.0,ExecuteScript("g_fireworks",oSource)); + } +} diff --git a/_module/nss/g_missile.nss b/_module/nss/g_missile.nss new file mode 100644 index 0000000..0cf2b41 --- /dev/null +++ b/_module/nss/g_missile.nss @@ -0,0 +1,47 @@ +//:://///////////////////////////////////////////// +//:: Firework Wand +//:: g_missile.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* +This script is called from g_firework_wand script. This does all the hard work. +It needs to be called like this for timing reasons. + +And items that will shoot a firework in the sky above the PCs head and do a small +firework. Give it to you players for some fun. +*/ +//::////////////////////////////////////////////// +//:: Created By: Jay Clark +//:: Created On: August 31, 2004 +//::////////////////////////////////////////////// + +void main() +{ + object oPC = OBJECT_SELF; + object oArea = GetArea(oPC); + location lNewLoc; + vector vPC,vNewVec; + float x,y,z,face; + //Make SmallFireTarget over PCs head + vPC = GetPosition(oPC); + x = vPC.x; + y = vPC.y; + z = vPC.z; + z += 7.5; + face = GetFacing(oPC); + vNewVec = Vector(x,y,z); + lNewLoc = Location(oArea,vNewVec,face); + object oTarget = CreateObject(OBJECT_TYPE_PLACEABLE,"wandfireworktarg",lNewLoc); + effect eMissile = EffectVisualEffect(181); //233 is Fire Arrow + effect eDam = EffectDamage(1); + effect eExplode = EffectVisualEffect(VFX_FNF_FIREBALL); + float fDist, fDelay, fTimeDelay; + fTimeDelay = 0.0; + fDist = GetDistanceBetween(oPC, oTarget); + fDelay = fDist/(3.0 * log(fDist) + 2.0); + fDelay += fTimeDelay; + DelayCommand(fTimeDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMissile, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eExplode, oTarget)); + DestroyObject(oTarget,fDelay+2.0); +} diff --git a/_module/nss/g_smallfirework2.nss b/_module/nss/g_smallfirework2.nss new file mode 100644 index 0000000..0d43fcd --- /dev/null +++ b/_module/nss/g_smallfirework2.nss @@ -0,0 +1,163 @@ +//:://///////////////////////////////////////////// +//:: Firework Wand Explosion +//:: g_smallfirework2.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* +This is the OnDamage Event for the firework wand. You can edit the effect below. + + +And items that will shoot a firework in the sky above the PCs head and do a small +firework. Give it to you players for some fun. +*/ +//::////////////////////////////////////////////// +//:: Created By: Jay Clark +//:: Created On: August 31, 2004 +//::////////////////////////////////////////////// + +void main() +{ + object oTarget = OBJECT_SELF; + effect eExplode = EffectVisualEffect(VFX_FNF_FIREBALL); + ApplyEffectToObject(DURATION_TYPE_INSTANT,eExplode,oTarget); + effect eExtra; + float fFire = 0.5; + int nNum; + nNum = Random(21)+1; + + switch(nNum) + { + case 1: + { + eExtra = EffectVisualEffect(VFX_FNF_DISPEL_DISJUNCTION); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 2: + { + eExtra = EffectVisualEffect(VFX_FNF_DISPEL); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 3: + { + eExtra = EffectVisualEffect(VFX_FNF_HOWL_MIND); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 4: + { + eExtra = EffectVisualEffect(VFX_FNF_SOUND_BURST); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 5: + { + eExtra = EffectVisualEffect(VFX_FNF_ELECTRIC_EXPLOSION); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 6: + { + eExtra = EffectVisualEffect(13); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 7: + { + eExtra = EffectVisualEffect(18); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 8: + { + eExtra = EffectVisualEffect(31); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 9: + { + eExtra = EffectVisualEffect(69); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 10: + { + eExtra = EffectVisualEffect(149); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 11: + { + eExtra = EffectVisualEffect(190); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 12: + { + eExtra = EffectVisualEffect(218); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 13: + { + eExtra = EffectVisualEffect(279); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 14: + { + eExtra = EffectVisualEffect(463); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 15: + { + eExtra = EffectVisualEffect(315); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 16: + { + eExtra = EffectVisualEffect(140); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 17: + { + eExtra = EffectVisualEffect(187); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 18: + { + eExtra = EffectVisualEffect(217); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 19: + { + eExtra = EffectVisualEffect(407); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 20: + { + eExtra = EffectVisualEffect(82); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 21: + { + eExtra = EffectVisualEffect(VFX_FNF_SUMMONDRAGON); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + default : + { + eExtra = EffectVisualEffect(VFX_FNF_HOWL_MIND); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + } +} diff --git a/_module/nss/g_smallfireworks.nss b/_module/nss/g_smallfireworks.nss new file mode 100644 index 0000000..d929994 --- /dev/null +++ b/_module/nss/g_smallfireworks.nss @@ -0,0 +1,181 @@ +//:://///////////////////////////////////////////// +//:: Small Fireworks Explosion +//:: g_smallfireworks +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + +This is the OnDamaged Event for the firework targets. Do not Edit unless you know +what you are doing. + +*/ +//::////////////////////////////////////////////// +//:: Created By: Jay Clark +//:: Created On: August 31, 2004 +//::////////////////////////////////////////////// + + +void main() +{ + object oSource = GetObjectByTag("FireworksSource"); + object oTarget = OBJECT_SELF; + effect eExplode = EffectVisualEffect(VFX_FNF_FIREBALL); + ApplyEffectToObject(DURATION_TYPE_INSTANT,eExplode,oTarget); + effect eExtra; + float fFire = 0.5; + int nNum; + //Check to see if another script set the explosion for us + if (GetLocalInt(oSource,"SmallFireWorks") == 0) + { + //No script did pick one at random + nNum = Random(21)+1; + } + else + { + //Another script did get the explosion type. + nNum = GetLocalInt(oSource,"SmallFireWorks"); + } + + //Get and fire the effect picked + switch(nNum) + { + case 1: + { + eExtra = EffectVisualEffect(VFX_FNF_DISPEL_DISJUNCTION); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 2: + { + eExtra = EffectVisualEffect(VFX_FNF_DISPEL); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 3: + { + eExtra = EffectVisualEffect(VFX_FNF_HOWL_MIND); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 4: + { + eExtra = EffectVisualEffect(VFX_FNF_SOUND_BURST); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 5: + { + eExtra = EffectVisualEffect(VFX_FNF_ELECTRIC_EXPLOSION); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 6: + { + eExtra = EffectVisualEffect(13); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 7: + { + eExtra = EffectVisualEffect(18); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 8: + { + eExtra = EffectVisualEffect(31); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 9: + { + eExtra = EffectVisualEffect(69); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 10: + { + eExtra = EffectVisualEffect(149); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 11: + { + eExtra = EffectVisualEffect(190); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 12: + { + eExtra = EffectVisualEffect(218); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 13: + { + eExtra = EffectVisualEffect(279); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 14: + { + eExtra = EffectVisualEffect(463); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 15: + { + eExtra = EffectVisualEffect(315); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 16: + { + eExtra = EffectVisualEffect(140); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 17: + { + eExtra = EffectVisualEffect(187); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 18: + { + eExtra = EffectVisualEffect(217); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 19: + { + eExtra = EffectVisualEffect(407); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 20: + { + eExtra = EffectVisualEffect(82); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + case 21: + { + eExtra = EffectVisualEffect(VFX_FNF_SUMMONDRAGON); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + default : + { + eExtra = EffectVisualEffect(VFX_FNF_HOWL_MIND); + DelayCommand(fFire,ApplyEffectToObject(DURATION_TYPE_INSTANT,eExtra,oTarget)); + break; + } + } + //Are we to call for another firework? + if (GetLocalInt(oSource,"NEWFIREWORK") == TRUE) + { + //Yes then call it + DelayCommand(6.0,ExecuteScript("g_fireworks",oSource)); + } +} diff --git a/_module/nss/g_startfireworks.nss b/_module/nss/g_startfireworks.nss new file mode 100644 index 0000000..b95867e --- /dev/null +++ b/_module/nss/g_startfireworks.nss @@ -0,0 +1,81 @@ +//:://///////////////////////////////////////////// +//:: Fireworks Start Program +//:: g_startfireworks.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* +Put this script on the OnUsed event for a placeable. +This script creates all the targets needed for the show. It will then start the +show. + +For your area pick some execiting battle music it will play with the show. + +Only thing you need to edit if you wish is the height of the explosions. +If its on flat land I suggest 7.5 if you build raised areas for people to watch +from I suggest 10.0 or higher but I wouldn't go over 20.0 or some weird timing +effects come in. +*/ +//::////////////////////////////////////////////// +//:: Created By: Jay Clark +//:: Created On: August 31, 2004 +//::////////////////////////////////////////////// + +void StartShow(object oPC) +{ + //Edit Settings here /////////////////////////////////////////////////////// + float z = 8.0; //How High the fireworks go before exploding + //DO NOT EDIT BELOW THIS LINE ////////////////////////////////////////////// + object oArea = GetArea(OBJECT_SELF); + object oTarget = GetObjectByTag("FireworksSource"); + + + //Check to see if one is already in progress + if (GetLocalInt(oArea,"FIREWORKSHOW")) + { + //Firework Show is in progress tell user that. + SendMessageToPC(oPC,"There is already a firework show in progress"); + } + else + { + //No Firework show in progress. + //Tell the system that a show is in progress. + SetLocalInt(oArea,"FIREWORKSHOW",TRUE); + float x,y,tx,ty; + float fAngle = 30.0; + int nCount; + vector nTarget = GetPosition(oTarget); + vector nCreate; + string sTag; + tx = nTarget.x; + ty = nTarget.y; + + //12 small targets in a clock pattern + for(nCount = 1;nCount < 13;nCount++) + { + x = tx + (cos(fAngle)*10); + y = ty + (sin(fAngle)*10); + sTag = "FireworksSTarget" + IntToString(nCount); + CreateObject(OBJECT_TYPE_PLACEABLE,"fireworksstarget",Location(oArea,Vector(x,y,z),0.0),FALSE,sTag); + fAngle += 30.0; + } + + x = tx; + y = ty; + //3 Medium and Large targets same x,y different z + for (nCount = 1;nCount < 4;nCount++) + { + sTag = "FireworksMTarget" + IntToString(nCount); + CreateObject(OBJECT_TYPE_PLACEABLE,"fireworksmtarget",Location(oArea,Vector(x,y,z),0.0),FALSE,sTag); + sTag = "FireworksLTarget" + IntToString(nCount); + CreateObject(OBJECT_TYPE_PLACEABLE,"fireworksltarget",Location(oArea,Vector(x,y,z),0.0),FALSE,sTag); + z += 1.5; + } + + //Start the SHOW! + DelayCommand(3.0,ExecuteScript("g_lightsout",oTarget)); + //DelayCommand(4.0,MusicBattlePlay(oArea)); + DelayCommand(4.0,ExecuteScript("g_fireworks",oTarget)); + } +} + +//void main () {} diff --git a/_module/nss/gamble_board.nss b/_module/nss/gamble_board.nss new file mode 100644 index 0000000..9afa0d5 --- /dev/null +++ b/_module/nss/gamble_board.nss @@ -0,0 +1,75 @@ +void main() +{ +object oPC = GetLastUsedBy(); +object oMod = GetModule(); +int iTLwager = GetLocalInt(oPC, "TLwager"); +int iTWwager = GetLocalInt(oPC, "TWwager"); +int iPlaced = GetLocalInt(oPC, "bets_placed"); +int iTTwager; +int iDice; +string sStatus; +string iMessage; +int iCheck = GetLocalInt(oPC, "luciferdead"); + +if (GetLocalInt(oMod, "mod_mode")==1) +{ +PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("*** Not used in campaign manager mode ***", oPC); + return; +} + +if (iCheck==1) +{ + +iDice = d8(); + switch(iDice) + { + case 1: {iMessage = "In gambling the many must lose in order that the few may win!";}break; + case 2: {iMessage = "A man's gotta make at least one bet a day, else he could be walking around lucky and never know it!";}break; + case 3: {iMessage = "Gambling is a disease of barbarians superficially civilized!";}break; + case 4: {iMessage = "Gambling is the son of avarice and the father of despair!";}break; + case 5: {iMessage = "Gold's father is dirt, yet it regards itself as noble!";}break; + case 6: {iMessage = "There are two great pleasures in gambling: that of winning and that of losing!";}break; + case 7: {iMessage = "Gambling is a principle inherent in nature!";}break; + case 8: {iMessage = "The gambling known as business looks with severe disfavor on the business known as gambling!";}break; + case 9: {iMessage = "Gambling promises the poor what property performs for the rich!";}break; + case 10: {iMessage = "The most dangerous thing about gambling is winning!";}break; + } + + +iTTwager = iTWwager-iTLwager; +if (iTTwager<0){sStatus = "Down"; iTTwager+=iTTwager*-2;} +else if (iTTwager>0){sStatus = "Up";} +else {sStatus = "Even";} + +PlaySound("gui_select"); + +string SpeakText = "\n====================\n"; + SpeakText += "Betting Statistics"; + SpeakText += "\n--------------------\n"; + SpeakText += "\nCustomer: "; + SpeakText += GetName(oPC); + SpeakText += "\n\nBets Placed: "; + SpeakText += IntToString(iPlaced); + SpeakText += "\nTotal Winnings: "; + SpeakText += IntToString(iTWwager); + SpeakText += "\nTotal Losses: "; + SpeakText += IntToString(iTLwager); + SpeakText += "\n\nCurrent Standing: "; + SpeakText += IntToString(iTTwager); + SpeakText += " "; + SpeakText += sStatus; + SpeakText += "\n--------------------\n"; + SpeakText += iMessage; + + SpeakString(SpeakText); +} +else +{ +PlaySound("sim_cntresist"); +FloatingTextStringOnCreature +("*** Not availible until the [Holy War] feature is unlocked ***", oPC); + } + +} diff --git a/_module/nss/gamble_reset.nss b/_module/nss/gamble_reset.nss new file mode 100644 index 0000000..9872922 --- /dev/null +++ b/_module/nss/gamble_reset.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "TLwager", 0); +SetLocalInt(oPC, "TWwager", 0); +SetLocalInt(oPC, "bets_placed", 0); +PlaySound("gui_select"); +PlaySound("gui_trapdisarm"); +FloatingTextStringOnCreature("** Gambling stats reset **", oPC); +} diff --git a/_module/nss/gamble_stats.nss b/_module/nss/gamble_stats.nss new file mode 100644 index 0000000..a83869d --- /dev/null +++ b/_module/nss/gamble_stats.nss @@ -0,0 +1,54 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iTLwager = GetLocalInt(oPC, "TLwager"); +int iTWwager = GetLocalInt(oPC, "TWwager")/2; +int iPlaced = GetLocalInt(oPC, "bets_placed"); +int iTTwager; +int iDice; +string sStatus; +string iMessage; + +iDice = d8(); + switch(iDice) + { + case 1: {iMessage = "In gambling the many must lose in order that the few may win!";}break; + case 2: {iMessage = "A man's gotta make at least one bet a day, else he could be walking around lucky and never know it!";}break; + case 3: {iMessage = "Gambling is a disease of barbarians superficially civilized!";}break; + case 4: {iMessage = "Gambling is the son of avarice and the father of despair!";}break; + case 5: {iMessage = "Gold's father is dirt, yet it regards itself as noble!";}break; + case 6: {iMessage = "There are two great pleasures in gambling: that of winning and that of losing!";}break; + case 7: {iMessage = "Gambling is a principle inherent in nature!";}break; + case 8: {iMessage = "The gambling known as business looks with severe disfavor on the business known as gambling!";}break; + case 9: {iMessage = "Gambling promises the poor what property performs for the rich!";}break; + case 10: {iMessage = "The most dangerous thing about gambling is winning!";}break; + } + + +iTTwager = iTWwager-iTLwager; +if (iTTwager<0){sStatus = "Down"; iTTwager+=iTTwager*-2;} +else if (iTTwager>0){sStatus = "Up";} +else {sStatus = "Even";} + +PlaySound("gui_select"); + +string SpeakText = "\n====================\n"; + SpeakText += "Betting Statistics"; + SpeakText += "\n--------------------\n"; + SpeakText += "\nCustomer: "; + SpeakText += GetName(oPC); + SpeakText += "\n\nBets Placed: "; + SpeakText += IntToString(iPlaced); + SpeakText += "\nTotal Winnings: "; + SpeakText += IntToString(iTWwager); + SpeakText += "\nTotal Losses: "; + SpeakText += IntToString(iTLwager); + SpeakText += "\n\nCurrent Standing: "; + SpeakText += IntToString(iTTwager); + SpeakText += " "; + SpeakText += sStatus; + SpeakText += "\n--------------------\n"; + SpeakText += iMessage; + + SpeakString(SpeakText); +} diff --git a/_module/nss/gate_lever.nss b/_module/nss/gate_lever.nss new file mode 100644 index 0000000..23506eb --- /dev/null +++ b/_module/nss/gate_lever.nss @@ -0,0 +1,19 @@ +void main() +{ +object oPC = GetLastUsedBy(); +object oGate = GetObjectByTag("arena_gate"); +int oLocked = GetLocked(oGate); +if (oLocked==TRUE) +{ +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_COM_HIT_ELECTRICAL), oGate); +SetLocked(oGate, FALSE); +DelayCommand(2.0, FloatingTextStringOnCreature("Gate unlocked", oPC)); +} +else +{ +PlaySound("sim_cntresist"); +FloatingTextStringOnCreature("This gate is already unlocked", oPC); +} +} diff --git a/_module/nss/gate_msg.nss b/_module/nss/gate_msg.nss new file mode 100644 index 0000000..231ffe4 --- /dev/null +++ b/_module/nss/gate_msg.nss @@ -0,0 +1,15 @@ +void main() +{ +object oPC = GetClickingObject(); +object oMod = GetModule(); +int nInt = GetLocalInt(oMod, "challenge"); +if (nInt==1) +{ +DelayCommand(1.0, FloatingTextStringOnCreature("Super challenge in progress. Gates will unlock on completion.", oPC)); +} + +if (GetLocalInt(oPC, "gate_locked")==1) +{ + FloatingTextStringOnCreature("You must loot your reward chest first.", oPC); +} +} diff --git a/_module/nss/gb_death.nss b/_module/nss/gb_death.nss new file mode 100644 index 0000000..334bff4 --- /dev/null +++ b/_module/nss/gb_death.nss @@ -0,0 +1,52 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// +#include "x0_i0_petrify" +#include "spawner" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oTarget= OBJECT_SELF; + object oSpawner = GetObjectByTag("spawner"); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + int oGameMode = GetLocalInt(oMod, "gamemode"); + int nInt1 = GetLocalInt(oMod, "st1"); + int nInt2 = GetLocalInt(oMod, "st2"); + int nInt3 = GetLocalInt(oMod, "st3"); + int nInt4 = GetLocalInt(oMod, "st4"); + int nInt5 = GetLocalInt(oMod, "st5"); + location lTarget; + int nInt; + + + string oStar = GetTag(oTarget); + DoEffect(7.0, VFX_DUR_ELEMENTAL_SHIELD, oStar); + DoEffect(8.0, VFX_IMP_LIGHTNING_M, oStar); + DoEffect(8.5, VFX_IMP_LIGHTNING_M, oStar); + DoEffect(8.7, VFX_IMP_LIGHTNING_M, oStar); + DoEffect(9.2, VFX_IMP_LIGHTNING_M, oStar); + DoEffect(9.6, VFX_IMP_LIGHTNING_M, oStar); + DoEffect(9.7, VFX_IMP_LIGHTNING_M, oStar); + DoEffect(9.8, VFX_IMP_LIGHTNING_M, oStar); + DoEffect(9.9, VFX_FNF_MYSTICAL_EXPLOSION, oStar); + + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + ExecuteScript("nw_c2_default7", OBJECT_SELF); + +} diff --git a/_module/nss/givelevel.nss b/_module/nss/givelevel.nss new file mode 100644 index 0000000..63dee7f --- /dev/null +++ b/_module/nss/givelevel.nss @@ -0,0 +1,8 @@ +void main() +{ + object oPC = GetPCSpeaker(); + int nLevel = GetHitDice(oPC); //Get level + int nXP = GetXP(oPC); //Save XP so we can restore it afterwards + int nLevelXP = (nLevel) * (nLevel + 2) * 500; //Work out how much XP will delevel the PC + SetXP(oPC, nLevelXP); //Set that level +} diff --git a/_module/nss/god_1.nss b/_module/nss/god_1.nss new file mode 100644 index 0000000..56f2efc --- /dev/null +++ b/_module/nss/god_1.nss @@ -0,0 +1,28 @@ +#include "spawner" + +void main() +{ +object oSelf = OBJECT_SELF; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +PCEffect(0.0, VFX_FNF_SCREEN_SHAKE, oPC); +SoundPlay(0.0, "as_wt_thunderds3", oPC); +SoundPlay(3.0, "as_wt_thunderds4", oPC); +SoundPlay(4.0, "as_wt_thunderds2", oPC); +SoundPlay(4.2, "as_wt_thunderds1", oPC); +SoundPlay(4.4, "as_wt_thundercl4", oPC); +DelayCommand(4.0, SetWeather(oMod, WEATHER_RAIN)); +DelayCommand(310.0, SetWeather(oMod, WEATHER_USE_AREA_SETTINGS)); +DelayCommand(2.0, AssignCommand(oSelf, SpeakString("The great one is displeased with your miserly gesture!"))); +} + +/* +as_wt_thunderds3 rolling +as_wt_thunderds4 rolling +as_wt_thunderds1 dist clap +as_wt_thunderds2 dist strike + +as_wt_thundercl4 rolling clap +as_wt_thundercl3 sharp clap +as_wt_thundercl2 sharp strike +as_wt_thundercl1 sharp strike diff --git a/_module/nss/god_2.nss b/_module/nss/god_2.nss new file mode 100644 index 0000000..48d95eb --- /dev/null +++ b/_module/nss/god_2.nss @@ -0,0 +1,40 @@ +#include "spawner" + +void main() +{ +object oSelf = OBJECT_SELF; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +effect eEffect= EffectDeath(); +SetImmortal(oPC, FALSE); +PCEffect(0.0, VFX_FNF_SCREEN_SHAKE, oPC); +SoundPlay(0.0, "as_wt_thunderds3", oPC); +SoundPlay(3.0, "as_wt_thunderds4", oPC); +SoundPlay(4.0, "as_wt_thunderds2", oPC); +SoundPlay(4.2, "as_wt_thunderds1", oPC); +SoundPlay(4.4, "as_wt_thundercl4", oPC); +SoundPlay(4.6, "as_wt_thunderds3", oPC); +SoundPlay(6.6, "as_wt_thunderds4", oPC); +SoundPlay(7.0, "as_wt_thunderds2", oPC); +SoundPlay(7.2, "as_wt_thundercl4", oPC); +SoundPlay(7.7, "as_wt_thundercl3", oPC); +SoundPlay(7.8, "as_wt_thundercl2", oPC); +SoundPlay(8.0, "as_wt_thundercl1", oPC); +PCEffect(8.0, VFX_IMP_LIGHTNING_M, oPC); +PCEffect(8.2, VFX_IMP_DEATH_L, oPC); +DelayCommand(8.2, ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC)); +DelayCommand(4.0, SetWeather(oMod, WEATHER_RAIN)); +DelayCommand(310.0, SetWeather(oMod, WEATHER_USE_AREA_SETTINGS)); +DelayCommand(2.0, AssignCommand(oSelf, SpeakString("Your greed has angered the great one!"))); +} + +/* +as_wt_thunderds3 rolling +as_wt_thunderds4 rolling +as_wt_thunderds1 dist clap +as_wt_thunderds2 dist strike + +as_wt_thundercl4 rolling clap +as_wt_thundercl3 sharp clap +as_wt_thundercl2 sharp strike +as_wt_thundercl1 sharp strike diff --git a/_module/nss/god_3.nss b/_module/nss/god_3.nss new file mode 100644 index 0000000..a77afa8 --- /dev/null +++ b/_module/nss/god_3.nss @@ -0,0 +1,104 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void main() +{ +itemproperty ipAdd; +object oSelf = OBJECT_SELF; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +effect eEffect; +int oMode = GetLocalInt(oMod, "gamemode"); +if (oMode!=1) + {eEffect = SupernaturalEffect(EffectDamageIncrease(DAMAGE_BONUS_20,DAMAGE_TYPE_DIVINE));} +else + {eEffect = SupernaturalEffect(EffectDamageIncrease(DAMAGE_BONUS_20,DAMAGE_TYPE_NEGATIVE));} + +object oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); + +object oItem1, oItem2; + + oItem1 = GetItemPossessedBy(oPC, "divine_talisman2"); + oItem2 = GetItemPossessedBy(oPC, "dark_talisman2"); +if (GetIsObjectValid(oItem1)) + DestroyObject(oItem1); +if (GetIsObjectValid(oItem2)) + DestroyObject(oItem2); + + +if (oMode!=1) + CreateItemOnObject("divine_talisman", oPC); +else + CreateItemOnObject("dark_talisman", oPC); + +SetLocalInt(oPC, "divine_on", 1); +SetLocalInt(GetPCSpeaker(), "div_got", 1); +SetImmortal(oPC, FALSE); +PCEffect(0.0, VFX_FNF_SCREEN_SHAKE, oPC); +PCEffect(4.0, VFX_FNF_SCREEN_SHAKE, oPC); +PCEffect(6.0, VFX_FNF_SCREEN_SHAKE, oPC); +PCEffect(8.0, VFX_FNF_SCREEN_SHAKE, oPC); +SoundPlay(0.0, "as_wt_thunderds3", oPC); +SoundPlay(3.0, "as_wt_thunderds4", oPC); +SoundPlay(4.0, "as_wt_thunderds2", oPC); +SoundPlay(4.2, "as_wt_thunderds1", oPC); +SoundPlay(4.4, "as_wt_thundercl4", oPC); +SoundPlay(4.6, "as_wt_thunderds3", oPC); +SoundPlay(6.6, "as_wt_thunderds4", oPC); +SoundPlay(7.0, "as_wt_thunderds2", oPC); +SoundPlay(7.2, "as_wt_thundercl4", oPC); +SoundPlay(7.7, "as_wt_thundercl3", oPC); +SoundPlay(7.8, "as_wt_thundercl2", oPC); +SoundPlay(8.0, "as_wt_thundercl1", oPC); +SoundPlay(5.0, "as_wt_gustsoft1", oPC); +SoundPlay(5.4, "as_wt_gustsoft1", oPC); +SoundPlay(7.0, "as_wt_guststrng1", oPC); +SoundPlay(7.7, "as_wt_guststrng1", oPC); +SoundPlay(5.0, "sff_summgood", oPC); + +PCEffect(8.0, VFX_FNF_STRIKE_HOLY, oPC); +PCEffect(8.3, VFX_FNF_STRIKE_HOLY, oPC); +PCEffect(8.6, VFX_FNF_STRIKE_HOLY, oPC); +PCEffect(8.9, VFX_IMP_PULSE_HOLY, oPC); +PCEffect(9.2, VFX_IMP_PULSE_HOLY, oPC); +PCEffect(9.5, VFX_FNF_ELECTRIC_EXPLOSION, oPC); +PCEffect(9.8, VFX_IMP_PULSE_HOLY, oPC); +PCEffect(9.9, VFX_FNF_ELECTRIC_EXPLOSION, oPC); +PCEffect(10.2, VFX_IMP_PULSE_HOLY, oPC); +PCEffect(10.7, VFX_FNF_MYSTICAL_EXPLOSION, oPC); +PCEffect(10.9, VFX_FNF_MYSTICAL_EXPLOSION, oPC); +PCEffect(11.2, VFX_DUR_GLOBE_INVULNERABILITY, oPC); +PCEffect(11.6, VFX_IMP_IMPROVE_ABILITY_SCORE, oPC); +PCEffect(11.9, VFX_IMP_IMPROVE_ABILITY_SCORE, oPC); +PCEffect(12.1, VFX_IMP_IMPROVE_ABILITY_SCORE, oPC); +PCEffect(12.3, VFX_IMP_IMPROVE_ABILITY_SCORE, oPC); +DelayCommand(8.2, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect, oPC)); +DelayCommand(4.0, SetWeather(oMod, WEATHER_RAIN)); +DelayCommand(12.0, SetWeather(oMod, WEATHER_USE_AREA_SETTINGS)); +DelayCommand(2.0, AssignCommand(oSelf, SpeakString("The almighty one has deemed you worthy!"))); +DelayCommand(8.4, ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC)); +if (oMode!=1) +ipAdd = ItemPropertyDamageBonus(IP_CONST_DAMAGETYPE_DIVINE, IP_CONST_DAMAGEBONUS_2d12); +else +ipAdd = ItemPropertyDamageBonus(IP_CONST_DAMAGETYPE_NEGATIVE, IP_CONST_DAMAGEBONUS_2d12); +IPSafeAddItemProperty(oItem, ipAdd); +if (oMode!=1) + {Message(14.0, "You have recieved divine power from the heavens", oPC);} +else + { + Message(14.0, "You have recieved negative power from the dark realm", oPC);} +} + +/* +as_wt_thunderds3 rolling +as_wt_thunderds4 rolling +as_wt_thunderds1 dist clap +as_wt_thunderds2 dist strike + +as_wt_thundercl4 rolling clap +as_wt_thundercl3 sharp clap +as_wt_thundercl2 sharp strike +as_wt_thundercl1 sharp strike + +as_wt_gustsoft1 gusts howls +as_wt_guststrng1 strong gust diff --git a/_module/nss/god_3a.nss b/_module/nss/god_3a.nss new file mode 100644 index 0000000..dcb02e7 --- /dev/null +++ b/_module/nss/god_3a.nss @@ -0,0 +1,103 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void main() +{ +itemproperty ipAdd; +object oSelf = OBJECT_SELF; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +effect eEffect; +int oMode = GetLocalInt(oMod, "gamemode"); +if (oMode!=1) + {eEffect = SupernaturalEffect(EffectDamageIncrease(DAMAGE_BONUS_20,DAMAGE_TYPE_DIVINE));} +else + {eEffect = SupernaturalEffect(EffectDamageIncrease(DAMAGE_BONUS_20,DAMAGE_TYPE_NEGATIVE));} + +object oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); + +object oItem1, oItem2; + + oItem1 = GetItemPossessedBy(oPC, "divine_talisman2"); + oItem2 = GetItemPossessedBy(oPC, "dark_talisman2"); +if (GetIsObjectValid(oItem1)) + DestroyObject(oItem1); +if (GetIsObjectValid(oItem2)) + DestroyObject(oItem2); + +if (oMode!=1) + CreateItemOnObject("divine_talisman", oPC); +else + CreateItemOnObject("dark_talisman", oPC); + +SetLocalInt(oPC, "divine_on", 1); +SetLocalInt(GetPCSpeaker(), "div_got", 1); +SetImmortal(oPC, FALSE); +PCEffect(0.0, VFX_FNF_SCREEN_SHAKE, oPC); +PCEffect(4.0, VFX_FNF_SCREEN_SHAKE, oPC); +PCEffect(6.0, VFX_FNF_SCREEN_SHAKE, oPC); +PCEffect(8.0, VFX_FNF_SCREEN_SHAKE, oPC); +SoundPlay(0.0, "as_wt_thunderds3", oPC); +SoundPlay(3.0, "as_wt_thunderds4", oPC); +SoundPlay(4.0, "as_wt_thunderds2", oPC); +SoundPlay(4.2, "as_wt_thunderds1", oPC); +SoundPlay(4.4, "as_wt_thundercl4", oPC); +SoundPlay(4.6, "as_wt_thunderds3", oPC); +SoundPlay(6.6, "as_wt_thunderds4", oPC); +SoundPlay(7.0, "as_wt_thunderds2", oPC); +SoundPlay(7.2, "as_wt_thundercl4", oPC); +SoundPlay(7.7, "as_wt_thundercl3", oPC); +SoundPlay(7.8, "as_wt_thundercl2", oPC); +SoundPlay(8.0, "as_wt_thundercl1", oPC); +SoundPlay(5.0, "as_wt_gustsoft1", oPC); +SoundPlay(5.4, "as_wt_gustsoft1", oPC); +SoundPlay(7.0, "as_wt_guststrng1", oPC); +SoundPlay(7.7, "as_wt_guststrng1", oPC); +SoundPlay(5.0, "sff_summevil", oPC); + +PCEffect(8.0, VFX_IMP_HARM, oPC); +PCEffect(8.3, VFX_IMP_HARM, oPC); +PCEffect(8.6, VFX_IMP_HARM, oPC); +PCEffect(8.9, VFX_IMP_PULSE_NEGATIVE, oPC); +PCEffect(9.2, VFX_IMP_AURA_NEGATIVE_ENERGY, oPC); +PCEffect(9.5, VFX_FNF_ELECTRIC_EXPLOSION, oPC); +PCEffect(9.8, VFX_IMP_PULSE_NEGATIVE, oPC); +PCEffect(9.9, VFX_FNF_ELECTRIC_EXPLOSION, oPC); +PCEffect(10.2, VFX_IMP_NEGATIVE_ENERGY, oPC); +PCEffect(10.7, VFX_FNF_MYSTICAL_EXPLOSION, oPC); +PCEffect(10.9, VFX_FNF_MYSTICAL_EXPLOSION, oPC); +PCEffect(11.2, VFX_DUR_GLOBE_INVULNERABILITY, oPC); +PCEffect(11.6, VFX_IMP_IMPROVE_ABILITY_SCORE, oPC); +PCEffect(11.9, VFX_IMP_IMPROVE_ABILITY_SCORE, oPC); +PCEffect(12.1, VFX_IMP_IMPROVE_ABILITY_SCORE, oPC); +PCEffect(12.3, VFX_IMP_IMPROVE_ABILITY_SCORE, oPC); +DelayCommand(8.2, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect, oPC)); +DelayCommand(4.0, SetWeather(oMod, WEATHER_RAIN)); +DelayCommand(12.0, SetWeather(oMod, WEATHER_USE_AREA_SETTINGS)); +DelayCommand(2.0, AssignCommand(oSelf, SpeakString("The almighty one has deemed you worthy!"))); +DelayCommand(8.4, ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC)); +if (oMode!=1) +ipAdd = ItemPropertyDamageBonus(IP_CONST_DAMAGETYPE_DIVINE, IP_CONST_DAMAGEBONUS_2d12); +else +ipAdd = ItemPropertyDamageBonus(IP_CONST_DAMAGETYPE_NEGATIVE, IP_CONST_DAMAGEBONUS_2d12); +IPSafeAddItemProperty(oItem, ipAdd); +if (oMode!=1) + {Message(14.0, "You have recieved divine power from the heavens", oPC);} +else + { + Message(14.0, "You have recieved negative power from the dark realm", oPC);} +} + +/* +as_wt_thunderds3 rolling +as_wt_thunderds4 rolling +as_wt_thunderds1 dist clap +as_wt_thunderds2 dist strike + +as_wt_thundercl4 rolling clap +as_wt_thundercl3 sharp clap +as_wt_thundercl2 sharp strike +as_wt_thundercl1 sharp strike + +as_wt_gustsoft1 gusts howls +as_wt_guststrng1 strong gust diff --git a/_module/nss/gold_purge.nss b/_module/nss/gold_purge.nss new file mode 100644 index 0000000..ffa337a --- /dev/null +++ b/_module/nss/gold_purge.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +location lLocation = GetLocation(oPC); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(VFX_IMP_SLOW), oPC); +int oGold = GetGold(oPC); +TakeGoldFromCreature(oGold, oPC, TRUE); +FloatingTextStringOnCreature("Gold Removed", oPC); +} diff --git a/_module/nss/gold_token.nss b/_module/nss/gold_token.nss new file mode 100644 index 0000000..47cfbbb --- /dev/null +++ b/_module/nss/gold_token.nss @@ -0,0 +1,6 @@ +int StartingConditional() +{ + SetCustomToken(100, IntToString(GetGold(GetPCSpeaker()))); + return TRUE; +} + diff --git a/_module/nss/gold_winnings.nss b/_module/nss/gold_winnings.nss new file mode 100644 index 0000000..686ced8 --- /dev/null +++ b/_module/nss/gold_winnings.nss @@ -0,0 +1,6 @@ +int StartingConditional() +{ + SetCustomToken(101, IntToString(GetLocalInt(GetPCSpeaker(), "winnings"))); + return TRUE; +} + diff --git a/_module/nss/golddeath.nss b/_module/nss/golddeath.nss new file mode 100644 index 0000000..20b456e --- /dev/null +++ b/_module/nss/golddeath.nss @@ -0,0 +1,69 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::///////////////////////////Wurm Death +#include "loot" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + SetLocalInt(oMod, "sw_hw", 0); + SetLocalInt(oMod, "ch_hw", 0); + SetLocalInt(oMod, "gr_xx", 0); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + + + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + SetLocalInt(oPC, "wurmdead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 2500); + } + } + + + + int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +PCEffect(0.0, VFX_IMP_DEATH, oTarget); +PCEffect(0.8, VFX_FNF_FIREBALL, oTarget); +} diff --git a/_module/nss/good_rollplay.nss b/_module/nss/good_rollplay.nss new file mode 100644 index 0000000..ad34aca --- /dev/null +++ b/_module/nss/good_rollplay.nss @@ -0,0 +1,31 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); + +if (GetAlignmentGoodEvil(oPC) == ALIGNMENT_GOOD) + { + FloatingTextStringOnCreature("You have been awarded for good rollplay", oPC); + CreateItemOnObject("faithdrink", oPC); + return; + } + else if (GetAlignmentGoodEvil(oPC) == ALIGNMENT_EVIL) + { + FloatingTextStringOnCreature("You have been penalised for poor rollplay", oPC); + AdjustAlignment(oPC, ALIGNMENT_GOOD, 10); + return; + } + else + { + FloatingTextStringOnCreature("Alignment shifted towards good", oPC); + AdjustAlignment(oPC, ALIGNMENT_GOOD, 10); + } +} + diff --git a/_module/nss/grate_port.nss b/_module/nss/grate_port.nss new file mode 100644 index 0000000..74dd495 --- /dev/null +++ b/_module/nss/grate_port.nss @@ -0,0 +1,15 @@ +void main() +{ +object oPC = GetLastUsedBy(); +//PlaySound("as_dr_x2ttu3op"); +AssignCommand(OBJECT_SELF, ActionPlayAnimation(ANIMATION_PLACEABLE_OPEN)); +DelayCommand(1.5, PlaySound("fs_carpt_hard1")); +DelayCommand(1.8, PlaySound("fs_carpt_hard2")); +DelayCommand(2.1, PlaySound("fs_carpt_hard1")); +DelayCommand(2.4, PlaySound("fs_carpt_hard2")); +DelayCommand(2.7, PlaySound("fs_carpt_hard1")); + +object oTarget = GetWaypointByTag("shrine_wp"); +location lLocation = GetLocation(oTarget); +DelayCommand(2.9, AssignCommand(oPC, JumpToLocation(lLocation))); +} diff --git a/_module/nss/haggle1.nss b/_module/nss/haggle1.nss new file mode 100644 index 0000000..2ae0bce --- /dev/null +++ b/_module/nss/haggle1.nss @@ -0,0 +1,16 @@ +#include "nw_i0_tool" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (!GetIsSkillSuccessful(oPC, SKILL_PERSUADE, 30)) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/haggle2.nss b/_module/nss/haggle2.nss new file mode 100644 index 0000000..69bf875 --- /dev/null +++ b/_module/nss/haggle2.nss @@ -0,0 +1,16 @@ +#include "nw_i0_tool" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (!GetIsSkillSuccessful(oPC, SKILL_PERSUADE, 40)) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/hal_play.nss b/_module/nss/hal_play.nss new file mode 100644 index 0000000..95cb091 --- /dev/null +++ b/_module/nss/hal_play.nss @@ -0,0 +1,11 @@ +void main() +{ +object oPC = GetPCSpeaker(); +MusicBackgroundChangeDay(GetArea(oPC), 76); +MusicBackgroundChangeNight(GetArea(oPC), 76); +MusicBackgroundPlay(GetArea(oPC)); +DelayCommand(209.0, MusicBackgroundChangeDay(GetArea(oPC), 0)); +DelayCommand(209.0, MusicBackgroundChangeNight(GetArea(oPC), 0)); +DelayCommand(210.0, MusicBackgroundStop(GetArea(oPC))); +FloatingTextStringOnCreature("** Music Started **", oPC); +} diff --git a/_module/nss/hal_stop.nss b/_module/nss/hal_stop.nss new file mode 100644 index 0000000..3fa5aa0 --- /dev/null +++ b/_module/nss/hal_stop.nss @@ -0,0 +1,8 @@ +void main() +{ +object oPC = GetPCSpeaker(); +MusicBackgroundChangeDay(GetArea(oPC), 0); +MusicBackgroundChangeNight(GetArea(oPC), 0); +MusicBackgroundStop(GetArea(oPC)); +FloatingTextStringOnCreature("** Music Stopped **", oPC); +} diff --git a/_module/nss/has_20k.nss b/_module/nss/has_20k.nss new file mode 100644 index 0000000..fba8965 --- /dev/null +++ b/_module/nss/has_20k.nss @@ -0,0 +1,15 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (!(GetGold(oPC) >= 20000)) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/has_30k.nss b/_module/nss/has_30k.nss new file mode 100644 index 0000000..57edda9 --- /dev/null +++ b/_module/nss/has_30k.nss @@ -0,0 +1,15 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (!(GetGold(oPC) >= 30000)) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/has_40k.nss b/_module/nss/has_40k.nss new file mode 100644 index 0000000..dc3ccb2 --- /dev/null +++ b/_module/nss/has_40k.nss @@ -0,0 +1,15 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (!(GetGold(oPC) >= 40000)) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/haste_imbue.nss b/_module/nss/haste_imbue.nss new file mode 100644 index 0000000..d7331af --- /dev/null +++ b/_module/nss/haste_imbue.nss @@ -0,0 +1,33 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Speedup(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyHaste(); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void HasteImbue () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_HASTE, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_SUPER_HEROISM, OBJECT_SELF); +PCEffect(2.0,VFX_DUR_CESSATE_POSITIVE, OBJECT_SELF); +DelayCommand(1.0, Speedup(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} +//void main (){} diff --git a/_module/nss/hc_inc.nss b/_module/nss/hc_inc.nss new file mode 100644 index 0000000..24ba45d --- /dev/null +++ b/_module/nss/hc_inc.nss @@ -0,0 +1,34 @@ +//Hardcore Death Info +//Archaegeo 2002 Jun 24 + +#include "hc_inc_pwdb_func" + +// This script contains default values for PlayerState and is included in +// any file where PlayerState must be checked. Other PlayerState's could +// be added here + + int PWS_PLAYER_STATE_ALIVE = 0; + int PWS_PLAYER_STATE_DYING = 1; + int PWS_PLAYER_STATE_DEAD = 2; + int PWS_PLAYER_STATE_STABLE = 3; + int PWS_PLAYER_STATE_DISABLED = 4; + int PWS_PLAYER_STATE_RECOVERY = 5; + int PWS_PLAYER_STATE_STABLEHEAL = 6; + int PWS_PLAYER_STATE_RESURRECTED = 7; + int PWS_PLAYER_STATE_RESTRUE = 8; + int PWS_PLAYER_STATE_RAISEDEAD = 9; + +object oMod=GetModule(); + +int GPS(object oPC) +{ + return GetPersistentInt(oMod,"PlayerState"+GetName(oPC)+GetPCPublicCDKey(oPC)); +} + +void SPS(object oPC, int nPS) +{ + SetPersistentInt(oMod,"PlayerState"+GetName(oPC)+GetPCPublicCDKey(oPC), nPS); +} + + + diff --git a/_module/nss/hc_inc_dthcorpse.nss b/_module/nss/hc_inc_dthcorpse.nss new file mode 100644 index 0000000..3082807 --- /dev/null +++ b/_module/nss/hc_inc_dthcorpse.nss @@ -0,0 +1,413 @@ +//////////////////////////////////////////////////////////////////////////////// +// // // +// _kb_loot_corpse (include version) // VERSION 1.6 // +// // // +// by Keron Blackfeld on 07/13/2002 //////////////////////////// +// update on 07/27/2002 // +// email Questions and Comments to: keron@broadswordgaming.com or catch me // +// in Bioware's NWN Community - Builder's NWN Scripting Forum // +// // +//////////////////////////////////////////////////////////////////////////////// +// // +// CONFIGURING THE SCRIPT // +// // +// This script supports some configuration by the user. Following the // +// void LeaveCorpse() of the _kb_loot_corpse, you'll find a section where // +// you can set a few things. These include: (with default values displayed) // +// // +// // +// int nUseLootable = TRUE This enables the script. Setting is to FALSE // +// disables it. // +// // +// int nMoveEquipped = TRUE Setting this to FALSE will stop the script // +// from moving equipped items (other than // +// Armour and Weapons/Shield) to the lootable // +// corpse. (For preventing the move/copy of // +// Armour and Weapons/Shield, use the next four // +// toggles.) Remember that CREATURE SLOTTED // +// items are NEVER moved anyway. // +// // +// int nCopyArmour = TRUE This will use the TAG to guess the ResRef for // +// creating a copy of the Armour the creature or // +// NPC is wearing. If you do not want to use // +// this function, you may want to consider the // +// next one (nMoveArmour). // +// // +// int nMoveArmour = FALSE Setting this TRUE will just move the armour // +// from the Chest Slot to the Lootable Corpse // +// Object on death. This can be a visual issue // +// when used with NPCs - since when the armour // +// is moved, the NPC will become 'naked'. // +// // +// *** If you do not wish to use either of the armour functions, just set // +// both values to FALSE. Then just add an additional suit of armour to // +// NPCs and creatures you want to have Drop their armour. // +// // +// int nDropWeapons = TRUE This will use the TAG to guess the ResRef for // +// dropping the weapons on the ground - which is // +// accomplished by creating new ones on the // +// ground and destroying the ones in the NPC's // +// inventory. // +// // +// int nMoveWeapons = FALSE Setting this TRUE will just move the weapons // +// to the Lootable Object just as the rest of // +// inventory is handled. // +// // +// *** If you do not wish to use either of the weapon functions, just set // +// both values to FALSE. Then just add additional weapons or a shield to // +// NPCs and creatures you want to have Drop those items. // +// // +// int nUseBlood = TRUE Set this to TRUE if you want a Bloodspot to // +// appear under the corpse for a little extra // +// gory appeal. // +// // +// int nCorpseFade = 0120 This is the delay in actual seconds that the // +// corpse will remain before is fades. If you // +// set this to 0 (zero) it will turn off the // +// corpse fade - allowing all bodies and loot // +// to remain indefinitely. // +// // +// int nKeepEmpties = TRUE Set this to FALSE if you want EMPTY corpses // +// to fade immediately after their invenotry is // +// emptied. // +// // +// int nOverrideForPlacedCorpses = TRUE Set this to TRUE if you want the // +// 'Spawned Corpses' you place to be // +// permament. Setting it to FALSE // +// will cause your Placed Dead // +// creatures to act as the settings // +// above dictate. (i.e. Fading Out // +// after the delay or being emptied) // +// // +//////////////////////////////////////////////////////////////////////////////// +#include "prc_inc_racial" + +/******************************************************************************* + ** This script was borrowed from the Hard Core Ruleset, where they use it to ** + ** move a Dead PC's inventory to a lootable corpse object. Credit where ** + ** credit is due, I always say. :) ** + *******************************************************************************/ +void strip_equiped(object oDeadNPC, object oLootCorpse, object oEquip) +{ + if(GetIsObjectValid(oEquip)) + { + AssignCommand(oLootCorpse, ActionTakeItem(oEquip, oDeadNPC)); + } +} + +/******************************************************************************* + ** SPECIAL THANKS TO DREZDAR AND MOJO for their help in getting these two ** + ** drop weapon scripts written. I never would have gotten the vectors right, ** + ** but THEY sure did! ** + *******************************************************************************/ +void DropLeftWeapon(object oDeadNPC) +{ + object oLeftWpn = GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oDeadNPC); + + if(FindSubString(GetTag(oLeftWpn),"NW_IT_CRE")>-1) + { + DestroyObject(oLeftWpn); + return; + } + if(GetIsObjectValid(oLeftWpn)) + { + vector vCorpseLoc = GetPositionFromLocation(GetLocation(oDeadNPC)); + float fDifferential = 45.0f + IntToFloat(d20()); + float fDistance = 0.5f + (IntToFloat(d10())/10); + float fVarWpnFace = -20.0f - IntToFloat(d20(2)); + float fFacing = GetFacing(oDeadNPC); + fFacing = fFacing + fDifferential; + if (fFacing > 360.0f) + { fFacing = 720.0f - fFacing; } + if (fFacing < 0.0f) + { fFacing = 360.0f + fFacing; } + float fWpnFacing = GetFacing(oDeadNPC) + fVarWpnFace; + object oArea = GetArea(oDeadNPC); + //Generate New Location + float fNewX; + float fNewY; + float fNewZ; + if ((fFacing > 0.0f) && (fFacing < 90.0f)) + { fNewX = vCorpseLoc.x + ((cos(fFacing))*fDistance); fNewY = vCorpseLoc.y + ((sin(fFacing))*fDistance); fNewZ = vCorpseLoc.z; } + else if ((fFacing > 90.0f) && (fFacing < 180.0f)) + { fNewX = vCorpseLoc.x - ((cos(180.0f - fFacing))*fDistance); fNewY = vCorpseLoc.y + ((sin(180.0f - fFacing))*fDistance); fNewZ = vCorpseLoc.z; } + else if ((fFacing > 180.0f) && (fFacing < 270.0f)) + { fNewX = vCorpseLoc.x - ((cos(fFacing - 180.0f))*fDistance); fNewY = vCorpseLoc.y - ((sin(fFacing - 180.0f))*fDistance); fNewZ = vCorpseLoc.z; } + else if ((fFacing > 270.0f) && (fFacing < 360.0f)) + { fNewX = vCorpseLoc.x + ((cos(360.0f - fFacing))*fDistance); fNewY = vCorpseLoc.y - ((sin(360.0f - fFacing))*fDistance); fNewZ = vCorpseLoc.z; } + else if (fFacing == 0.0f) + { fNewX = vCorpseLoc.x + fDistance; fNewY = vCorpseLoc.y; fNewZ = vCorpseLoc.z; } + else if (fFacing == 90.0f) + { fNewX = vCorpseLoc.x; fNewY = vCorpseLoc.y + fDistance; fNewZ = vCorpseLoc.z; } + else if (fFacing == 180.0f) + { fNewX = vCorpseLoc.x - fDistance; fNewY = vCorpseLoc.y; fNewZ = vCorpseLoc.z; } + else if (fFacing == 270.0f) + { fNewX = vCorpseLoc.x; fNewY = vCorpseLoc.y - fDistance; fNewZ = vCorpseLoc.z; } + vector vNewFinal = Vector(fNewX, fNewY, fNewZ); + location lDropLeft = Location(oArea, vNewFinal, fFacing); + //Drop Weapon + string sLeftWpnTag = GetStringLeft(GetTag(oLeftWpn), 16); + DestroyObject(oLeftWpn); + if (d12(1)==4) + { + object oLeftWpn = CreateObject(OBJECT_TYPE_ITEM, sLeftWpnTag, lDropLeft, FALSE); + AssignCommand(oLeftWpn, SetFacing(fWpnFacing)); + SetLocalObject(oDeadNPC, "oLeftWpn", oLeftWpn); + } + } +} +// +void DropRightWeapon(object oDeadNPC) +{ + object oRightWpn = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oDeadNPC); + + if(FindSubString(GetTag(oRightWpn),"NW_IT_CRE")>-1) + { + DestroyObject(oRightWpn); + return; + } + if(GetIsObjectValid(oRightWpn)) + { + vector vCorpseLoc = GetPositionFromLocation(GetLocation(oDeadNPC)); + float fDifferential = -45.0f + IntToFloat(d20()); + float fDistance = 0.5f + (IntToFloat(d10())/10); + float fVarWpnFace = 20.0f - IntToFloat(d20(2)); + float fFacing = GetFacing(oDeadNPC); + fFacing = fFacing + fDifferential; + if (fFacing > 360.0f) + { fFacing = 720.0f - fFacing; } + if (fFacing < 0.0f) + { fFacing = 360.0f + fFacing; } + float fWpnFacing = GetFacing(oDeadNPC) + fVarWpnFace; + object oArea = GetArea(oDeadNPC); + //Generate New Location + float fNewX; + float fNewY; + float fNewZ; + if ((fFacing > 0.0f) && (fFacing < 90.0f)) + { fNewX = vCorpseLoc.x + ((cos(fFacing))*fDistance); fNewY = vCorpseLoc.y + ((sin(fFacing))*fDistance); fNewZ = vCorpseLoc.z; } + else if ((fFacing > 90.0f) && (fFacing < 180.0f)) + { fNewX = vCorpseLoc.x - ((cos(180.0f - fFacing))*fDistance); fNewY = vCorpseLoc.y + ((sin(180.0f - fFacing))*fDistance); fNewZ = vCorpseLoc.z; } + else if ((fFacing > 180.0f) && (fFacing < 270.0f)) + { fNewX = vCorpseLoc.x - ((cos(fFacing - 180.0f))*fDistance); fNewY = vCorpseLoc.y - ((sin(fFacing - 180.0f))*fDistance); fNewZ = vCorpseLoc.z; } + else if ((fFacing > 270.0f) && (fFacing < 360.0f)) + { fNewX = vCorpseLoc.x + ((cos(360.0f - fFacing))*fDistance); fNewY = vCorpseLoc.y - ((sin(360.0f - fFacing))*fDistance); fNewZ = vCorpseLoc.z; } + else if (fFacing == 0.0f) + { fNewX = vCorpseLoc.x + fDistance; fNewY = vCorpseLoc.y; fNewZ = vCorpseLoc.z; } + else if (fFacing == 90.0f) + { fNewX = vCorpseLoc.x; fNewY = vCorpseLoc.y + fDistance; fNewZ = vCorpseLoc.z; } + else if (fFacing == 180.0f) + { fNewX = vCorpseLoc.x - fDistance; fNewY = vCorpseLoc.y; fNewZ = vCorpseLoc.z; } + else if (fFacing == 270.0f) + { fNewX = vCorpseLoc.x; fNewY = vCorpseLoc.y - fDistance; fNewZ = vCorpseLoc.z; } + vector vNewFinal = Vector(fNewX, fNewY, fNewZ); + location lDropRight = Location(oArea, vNewFinal, fFacing); + //Drop Weapon + string sRightWpnTag = GetStringLeft(GetTag(oRightWpn), 16); + DestroyObject(oRightWpn); + if (d12(1)==7) + { + object oRightWpn = CreateObject(OBJECT_TYPE_ITEM, sRightWpnTag, lDropRight, FALSE); + AssignCommand(oRightWpn, SetFacing(fWpnFacing)); + SetLocalObject(oDeadNPC, "oRightWpn", oRightWpn); + } + } +} + +/******************************************************************************* + ** This script checks to see if the weapons are still unclaimed. If it finds ** + ** that they are not possessed by someone, it issues the DestroyObjects to ** + ** eliminate them. ** + *******************************************************************************/ +void DestroyWeapons(object oCorpse) +{ + //Check to see if a PC Possesses the Left Weapon + object oLeftWpn = GetLocalObject(oCorpse, "oLeftWpn"); + object oLeftTest = GetItemPossessor(oLeftWpn); + if (oLeftTest == OBJECT_INVALID) DestroyObject(oLeftWpn); + //Check to see if a PC Possesses the Right Weapon + object oRightWpn = GetLocalObject(oCorpse, "oRightWpn"); + object oRightTest = GetItemPossessor(oRightWpn); + if (oRightTest == OBJECT_INVALID) DestroyObject(oRightWpn); +} + +/******************************************************************************* + ** This script is derived from the one above borrowed from the Hard Core ** + ** Ruleset. It sweeps an objects inventory (all but Creature Slots, which ** + ** have no bearing here) so that when the object is destroyed no Lootbags ** + ** are left behind to litter up the landscape & devour system resources. ** + *******************************************************************************/ +void ClearInventory(object oCorpse) +{ + int nAmtGold = GetGold(oCorpse); //Get any gold from the dead creature + if(nAmtGold) TakeGoldFromCreature(nAmtGold, oCorpse, TRUE); + //Get any loot the dead creature has equipped - thanks again to the HCR for strip-equiped + DestroyObject(GetItemInSlot(INVENTORY_SLOT_ARMS, oCorpse)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_ARROWS, oCorpse)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_BELT, oCorpse)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_BOLTS, oCorpse)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_BOOTS, oCorpse)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_BULLETS, oCorpse)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_CLOAK, oCorpse)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_HEAD, oCorpse)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_LEFTRING, oCorpse)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_NECK, oCorpse)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_RIGHTRING, oCorpse)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_CHEST, oCorpse)); + //Get the remaining loot from the dead creature and move it to the lootable object + object oLootEQ = GetFirstItemInInventory(oCorpse); + while(GetIsObjectValid(oLootEQ)) + { + DestroyObject(oLootEQ); + oLootEQ = GetNextItemInInventory(oCorpse); + } +} + +void LeaveCorpse() +{ + //SET YOUR ARMOUR, WEAPONS/SHIELD, BLOOD, CORPSE FADE, KEEP EMPTY, AND SPAWNED DEAD OVERRIDE PREFERENCES HERE /////////////// + // // + int nUseLootable = TRUE; // Set this to FALSE if you want disable the lootable corpse functionality // + int nMoveEquipped = FALSE; // Set this to FALSE if you don't want to move Equipped items to the corpse // + int nCopyArmour = TRUE; // This will use the TAG to guess the ResRef for creating a copy of the Armour // + int nMoveArmour = FALSE; // Setting this TRUE will just move the armour from the Chest Slot // + int nDropWeapons = TRUE; // This will use the TAG to guess the ResRef for dropping the weapons on the ground // + int nMoveWeapons = FALSE; // Setting this TRUE will just move the weapons to the Lootable Object // + int nUseBlood = TRUE; // Set this to TRUE if you want a Bloodspot to appear under the corpse // + int nCorpseFade = 0120; // Set this to 0 (ZERO) if you DO NOT want the corpses to fade // + int nKeepEmpties = TRUE; // Set this to FALSE if you want EMPTY corpses to fade immediately // + int nOverrideForPlacedCorpses = TRUE; // Set this to TRUE if you want the 'Spawned Corpses' you // + // // place to be permament. Setting it to FALSE will cause // + // // your Placed Dead creatures to act as the settings above dictate. // + // // + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + //ALTER THE FOLLOWING AT YOUR OWN RISK :) + object oDeadNPC = OBJECT_SELF; //Get the Dead Creature Object + string sBaseTag = GetTag(oDeadNPC); //Get that TAG of the dead creature + string sPrefix = GetStringLeft(sBaseTag, 4); //Look for Dead Prefix + + + if(nUseLootable) //If False, do nothing + { + location lCorpseLoc = GetLocation(oDeadNPC); //Set the spawnpoint for our lootable object + + //Do 'spawned corpse' if desired + if (sPrefix == "Dead") + { + if (nOverrideForPlacedCorpses) + { + nKeepEmpties = TRUE; //Set 'Spawned Dead' corpses to Keep Empties + nCorpseFade = 0; //Disable Corpse Fade for 'Spawned Dead' corpses + } + } + + SetIsDestroyable(FALSE,TRUE,FALSE); //Protect our corpse from decaying + object oCorpseBlood; + if (MyPRCGetRacialType(oDeadNPC) != RACIAL_TYPE_UNDEAD) //Check to see if our NPC is Undead, if not, do Bloodspot Routine + { + if (nUseBlood) + { + oCorpseBlood = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_bloodstain", lCorpseLoc, FALSE); //Spawn some blood for effect (if nUseBlood == TRUE) + } + } + object oLootCorpse = CreateObject(OBJECT_TYPE_PLACEABLE, "invis_corpse_obj", lCorpseLoc, FALSE); //Spawn our lootable object + SetLocalObject(oLootCorpse, "oHostBody", oDeadNPC); //Set Local for deletion later if needed + SetLocalObject(oLootCorpse, "oBloodSpot", oCorpseBlood); //Set Local for deletion later if needed + SetLocalInt(oLootCorpse, "oKeepEmpty", nKeepEmpties); //Set Local for deletion later if needed + + //Get DEAD CREATURE'S INVENTORY + int nAmtGold = GetGold(oDeadNPC); //Get any gold from the dead creature + if(nAmtGold) + { + object oGold = CreateItemOnObject("nw_it_gold001", oLootCorpse, nAmtGold); + AssignCommand(oLootCorpse,TakeGoldFromCreature(nAmtGold,oDeadNPC,TRUE)); + } + if (nMoveEquipped) + { + //Get any loot the dead creature has equipped - thanks again to the HCR for strip-equiped + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_ARMS, oDeadNPC)); + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_ARROWS, oDeadNPC)); + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_BELT, oDeadNPC)); + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_BOLTS, oDeadNPC)); + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_BOOTS, oDeadNPC)); + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_BULLETS, oDeadNPC)); + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_CLOAK, oDeadNPC)); + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_HEAD, oDeadNPC)); + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_LEFTRING, oDeadNPC)); + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_NECK, oDeadNPC)); + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_RIGHTRING, oDeadNPC)); + } + //Handle Weapons + if (nDropWeapons) + { + //Drop Weapons + DropLeftWeapon(oDeadNPC); + object oCLWpn = GetLocalObject(oDeadNPC, "oLeftWpn"); + SetLocalObject(oLootCorpse, "oLeftWpn", oCLWpn); + DropRightWeapon(oDeadNPC); + object oCRWpn = GetLocalObject(oDeadNPC, "oRightWpn"); + SetLocalObject(oLootCorpse, "oRightWpn", oCRWpn); + } + if (nMoveWeapons) + { + //Move Weapons + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oDeadNPC)); + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oDeadNPC)); + } + + //Handle Armour + if(nMoveArmour) + { + SendMessageToAllDMs(GetTag(GetItemInSlot(INVENTORY_SLOT_CHEST, oDeadNPC))); + SendMessageToAllDMs("Arm: "+IntToString(FindSubString(GetTag(GetItemInSlot(INVENTORY_SLOT_CHEST, oDeadNPC)),"NW_IT_CRE"))); + strip_equiped(oDeadNPC, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_CHEST, oDeadNPC)); + } + + if(nCopyArmour) + { + object oArmour = GetItemInSlot(INVENTORY_SLOT_CHEST, oDeadNPC); + string sArmourTag = GetStringLeft(GetTag(oArmour), 16); + if(FindSubString(sArmourTag,"NW_IT_CRE")>-1) + { + DestroyObject(oArmour); + } + else + { + if (d10()==1) + { + object oLootArmour = CreateItemOnObject(sArmourTag, oLootCorpse); + SetLocalObject(oLootCorpse, "oOrigArmour", oArmour); + SetLocalObject(oLootCorpse, "oLootArmour", oLootArmour); + } + } + } + //Get the remaining loot from the dead creature and move it to the lootable object + object oLootEQ = GetFirstItemInInventory(oDeadNPC); + while(GetIsObjectValid(oLootEQ)) + { + if(FindSubString(GetTag(oLootEQ),"NW_IT_CRE")>-1) + { + DestroyObject(oLootEQ); + oLootEQ=GetNextItemInInventory(oDeadNPC); + continue; + } + AssignCommand(oLootCorpse, ActionTakeItem(oLootEQ, oDeadNPC)); + oLootEQ = GetNextItemInInventory(oDeadNPC); + } + + //Do Corpse Fade out after specified delay (unless flagged 0) + if (nCorpseFade > 0) + { + float fCorpseFade = IntToFloat(nCorpseFade); + ActionWait(fCorpseFade); + DelayCommand(fCorpseFade, ClearInventory(oLootCorpse)); + DelayCommand(fCorpseFade, ClearInventory(oDeadNPC)); + DelayCommand(fCorpseFade, DestroyObject(oLootCorpse)); + DelayCommand(fCorpseFade, DestroyObject(oCorpseBlood)); + DelayCommand(fCorpseFade, DestroyWeapons(oDeadNPC)); + DelayCommand(fCorpseFade + 1.0f, SetIsDestroyable(TRUE,TRUE,FALSE)); + DelayCommand(fCorpseFade + 1.5f, DestroyObject(oDeadNPC)); + } + } +} diff --git a/_module/nss/hc_inc_pwdb_func.nss b/_module/nss/hc_inc_pwdb_func.nss new file mode 100644 index 0000000..25ea831 --- /dev/null +++ b/_module/nss/hc_inc_pwdb_func.nss @@ -0,0 +1,514 @@ +//::////////////////////////////////////////////////// +//:: Created By: Valerio Santinelli - tanis@mediacom.it +//:: Created On: 2002/08/09 +//::////////////////////////////////////////////////// +/* + Persistent World DataBase functions. + Credits to E.J. Wilburn - zane@supernova.org for the original idea. +*/ + +// Get our persistent ID. +// If the ID is not in the ID list and bCreate is set +// to TRUE then we create a new ID and return it, otherwise return 0. +int GetPerID(string sKey, int bCreate = FALSE) { + object oPWDBObjs = GetObjectByTag("PWDB_OBJECTS"); + + int iID = GetLocalInt(oPWDBObjs, sKey); + + if (!iID && bCreate) + { + iID = GetLocalInt(oPWDBObjs, "COUNT") + 1; + SetLocalInt(oPWDBObjs, "COUNT", iID); + SetLocalInt(oPWDBObjs, sKey, iID); + SetLocalString(oPWDBObjs, IntToString(iID), sKey); + } + + return iID; +} + +// Determine an Object's key. +string GetKey(object oTarget) +{ + string sKey; + + if (GetIsPC(oTarget)) + sKey = GetPCPlayerName(oTarget) + "," + GetName(oTarget); + else + sKey = GetTag(oTarget) + "," + GetName(oTarget); + + return sKey; +} + +// Get a persistent var ID. +// If the var is not in the ID list and bCreate is TRUE +// then we create the ID and return it, otherwise return 0. +// iObjID is obtained from GetPID +// sVarName is the Variable Name to retrieve. +int GetVarID(int iObjID, string sVarName, int bCreate = FALSE) { + string sKey = IntToString(iObjID) + "_" + sVarName; + object oPWDBVars = GetObjectByTag("PWDB_VALUES"); + + int iID = GetLocalInt(oPWDBVars, sKey); + + if (!iID && bCreate) + { + iID = GetLocalInt(oPWDBVars, "COUNT") + 1; + SetLocalInt(oPWDBVars, "COUNT", iID); + SetLocalInt(oPWDBVars, sKey, iID); + string sID = IntToString(iID); + SetLocalString(oPWDBVars, sID + "_KEY", sKey); + SetLocalString(oPWDBVars, sID + "_VARNAME", sVarName); + SetLocalInt(oPWDBVars, sID + "_OWNER", iObjID); + SetLocalInt(oPWDBVars, sID + "_CHANGED", 1); + } + + return iID; +} + +string GetPersistentString(object oTarget, string sName) +{ + // Get our object's persistent ID. + int iObjID = GetPerID(GetKey(oTarget)); + if (!iObjID) + return ""; + + int iVarID = GetVarID(iObjID, "S" + sName); + if (!iVarID) + return ""; + + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + return GetLocalString(oPWDBValues, IntToString(iVarID) + "_VALUE"); } + +int GetPersistentInt(object oTarget, string sName) +{ + // Get our object's persistent ID. + int iObjID = GetPerID(GetKey(oTarget)); + if (!iObjID) + return 0; + + int iVarID = GetVarID(iObjID, "I" + sName); + if (!iVarID) + return 0; + + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + return GetLocalInt(oPWDBValues, IntToString(iVarID) + "_VALUE"); } + +float GetPersistentFloat(object oTarget, string sName) +{ + // Get our object's persistent ID. + int iObjID = GetPerID(GetKey(oTarget)); + if (!iObjID) + return 0.0f; + + int iVarID = GetVarID(iObjID, "F" + sName); + if (!iVarID) + return 0.0f; + + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + return GetLocalFloat(oPWDBValues, IntToString(iVarID) + "_VALUE"); } + +location GetPersistentLocation(object oTarget, string sName) +{ + // Get our object's persistent ID. + int iObjID = GetPerID(GetKey(oTarget)); + int iVarID = GetVarID(iObjID, "L" + sName); + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + return GetLocalLocation(oPWDBValues, IntToString(iVarID) + "_VALUE"); } + +object GetPersistentObject(object oTarget, string sName) +{ + // Get our object's persistent ID. + int iObjID = GetPerID(GetKey(oTarget)); + if (!iObjID) + return OBJECT_INVALID; + + int iVarID = GetVarID(iObjID, "O" + sName); + if (!iVarID) + return OBJECT_INVALID; + + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + return GetLocalObject(oPWDBValues, IntToString(iVarID) + "_VALUE"); } + +void SetPersistentStringByKey(string sKey, string sName, string sValue, int bMarkChanged = TRUE) { + // Get our object's persistent ID. + int iObjID = GetPerID(sKey, TRUE); + int iVarID = GetVarID(iObjID, "S" + sName, TRUE); + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + string sVarID = IntToString(iVarID); + SetLocalString(oPWDBValues, sVarID + "_VALUE", sValue); + if (bMarkChanged) + { + SetLocalInt(oPWDBValues, sVarID + "_CHANGED", 1); + SetLocalInt(oPWDBValues, "CHANGED", 1); + } + DeleteLocalInt(oPWDBValues, sVarID + "_DELETED"); +} + +void SetPersistentString(object oTarget, string sName, string sValue) { + SetPersistentStringByKey(GetKey(oTarget), sName, sValue); +} + +void SetPersistentIntByKey(string sKey, string sName, int iValue, int bMarkChanged = TRUE) { + // Get our object's persistent ID. + int iObjID = GetPerID(sKey, TRUE); + int iVarID = GetVarID(iObjID, "I" + sName, TRUE); + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + string sVarID = IntToString(iVarID); + SetLocalInt(oPWDBValues, sVarID + "_VALUE", iValue); + if (bMarkChanged) + { + SetLocalInt(oPWDBValues, sVarID + "_CHANGED", 1); + SetLocalInt(oPWDBValues, "CHANGED", 1); + } + DeleteLocalInt(oPWDBValues, sVarID + "_DELETED"); +} + +void SetPersistentInt(object oTarget, string sName, int iValue) { + SetPersistentIntByKey(GetKey(oTarget), sName, iValue); +} + +void SetPersistentFloatByKey(string sKey, string sName, float fValue, int bMarkChanged = TRUE) { + // Get our object's persistent ID. + int iObjID = GetPerID(sKey, TRUE); + int iVarID = GetVarID(iObjID, "F" + sName, TRUE); + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + string sVarID = IntToString(iVarID); + SetLocalFloat(oPWDBValues, sVarID + "_VALUE", fValue); + if (bMarkChanged) + { + SetLocalInt(oPWDBValues, sVarID + "_CHANGED", 1); + SetLocalInt(oPWDBValues, "CHANGED", 1); + } + DeleteLocalInt(oPWDBValues, sVarID + "_DELETED"); +} + +void SetPersistentFloat(object oTarget, string sName, float fValue) { + SetPersistentFloatByKey(GetKey(oTarget), sName, fValue); +} + +void SetPersistentLocationByKey(string sKey, string sName, location lValue, int bMarkChanged = TRUE) { + // Get our object's persistent ID. + int iObjID = GetPerID(sKey, TRUE); + int iVarID = GetVarID(iObjID, "L" + sName, TRUE); + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + string sVarID = IntToString(iVarID); + SetLocalLocation(oPWDBValues, sVarID + "_VALUE", lValue); + if (bMarkChanged) + { + SetLocalInt(oPWDBValues, sVarID + "_CHANGED", 1); + SetLocalInt(oPWDBValues, "CHANGED", 1); + } + DeleteLocalInt(oPWDBValues, sVarID + "_DELETED"); +} + +void SetPersistentLocation(object oTarget, string sName, location lValue) { + SetPersistentLocationByKey(GetKey(oTarget), sName, lValue); } + +void SetPersistentObjectByKey(string sKey, string sName, object oValue, int bMarkChanged = TRUE) { + // Get our object's persistent ID. + int iObjID = GetPerID(sKey, TRUE); + int iVarID = GetVarID(iObjID, "O" + sName, TRUE); + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + string sVarID = IntToString(iVarID); + SetLocalObject(oPWDBValues, sVarID + "_VALUE", oValue); + if (bMarkChanged) + { + SetLocalInt(oPWDBValues, sVarID + "_CHANGED", 1); + SetLocalInt(oPWDBValues, "CHANGED", 1); + } + DeleteLocalInt(oPWDBValues, sVarID + "_DELETED"); +} + +void SetPersistentObject(object oTarget, string sName, object oValue) { + SetPersistentObjectByKey(GetKey(oTarget), sName, oValue); +} + +void DeletePersistentString(object oTarget, string sName) +{ + int iObjID = GetPerID(GetKey(oTarget)); + if (!iObjID) + return; + int iVarID = GetVarID(iObjID, "S" + sName); + if (!iVarID) + return; + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + string sVarID = IntToString(iVarID); + SetLocalInt(oPWDBValues, sVarID + "_DELETED", 1); + DeleteLocalString(oPWDBValues, sVarID + "_VALUE"); + SetLocalInt(oPWDBValues, "CHANGED", 1); +} + +void DeletePersistentInt(object oTarget, string sName) +{ + int iObjID = GetPerID(GetKey(oTarget)); + if (!iObjID) + return; + int iVarID = GetVarID(iObjID, "I" + sName); + if (!iVarID) + return; + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + string sVarID = IntToString(iVarID); + SetLocalInt(oPWDBValues, sVarID + "_DELETED", 1); + DeleteLocalInt(oPWDBValues, sVarID + "_VALUE"); + SetLocalInt(oPWDBValues, "CHANGED", 1); +} + +void DeletePersistentFloat(object oTarget, string sName) +{ + int iObjID = GetPerID(GetKey(oTarget)); + if (!iObjID) + return; + int iVarID = GetVarID(iObjID, "F" + sName); + if (!iVarID) + return; + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + string sVarID = IntToString(iVarID); + SetLocalInt(oPWDBValues, sVarID + "_DELETED", 1); + DeleteLocalFloat(oPWDBValues, sVarID + "_VALUE"); + SetLocalInt(oPWDBValues, "CHANGED", 1); +} + +void DeletePersistentLocation(object oTarget, string sName) +{ + int iObjID = GetPerID(GetKey(oTarget)); + if (!iObjID) + return; + int iVarID = GetVarID(iObjID, "L" + sName); + if (!iVarID) + return; + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + string sVarID = IntToString(iVarID); + SetLocalInt(oPWDBValues, sVarID + "_DELETED", 1); + DeleteLocalLocation(oPWDBValues, sVarID + "_VALUE"); + SetLocalInt(oPWDBValues, "CHANGED", 1); +} + +void DeletePersistentObject(object oTarget, string sName) +{ + int iObjID = GetPerID(GetKey(oTarget)); + if (!iObjID) + return; + int iVarID = GetVarID(iObjID, "O" + sName); + if (!iVarID) + return; + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + string sVarID = IntToString(iVarID); + SetLocalInt(oPWDBValues, sVarID + "_DELETED", 1); + DeleteLocalObject(oPWDBValues, sVarID + "_VALUE"); + SetLocalInt(oPWDBValues, "CHANGED", 1); +} + +void DeletePersistentByKey(string sOwnerKey, string sVarKey) +{ + int iObjID = GetPerID(sOwnerKey); + if (!iObjID) + return; + int iVarID = GetVarID(iObjID, sVarKey); + if (!iVarID) + return; + object oPWDBValues = GetObjectByTag("PWDB_VALUES"); + string sVarID = IntToString(iVarID); + SetLocalInt(oPWDBValues, sVarID + "_DELETED", 1); + + string sType = GetStringLeft(sVarKey, 1); + if (sType == "S") + DeleteLocalString(oPWDBValues, sVarID + "_VALUE"); + else if (sType == "I") + DeleteLocalInt(oPWDBValues, sVarID + "_VALUE"); + else if (sType == "F") + DeleteLocalFloat(oPWDBValues, sVarID + "_VALUE"); + else if (sType == "L") + DeleteLocalLocation(oPWDBValues, sVarID + "_VALUE"); + else if (sType == "O") + DeleteLocalObject(oPWDBValues, sVarID + "_VALUE"); + + if (!GetLocalInt(oPWDBValues, "CHANGED")) + SetLocalInt(oPWDBValues, "CHANGED", 2); +} + +// Save the persistent DB. If bSaveNewOnly is set to TRUE then only the objects +// created since the module was last loaded will be saved, otherwise every +// object is saved. +void PWDBSave(int bSaveNewOnly) { + object oPWDBObjs = GetObjectByTag("PWDB_OBJECTS"); + object oPWDBVars = GetObjectByTag("PWDB_VALUES"); + int iVarCount = GetLocalInt(oPWDBVars, "COUNT"); + int iCounter; + string sID; + string sType; + string sVarName; + string sFullVarName; + int iObjID; + string sOwnerKey; + vector vPos; + float fFacing; + string sArea; + location lLoc; + int bDeleted; + int bChanged; + string sQuote = GetSubString(GetStringByStrRef(464), 13, 1); + + int iTotalChange = GetLocalInt(oPWDBVars, "CHANGED"); + WriteTimestampedLogEntry("CHANGED"); + PrintInteger(iTotalChange); + PrintInteger(bSaveNewOnly); + if (bSaveNewOnly && iTotalChange != 1) + return; + else if (!bSaveNewOnly && iTotalChange == 0) + return; + + // Output the header to the log file. + if (bSaveNewOnly) + { + WriteTimestampedLogEntry("************************** BEGIN PWDB SAVE CHANGED *******************************"); + PrintString(""); + WriteTimestampedLogEntry("************************** END PWDB SAVE *****************************************"); + + if (bSaveNewOnly) + SetLocalInt(oPWDBVars, "CHANGED", 2); + else + SetLocalInt(oPWDBVars, "CHANGED", 0); +} + +// This should be run in the module'ss OnUnload event; it dumps the entire +// persistent DB to the log file in script format. +void PWDBSaveAll() { + PWDBSave(FALSE); +} + +// This should be run in the module'ss OnHeartBeat event and triggered every +// 10-15 minutes (more or less depending on how active your PW is). It dumps +// all changed values since the module was loaded. This is basically in case +// the module crashes before it has a chance to unload and call PWDBSaveAll. +// You should be able to use this script and the prior exit's script to get +// back up to date (or close). +void PWDBSaveChanged() { + PWDBSave(TRUE); +} + diff --git a/_module/nss/heal_allpc.nss b/_module/nss/heal_allpc.nss new file mode 100644 index 0000000..3f02980 --- /dev/null +++ b/_module/nss/heal_allpc.nss @@ -0,0 +1,24 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oCaster; +oCaster = OBJECT_SELF; + +object oTarget; +oTarget = oPC; + +AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_GREATER_RESTORATION, oTarget, METAMAGIC_ANY, TRUE, 20, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + +} + diff --git a/_module/nss/heal_allpc2.nss b/_module/nss/heal_allpc2.nss new file mode 100644 index 0000000..b4094fa --- /dev/null +++ b/_module/nss/heal_allpc2.nss @@ -0,0 +1,32 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ +object oMod = GetModule(); +object oPC = GetLastUsedBy(); +if (!GetIsPC(oPC)) return; +object oCaster; +oCaster = OBJECT_SELF; +object oTarget; +oTarget = oPC; +int oState = GetLocalInt(oMod, "fountain_state"); +if (oState !=1) +{ +AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_GREATER_RESTORATION, oTarget, METAMAGIC_ANY, TRUE, 20, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); +} +else +{ +PlaySound("sim_cntresist"); +//FloatingTextStringOnCreature("You can't reach the pool", oPC); +} + + + + +} + diff --git a/_module/nss/heal_imbue.nss b/_module/nss/heal_imbue.nss new file mode 100644 index 0000000..6547c13 --- /dev/null +++ b/_module/nss/heal_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_HEAL, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/heavy_shop.nss b/_module/nss/heavy_shop.nss new file mode 100644 index 0000000..9a8cbb7 --- /dev/null +++ b/_module/nss/heavy_shop.nss @@ -0,0 +1,23 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +if (GetItemPossessedBy(oPC, "nordock_token")!=OBJECT_INVALID) +oTarget = GetObjectByTag("n_heavy_shop"); +else +oTarget = GetObjectByTag("heavy_shop"); +PlaySound("it_bladelarge"); +OpenStore(oTarget, oPC, 0, 0); +} + diff --git a/_module/nss/helm_shop.nss b/_module/nss/helm_shop.nss new file mode 100644 index 0000000..b658491 --- /dev/null +++ b/_module/nss/helm_shop.nss @@ -0,0 +1,24 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +if (GetItemPossessedBy(oPC, "nordock_token")!=OBJECT_INVALID) +oTarget = GetObjectByTag("n_helm"); +else +oTarget = GetObjectByTag("helm_shop"); +PlaySound("as_sw_genericop1"); +OpenStore(oTarget, oPC, 0, 0); + +} + diff --git a/_module/nss/henchtest.nss b/_module/nss/henchtest.nss new file mode 100644 index 0000000..ff31ac4 --- /dev/null +++ b/_module/nss/henchtest.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetLastSpeaker(); +AddHenchman(oPC, OBJECT_SELF); +} diff --git a/_module/nss/hero_damage.nss b/_module/nss/hero_damage.nss new file mode 100644 index 0000000..a17808a --- /dev/null +++ b/_module/nss/hero_damage.nss @@ -0,0 +1,220 @@ + + + +void main() +{ + +// initialise objects + +object oPC = GetLastUsedBy(); +object oMod = GetModule(); + +// initialise variables + +int iSwitch; +int iTotalDealt; +int iTotalTaken; +int iAv1, iAv2, iAv3, iAv4, iAv5, iAv6, iAv7, iAv8, iAv9, iAv10; + +float fPerc1, fPerc2, fPerc3, fPerc4, fPerc5, fPerc6, fPerc7, fPerc8, + fPerc9, fPerc10; + +string sTotalDealt; +string sTotalTaken; +string SpeakText; + +if (GetLocalInt(oMod, "mod_mode")==1) +{ +PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("*** Not used in campaign manager mode ***", oPC); + return; +} +// calculate monster hit % + +if (GetLocalInt(oMod, "notime2_ss")!=0) +{fPerc1 = (IntToFloat(GetLocalInt(oMod, "notime2_hh")) / +IntToFloat(GetLocalInt(oMod, "notime2_ss"))) * 100.0; +iAv1 = FloatToInt(fPerc1);} +else +{iAv1 = 0;} +if (GetLocalInt(oMod, "notime1_ss")!=0) +{fPerc2 = (IntToFloat(GetLocalInt(oMod, "notime1_hh")) / +IntToFloat(GetLocalInt(oMod, "notime1_ss"))) * 100.0; +iAv2 = FloatToInt(fPerc2);} +else +{iAv2 = 0;} +if (GetLocalInt(oMod, "boss002_ss")!=0) +{fPerc3 = (IntToFloat(GetLocalInt(oMod, "boss002_hh")) / +IntToFloat(GetLocalInt(oMod, "boss002_ss"))) * 100.0; +iAv3 = FloatToInt(fPerc3);} +else +{iAv3 = 0;} +if (GetLocalInt(oMod, "beli2_ss")!=0) +{fPerc4 = (IntToFloat(GetLocalInt(oMod, "beli2_hh")) / +IntToFloat(GetLocalInt(oMod, "beli2_ss"))) * 100.0; +iAv4 = FloatToInt(fPerc4);} +else +{iAv4 = 0;} +if (GetLocalInt(oMod, "pwar3_ss")!=0) +{fPerc5 = (IntToFloat(GetLocalInt(oMod, "pwar3_hh")) / +IntToFloat(GetLocalInt(oMod, "pwar3_ss"))) * 100.0; +iAv5 = FloatToInt(fPerc5);} +else +{iAv5 = 0;} +if (GetLocalInt(oMod, "hdrag2_ss")!=0) +{fPerc6 = (IntToFloat(GetLocalInt(oMod, "hdrag2_hh")) / +IntToFloat(GetLocalInt(oMod, "hdrag2_ss"))) * 100.0; +iAv6 = FloatToInt(fPerc6);} +else +{iAv6 = 0;} +if (GetLocalInt(oMod, "pfiend2_ss")!=0) +{fPerc7 = (IntToFloat(GetLocalInt(oMod, "pfiend2_hh")) / +IntToFloat(GetLocalInt(oMod, "pfiend2_ss"))) * 100.0; +iAv7 = FloatToInt(fPerc7);} +else +{iAv7 = 0;} +if (GetLocalInt(oMod, "horod2_ss")!=0) +{fPerc8 = (IntToFloat(GetLocalInt(oMod, "horod2_hh")) / +IntToFloat(GetLocalInt(oMod, "horod2_ss"))) * 100.0; +iAv8 = FloatToInt(fPerc8);} +else +{iAv8 = 0;} +if (GetLocalInt(oMod, "div2_ss")!=0) +{fPerc9 = (IntToFloat(GetLocalInt(oMod, "div2_hh")) / +IntToFloat(GetLocalInt(oMod, "div2_ss"))) * 100.0; +iAv9 = FloatToInt(fPerc9);} +else +{iAv9 = 0;} +if (GetLocalInt(oMod, "dragon2_ss")!=0) +{fPerc10 = (IntToFloat(GetLocalInt(oMod, "dragon2_hh")) / +IntToFloat(GetLocalInt(oMod, "dragon2_ss"))) * 100.0; +iAv10 = FloatToInt(fPerc10);} +else +{iAv10 = 0;} + +// generate monster stat strings + +string sDam1 = IntToString(GetLocalInt(oMod, "notime2_dd")); +string sTak1 = IntToString(GetLocalInt(oMod, "notime2_dt"))+" / "+IntToString(iAv1)+"% / "+IntToString(GetLocalInt(oMod, "notime2_k"))+GetLocalString(oMod, "notime2_x"); +string sDam2 = IntToString(GetLocalInt(oMod, "notime1_dd")); +string sTak2 = IntToString(GetLocalInt(oMod, "notime1_dt"))+" / "+IntToString(iAv2)+"% / "+IntToString(GetLocalInt(oMod, "notime1_k"))+GetLocalString(oMod, "notime1_x"); +string sDam3 = IntToString(GetLocalInt(oMod, "boss002_dd")); +string sTak3 = IntToString(GetLocalInt(oMod, "boss002_dt"))+" / "+IntToString(iAv3)+"% / "+IntToString(GetLocalInt(oMod, "boss002_k"))+GetLocalString(oMod, "boss002_x"); +string sDam4 = IntToString(GetLocalInt(oMod, "beli2_dd")); +string sTak4 = IntToString(GetLocalInt(oMod, "beli2_dt"))+" / "+IntToString(iAv4)+"% / "+IntToString(GetLocalInt(oMod, "beli2_k"))+GetLocalString(oMod, "beli2_x"); +string sDam5 = IntToString(GetLocalInt(oMod, "pwar3_dd")); +string sTak5 = IntToString(GetLocalInt(oMod, "pwar3_dt"))+" / "+IntToString(iAv5)+"% / "+IntToString(GetLocalInt(oMod, "pwar3_k"))+GetLocalString(oMod, "pwar3_x"); +string sDam6 = IntToString(GetLocalInt(oMod, "hdrag2_dd")); +string sTak6 = IntToString(GetLocalInt(oMod, "hdrag2_dt"))+" / "+IntToString(iAv6)+"% / "+IntToString(GetLocalInt(oMod, "hdrag2_k"))+GetLocalString(oMod, "hdrag2_x"); +string sDam7 = IntToString(GetLocalInt(oMod, "pfiend2_dd")); +string sTak7 = IntToString(GetLocalInt(oMod, "pfiend2_dt"))+" / "+IntToString(iAv7)+"% / "+IntToString(GetLocalInt(oMod, "pfiend2_k"))+GetLocalString(oMod, "pfiend2_x"); +string sDam8 = IntToString(GetLocalInt(oMod, "horod2_dd")); +string sTak8 = IntToString(GetLocalInt(oMod, "horod2_dt"))+" / "+IntToString(iAv8)+"% / "+IntToString(GetLocalInt(oMod, "horod2_k"))+GetLocalString(oMod, "horod2_x"); +string sDam9 = IntToString(GetLocalInt(oMod, "div2_dd")); +string sTak9 = IntToString(GetLocalInt(oMod, "div2_dt"))+" / "+IntToString(iAv9)+"% / "+IntToString(GetLocalInt(oMod, "div2_k"))+GetLocalString(oMod, "div2_x"); +string sDam10 =IntToString(GetLocalInt(oMod, "dragon2_dd")); +string sTak10 =IntToString(GetLocalInt(oMod, "dragon2_dt"))+" / "+IntToString(iAv10)+"% / "+IntToString(GetLocalInt(oMod, "dragon2_k"))+GetLocalString(oMod, "dragon2_x"); + + + +PlaySound("gui_select"); + +iTotalDealt = GetLocalInt(oMod, "div2_dd")+ +GetLocalInt(oMod, "dragon2_dd")+ +GetLocalInt(oMod, "horod2_dd")+ +GetLocalInt(oMod, "pfiend2_dd")+ +GetLocalInt(oMod, "hdrag2_dd")+ +GetLocalInt(oMod, "pwar3_dd")+ +GetLocalInt(oMod, "beli2_dd")+ +GetLocalInt(oMod, "boss002_dd")+ +GetLocalInt(oMod, "notime1_dd")+ +GetLocalInt(oMod, "notime2_dd"); + +iTotalTaken = GetLocalInt(oMod, "div2_dd")+ +GetLocalInt(oMod, "dragon2_dt")+ +GetLocalInt(oMod, "horod2_dt")+ +GetLocalInt(oMod, "pfiend2_dt")+ +GetLocalInt(oMod, "hdrag2_dt")+ +GetLocalInt(oMod, "pwar3_dt")+ +GetLocalInt(oMod, "beli2_dt")+ +GetLocalInt(oMod, "boss002_dt")+ +GetLocalInt(oMod, "notime1_dt")+ +GetLocalInt(oMod, "notime2_dt"); + +sTotalDealt = IntToString(iTotalDealt); +sTotalTaken = IntToString(iTotalTaken); + +SpeakText; +iSwitch = GetLocalInt(oPC, "luciferdead"); + +if (iSwitch==1) + { + + SpeakText = "\nDamage: Dealt/Taken / Accuracy / Kills\n "; + SpeakText += "---------------------------\n"; + SpeakText += "Tyriel "; + SpeakText += sDam1; + SpeakText += " / "; + SpeakText += sTak1; + SpeakText += "\n"; + SpeakText += "Thor "; + SpeakText += sDam2; + SpeakText += " / "; + SpeakText += sTak2; + SpeakText += "\n"; + SpeakText += "Elk King "; + SpeakText += sDam3; + SpeakText += " / "; + SpeakText += sTak3; + SpeakText += "\n"; + SpeakText += "Shiva "; + SpeakText += sDam4; + SpeakText += " / "; + SpeakText += sTak4; + SpeakText += "\n"; + SpeakText += "Shogun Lord "; + SpeakText += sDam5; + SpeakText += " / "; + SpeakText += sTak5; + SpeakText += "\n"; + SpeakText += "Soul Warrior "; + SpeakText += sDam6; + SpeakText += " / "; + SpeakText += sTak6; + SpeakText += "\n"; + SpeakText += "Guardian Angel "; + SpeakText += sDam7; + SpeakText += " / "; + SpeakText += sTak7; + SpeakText += "\n"; + SpeakText += "Horodrim Archmage "; + SpeakText += sDam8; + SpeakText += " / "; + SpeakText += sTak8; + SpeakText += "\n"; + SpeakText += "Divine Archer "; + SpeakText += sDam9; + SpeakText += " / "; + SpeakText += sTak9; + SpeakText += "\n"; + SpeakText += "Gold Dragon "; + SpeakText += sDam10; + SpeakText += " / "; + SpeakText += sTak10; + //SpeakText += "\n---------------------------\n"; + SpeakText += "\nTOTAL DAMAGE: "; + SpeakText += sTotalDealt; + SpeakText += " / "; + SpeakText += sTotalTaken; + + + SpeakString(SpeakText); + } +else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("*** Not activated until the [Holy War] feature is unlocked ***", oPC); + } +} diff --git a/_module/nss/hide_imbue.nss b/_module/nss/hide_imbue.nss new file mode 100644 index 0000000..29f9654 --- /dev/null +++ b/_module/nss/hide_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_HIDE, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/hif_onactivateit.nss b/_module/nss/hif_onactivateit.nss new file mode 100644 index 0000000..91edea9 --- /dev/null +++ b/_module/nss/hif_onactivateit.nss @@ -0,0 +1,13 @@ +// prc_onactivate,use_debugrod +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onactivateitem event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onactivate", OBJECT_SELF); + ExecuteScript("use_debugrod", OBJECT_SELF); +} diff --git a/_module/nss/hif_onclientente.nss b/_module/nss/hif_onclientente.nss new file mode 100644 index 0000000..e4fb6f6 --- /dev/null +++ b/_module/nss/hif_onclientente.nss @@ -0,0 +1,13 @@ +// prc_onenter,pvp_set +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the oncliententer event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onenter", OBJECT_SELF); + ExecuteScript("pvp_set", OBJECT_SELF); +} diff --git a/_module/nss/hif_onclientleav.nss b/_module/nss/hif_onclientleav.nss new file mode 100644 index 0000000..baebe46 --- /dev/null +++ b/_module/nss/hif_onclientleav.nss @@ -0,0 +1,13 @@ +// prc_onleave,player_leave +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onclientleave event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onleave", OBJECT_SELF); + ExecuteScript("player_leave", OBJECT_SELF); +} diff --git a/_module/nss/hif_onheartbeat.nss b/_module/nss/hif_onheartbeat.nss new file mode 100644 index 0000000..6bc723b --- /dev/null +++ b/_module/nss/hif_onheartbeat.nss @@ -0,0 +1,13 @@ +// prc_onheartbeat,cm_onheartbeat +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onheartbeat event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onheartbeat", OBJECT_SELF); + ExecuteScript("cm_onheartbeat", OBJECT_SELF); +} diff --git a/_module/nss/hif_onmoduleload.nss b/_module/nss/hif_onmoduleload.nss new file mode 100644 index 0000000..830ba08 --- /dev/null +++ b/_module/nss/hif_onmoduleload.nss @@ -0,0 +1,13 @@ +// prc_onmodload,mod_set +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onmoduleload event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onmodload", OBJECT_SELF); + ExecuteScript("mod_set", OBJECT_SELF); +} diff --git a/_module/nss/hif_onplayerdeat.nss b/_module/nss/hif_onplayerdeat.nss new file mode 100644 index 0000000..fda85d1 --- /dev/null +++ b/_module/nss/hif_onplayerdeat.nss @@ -0,0 +1,13 @@ +// prc_ondeath,cm_ondeath4 +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onplayerdeath event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_ondeath", OBJECT_SELF); + ExecuteScript("cm_ondeath4", OBJECT_SELF); +} diff --git a/_module/nss/hif_onplayerdyin.nss b/_module/nss/hif_onplayerdyin.nss new file mode 100644 index 0000000..6a535b2 --- /dev/null +++ b/_module/nss/hif_onplayerdyin.nss @@ -0,0 +1,13 @@ +// prc_ondying,cm_onplayerdyin1 +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onplayerdying event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_ondying", OBJECT_SELF); + ExecuteScript("cm_onplayerdyin1", OBJECT_SELF); +} diff --git a/_module/nss/hif_onplayerleve.nss b/_module/nss/hif_onplayerleve.nss new file mode 100644 index 0000000..c9d2e56 --- /dev/null +++ b/_module/nss/hif_onplayerleve.nss @@ -0,0 +1,13 @@ +// prc_levelup,anti_devcrit2 +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onplayerlevelup event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_levelup", OBJECT_SELF); + ExecuteScript("anti_devcrit2", OBJECT_SELF); +} diff --git a/_module/nss/hif_onplayerresp.nss b/_module/nss/hif_onplayerresp.nss new file mode 100644 index 0000000..a3338bf --- /dev/null +++ b/_module/nss/hif_onplayerresp.nss @@ -0,0 +1,13 @@ +// prc_onrespawn,respawn3 +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onplayerrespawn event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onrespawn", OBJECT_SELF); + ExecuteScript("respawn3", OBJECT_SELF); +} diff --git a/_module/nss/hif_onplayerrest.nss b/_module/nss/hif_onplayerrest.nss new file mode 100644 index 0000000..07e9ac4 --- /dev/null +++ b/_module/nss/hif_onplayerrest.nss @@ -0,0 +1,13 @@ +// prc_rest,sleep +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onplayerrest event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_rest", OBJECT_SELF); + ExecuteScript("sleep", OBJECT_SELF); +} diff --git a/_module/nss/hk_test1.nss b/_module/nss/hk_test1.nss new file mode 100644 index 0000000..713819b --- /dev/null +++ b/_module/nss/hk_test1.nss @@ -0,0 +1,7 @@ +#include "scorekeep" + +void main() +{ + object oPC = GetLastUsedBy(); + HouseKeep(oPC); +} diff --git a/_module/nss/holy_check.nss b/_module/nss/holy_check.nss new file mode 100644 index 0000000..3b2f70d --- /dev/null +++ b/_module/nss/holy_check.nss @@ -0,0 +1,17 @@ +int StartingConditional() +{ + int oFlag = 0; + object oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetLocalInt(oItem, "holyA_done")==1) + {oFlag=1;} + + oItem = GetNextItemInInventory(OBJECT_SELF); + } + // Inspect local variables + + if(!(oFlag == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/holy_check2.nss b/_module/nss/holy_check2.nss new file mode 100644 index 0000000..9443505 --- /dev/null +++ b/_module/nss/holy_check2.nss @@ -0,0 +1,27 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_019 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 13/01/2005 11:38:57 AM +//::////////////////////////////////////////////// +int StartingConditional() +{ + int oFlag; + object oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetLocalInt(oItem, "holyA_done")==1) + {oFlag=1;} + + oItem = GetNextItemInInventory(OBJECT_SELF); + } + // Inspect local variables + + if(!(GetLocalInt(GetModule(), "staff") != 1)) + return FALSE; + + if(!(oFlag != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/holy_war.nss b/_module/nss/holy_war.nss new file mode 100644 index 0000000..2ed1dc4 --- /dev/null +++ b/_module/nss/holy_war.nss @@ -0,0 +1,301 @@ +#include "nw_i0_generic" +#include "spawner" + +void main() +{ + +// Initialise variables & objects + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); + +object oPC2; +object oTarget; +object oTarget2; +object oSpawn; +location lTarget; +location bTarget; +string sHench; +int nInt; +string sPRes; +string sPRes2; +int iBetConfirm = GetLocalInt(oPC, "bet_confirmed"); +int iMode = GetLocalInt(oMod, "gamemode"); +if (iBetConfirm!=1) + { + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + //SetLocalInt(oPC, "winnings",0); + } + + +// Set Holy War mode ON + +SetLocalInt(oMod, "hwar_on", 1); +SetLocalInt(oMod, "war_won", 0); +SetLocalInt(oPC, "champ_won", 0); +SetLocalInt(oMod, "iFireFlag", 0); +SetLocalInt(oMod, "turn_flag", 0); +SetLocalInt(oMod, "iDfire", 1); + +// Flag all monsters as being in the arena + +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); + +// Reset scoreboard death status + +SetLocalString(oMod, "notime4_x", ""); +SetLocalString(oMod, "death_x", ""); +SetLocalString(oMod, "notime3_x", ""); +SetLocalString(oMod, "mistress2_x", ""); +SetLocalString(oMod, "zep_marilithb001_x", ""); +SetLocalString(oMod, "bard2_x", ""); +SetLocalString(oMod, "zep_halfdrafn001_x", ""); +SetLocalString(oMod, "zep_pitfiend001_x", ""); +SetLocalString(oMod, "dopple_x", ""); +SetLocalString(oMod, "zep_balrog001_x", ""); +SetLocalString(oMod, "dragon1_x", ""); +SetLocalString(oMod, "darcher_x", ""); + +SetLocalString(oMod, "notime2_x", ""); +SetLocalString(oMod, "notime1_x", ""); +SetLocalString(oMod, "boss002_x", ""); +SetLocalString(oMod, "beli2_x", ""); +SetLocalString(oMod, "pwar3_x", ""); +SetLocalString(oMod, "hdrag2_x", ""); +SetLocalString(oMod, "pfiend2_x", ""); +SetLocalString(oMod, "horod2_x", ""); +SetLocalString(oMod, "div2_x", ""); +SetLocalString(oMod, "dragon2_x", ""); + +// Reset match champion flag and kill comparative + +SetLocalInt(oMod, "notime4_ch", 0); +SetLocalInt(oMod, "death_ch", 0); +SetLocalInt(oMod, "notime3_ch", 0); +SetLocalInt(oMod, "mistress2_ch", 0); +SetLocalInt(oMod, "zep_marilithb001_ch", 0); +SetLocalInt(oMod, "bard2_ch", 0); +SetLocalInt(oMod, "zep_halfdrafn001_ch", 0); +SetLocalInt(oMod, "zep_pitfiend001_ch", 0); +SetLocalInt(oMod, "dopple_ch", 0); +SetLocalInt(oMod, "zep_balrog001_ch", 0); +SetLocalInt(oMod, "dragon1_ch", 0); +SetLocalInt(oMod, "darcher_ch", 0); + +SetLocalInt(oMod, "notime2_ch", 0); +SetLocalInt(oMod, "notime1_ch", 0); +SetLocalInt(oMod, "boss002_ch", 0); +SetLocalInt(oMod, "beli2_ch", 0); +SetLocalInt(oMod, "pwar3_ch", 0); +SetLocalInt(oMod, "hdrag2_ch", 0); +SetLocalInt(oMod, "pfiend2_ch", 0); +SetLocalInt(oMod, "horod2_ch", 0); +SetLocalInt(oMod, "div2_ch", 0); +SetLocalInt(oMod, "dragon2_ch", 0); + +SetLocalInt(oMod, "notime4_HWk", 0); +SetLocalInt(oMod, "death_HWk", 0); +SetLocalInt(oMod, "notime3_HWk", 0); +SetLocalInt(oMod, "mistress2_HWk", 0); +SetLocalInt(oMod, "zep_marilithb001_HWk", 0); +SetLocalInt(oMod, "bard2_HWk", 0); +SetLocalInt(oMod, "zep_halfdrafn001_HWk", 0); +SetLocalInt(oMod, "zep_pitfiend001_HWk", 0); +SetLocalInt(oMod, "dopple_HWk", 0); +SetLocalInt(oMod, "zep_balrog001_HWk", 0); +SetLocalInt(oMod, "dragon1_HWk", 0); +SetLocalInt(oMod, "darcher_HWk", 0); + +SetLocalInt(oMod, "notime2_HWk", 0); +SetLocalInt(oMod, "notime1_HWk", 0); +SetLocalInt(oMod, "boss002_HWk", 0); +SetLocalInt(oMod, "beli2_HWk", 0); +SetLocalInt(oMod, "pwar3_HWk", 0); +SetLocalInt(oMod, "hdrag2_HWk", 0); +SetLocalInt(oMod, "pfiend2_HWk", 0); +SetLocalInt(oMod, "horod2_HWk", 0); +SetLocalInt(oMod, "div2_HWk", 0); +SetLocalInt(oMod, "dragon2_HWk", 0); + +// Reset Match Champ stats + +SetLocalString(oMod, "sChamp", ""); +SetLocalInt(oMod, "champ_count", 0); +SetLocalInt(oMod, "MostKills", 0); +SetLocalInt(oPC, "iHappy", 0); + +// Reset team casualties + +SetLocalInt(oMod, "hell_cas", 0); +SetLocalInt(oMod, "heav_cas", 0); + +// Reset exploit flag + +SetLocalInt(oMod, "xcheck", 0); +SetLocalInt(oMod, "iDfire", 0); + +// Reset disabled options in spawner convo + +SetLocalInt(oMod, "scre_state", 0); +SetLocalInt(oMod, "scre2_state", 0); +SetLocalInt(oMod, "scre_state3", 0); +SetLocalInt(oMod, "scre_state4", 0); +SetLocalInt(oMod, "scre_state5", 0); + +// reset the player allegiance flags + +SetLocalInt(oMod, "turn_flag", 0); +oPC2 = GetFirstPC(); +while (GetIsObjectValid(oPC2)) + { + sPRes2 = GetResRef(oPC); + sPRes2+="_HWd"; + sPRes = GetResRef(oPC); + sPRes+="_HWk"; + SetLocalInt(oMod, sPRes, 0); + SetLocalInt(oMod, sPRes2, 0); + SetLocalInt(oPC2, "pc_HWdam", 0); + SetLocalInt(oPC2, "pc_HWhit", 0); + SetLocalInt(oPC2, "pc_side", 0); + SetLocalInt(oPC2, "join_switch", 0); + SetLocalInt(oPC2, "champ_won", 0); + RemoveJournalQuestEntry("war_hell", oPC2, TRUE, TRUE); + RemoveJournalQuestEntry("war_heav", oPC2, TRUE, TRUE); + SetLocalInt(oPC2, "pc_HWswing", 0); + oPC2 = GetNextPC(); + } + +// Reset war victory journal entry + +RemoveJournalQuestEntry("war_hell", oPC, TRUE, TRUE); +RemoveJournalQuestEntry("war_heav", oPC, TRUE, TRUE); + +// Lock arena gate + +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); + +// Move PC out of the battle + +oTarget = GetWaypointByTag("safe_wp"); +lTarget = GetLocation(oTarget); +AssignCommand(oPC, ClearAllActions()); +AssignCommand(oPC, ActionJumpToLocation(lTarget)); +CastPC(0.2, SPELL_ETHEREALNESS, oPC); + + + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); + +// Spawn Dark team + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "bard2", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "mistress2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime3", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime4", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "darcher", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp2"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp2"); +lTarget = GetLocation(oTarget); + +// spawn light team + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "div2", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "horod2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar3", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime1", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); + + + +DelayCommand(5.0, JoinBackedTeam(oPC)); + +// experimental 'Death' and henchman concepts + +//oTarget = GetWaypointByTag("death_wp"); +//lTarget = GetLocation(oTarget); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death2", lTarget); + +/* +int oMode = GetLocalInt(oMod, "gamemode"); +if (oMode==1) +{ + sHench = "diablo"; +} +else +{ +sHench = "starfall2"; +} + +oTarget = GetWaypointByTag("star_friend"); +lTarget = GetLocation(oTarget); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, sHench, lTarget); +oTarget = oSpawn; +AddHenchman(oPC, oTarget); +DelayCommand(1.0, AssignCommand(oTarget, ClearAllActions())); +DelayCommand(1.5, AssignCommand(oTarget, ActionSit(GetObjectByTag("SF_BENCH")))); +*/ + +// Spawn Effect + +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); + +} + diff --git a/_module/nss/holy_war2.nss b/_module/nss/holy_war2.nss new file mode 100644 index 0000000..37e2ec1 --- /dev/null +++ b/_module/nss/holy_war2.nss @@ -0,0 +1,111 @@ +#include "nw_i0_generic" + + +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oTarget; +object oSpawn; +location lTarget; + + + +oTarget = GetWaypointByTag("safe_wp"); +lTarget = GetLocation(oTarget); +AssignCommand(oPC, ClearAllActions()); +AssignCommand(oPC, ActionJumpToLocation(lTarget)); + + +object oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +location bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "palewarrior", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss1", bTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "lord", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "lucifer", lTarget); +oTarget = oSpawn; + + +oTarget2 = GetWaypointByTag("big_wp2"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp2"); +lTarget = GetLocation(oTarget); + + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "balrog2", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple001", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar2", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "thor", lTarget); +oTarget = oSpawn; + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "angel", lTarget); +oTarget = oSpawn; + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); +} + diff --git a/_module/nss/holy_war3.nss b/_module/nss/holy_war3.nss new file mode 100644 index 0000000..fc6f068 --- /dev/null +++ b/_module/nss/holy_war3.nss @@ -0,0 +1,151 @@ +#include "nw_i0_generic" + + +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oTarget; +object oSpawn; +location lTarget; + + + +oTarget = GetWaypointByTag("safe_wp"); +lTarget = GetLocation(oTarget); +AssignCommand(oPC, ClearAllActions()); +AssignCommand(oPC, ActionJumpToLocation(lTarget)); + + +object oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +location bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "palewarrior", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss1", bTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "lord", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "lucifer", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget2 = GetWaypointByTag("big_wp2"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp2"); +lTarget = GetLocation(oTarget); + + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "balrog2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "thor", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "angel", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); +} + diff --git a/_module/nss/holy_war_batt.nss b/_module/nss/holy_war_batt.nss new file mode 100644 index 0000000..2a9bed4 --- /dev/null +++ b/_module/nss/holy_war_batt.nss @@ -0,0 +1,1382 @@ +#include "nw_i0_generic" +#include "spawner" + +void main() +{ + +// Initialise variables & objects + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); + +object oPC2; +object oTarget; +object oTarget2; +object oSpawn; +int iW1,iW2,iW3,iW4,iW5,iW6,iW7,iW8,iW9,iW10,iW11,iW12, + iL1,iL2,iL3,iL4,iL5,iL6,iL7,iL8,iL9,iL10; + +location lTarget; +location bTarget; +string sHench; +int nInt; +string sPRes; +string sPRes2; +int iDice; +int iFlag1=0,iFlag2=0,iFlag3=0,iFlag4=0,iFlag5=0,iFlag6=0,iFlag7=0,iFlag8=0, + iFlag9=0,iFlag10=0; + +int iBetConfirm = GetLocalInt(oPC, "bet_confirmed"); + +if (iBetConfirm!=1) + { + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + //SetLocalInt(oPC, "winnings",0); + } + + +//SetLocalInt(oPC, "npc_duel", 1); +// Set Holy War mode ON + +SetLocalInt(oMod, "hwar_on", 1); +SetLocalInt(oMod, "war_won", 0); +SetLocalInt(oPC, "champ_won", 0); +SetLocalInt(oMod, "iFireFlag", 0); +SetLocalInt(oMod, "turn_flag", 0); +SetLocalInt(oMod, "iDfire", 1); + +// Flag all monsters as being in the arena + +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); + +// Reset scoreboard death status + +SetLocalString(oMod, "notime4_x", ""); +SetLocalString(oMod, "death_x", ""); +SetLocalString(oMod, "notime3_x", ""); +SetLocalString(oMod, "mistress2_x", ""); +SetLocalString(oMod, "zep_marilithb001_x", ""); +SetLocalString(oMod, "bard2_x", ""); +SetLocalString(oMod, "zep_halfdrafn001_x", ""); +SetLocalString(oMod, "zep_pitfiend001_x", ""); +SetLocalString(oMod, "dopple_x", ""); +SetLocalString(oMod, "zep_balrog001_x", ""); +SetLocalString(oMod, "dragon1_x", ""); +SetLocalString(oMod, "darcher_x", ""); + +SetLocalString(oMod, "notime2_x", ""); +SetLocalString(oMod, "notime1_x", ""); +SetLocalString(oMod, "boss002_x", ""); +SetLocalString(oMod, "beli2_x", ""); +SetLocalString(oMod, "pwar3_x", ""); +SetLocalString(oMod, "hdrag2_x", ""); +SetLocalString(oMod, "pfiend2_x", ""); +SetLocalString(oMod, "horod2_x", ""); +SetLocalString(oMod, "div2_x", ""); +SetLocalString(oMod, "dragon2_x", ""); + +// Reset match champion flag and kill comparative + +SetLocalInt(oMod, "notime4_ch", 0); +SetLocalInt(oMod, "death_ch", 0); +SetLocalInt(oMod, "notime3_ch", 0); +SetLocalInt(oMod, "mistress2_ch", 0); +SetLocalInt(oMod, "zep_marilithb001_ch", 0); +SetLocalInt(oMod, "bard2_ch", 0); +SetLocalInt(oMod, "zep_halfdrafn001_ch", 0); +SetLocalInt(oMod, "zep_pitfiend001_ch", 0); +SetLocalInt(oMod, "dopple_ch", 0); +SetLocalInt(oMod, "zep_balrog001_ch", 0); +SetLocalInt(oMod, "dragon1_ch", 0); +SetLocalInt(oMod, "darcher_ch", 0); + +SetLocalInt(oMod, "notime2_ch", 0); +SetLocalInt(oMod, "notime1_ch", 0); +SetLocalInt(oMod, "boss002_ch", 0); +SetLocalInt(oMod, "beli2_ch", 0); +SetLocalInt(oMod, "pwar3_ch", 0); +SetLocalInt(oMod, "hdrag2_ch", 0); +SetLocalInt(oMod, "pfiend2_ch", 0); +SetLocalInt(oMod, "horod2_ch", 0); +SetLocalInt(oMod, "div2_ch", 0); +SetLocalInt(oMod, "dragon2_ch", 0); + +SetLocalInt(oMod, "notime4_HWk", 0); +SetLocalInt(oMod, "death_HWk", 0); +SetLocalInt(oMod, "notime3_HWk", 0); +SetLocalInt(oMod, "mistress2_HWk", 0); +SetLocalInt(oMod, "zep_marilithb001_HWk", 0); +SetLocalInt(oMod, "bard2_HWk", 0); +SetLocalInt(oMod, "zep_halfdrafn001_HWk", 0); +SetLocalInt(oMod, "zep_pitfiend001_HWk", 0); +SetLocalInt(oMod, "dopple_HWk", 0); +SetLocalInt(oMod, "zep_balrog001_HWk", 0); +SetLocalInt(oMod, "dragon1_HWk", 0); +SetLocalInt(oMod, "darcher_HWk", 0); + +SetLocalInt(oMod, "notime2_HWk", 0); +SetLocalInt(oMod, "notime1_HWk", 0); +SetLocalInt(oMod, "boss002_HWk", 0); +SetLocalInt(oMod, "beli2_HWk", 0); +SetLocalInt(oMod, "pwar3_HWk", 0); +SetLocalInt(oMod, "hdrag2_HWk", 0); +SetLocalInt(oMod, "pfiend2_HWk", 0); +SetLocalInt(oMod, "horod2_HWk", 0); +SetLocalInt(oMod, "div2_HWk", 0); +SetLocalInt(oMod, "dragon2_HWk", 0); + +// Reset Match Champ stats + +SetLocalString(oMod, "sChamp", ""); +SetLocalInt(oMod, "champ_count", 0); +SetLocalInt(oMod, "MostKills", 0); +SetLocalInt(oPC, "iHappy", 0); + +// Reset team casualties + +SetLocalInt(oMod, "hell_cas", 0); +SetLocalInt(oMod, "heav_cas", 0); + +// Reset exploit flag + +SetLocalInt(oMod, "xcheck", 0); +SetLocalInt(oMod, "iDfire", 0); + +// Reset disabled options in spawner convo + +SetLocalInt(oMod, "scre_state", 0); +SetLocalInt(oMod, "scre2_state", 0); +SetLocalInt(oMod, "scre_state3", 0); +SetLocalInt(oMod, "scre_state4", 0); +SetLocalInt(oMod, "scre_state5", 0); + +// reset the player allegiance flags + +SetLocalInt(oMod, "turn_flag", 0); +oPC2 = GetFirstPC(); +while (GetIsObjectValid(oPC2)) + { + sPRes2 = GetResRef(oPC); + sPRes2+="_HWd"; + sPRes = GetResRef(oPC); + sPRes+="_HWk"; + SetLocalInt(oMod, sPRes, 0); + SetLocalInt(oMod, sPRes2, 0); + SetLocalInt(oPC2, "pc_HWdam", 0); + SetLocalInt(oPC2, "pc_HWhit", 0); + SetLocalInt(oPC2, "pc_side", 0); + SetLocalInt(oPC2, "join_switch", 0); + SetLocalInt(oPC2, "champ_won", 0); + RemoveJournalQuestEntry("war_hell", oPC2, TRUE, TRUE); + RemoveJournalQuestEntry("war_heav", oPC2, TRUE, TRUE); + SetLocalInt(oPC2, "pc_HWswing", 0); + oPC2 = GetNextPC(); + } + +// Reset war victory journal entry + +RemoveJournalQuestEntry("war_hell", oPC, TRUE, TRUE); +RemoveJournalQuestEntry("war_heav", oPC, TRUE, TRUE); + +// Lock arena gate + +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); + +// Move PC out of the battle + +oTarget = GetWaypointByTag("safe_wp"); +lTarget = GetLocation(oTarget); +AssignCommand(oPC, ClearAllActions()); +AssignCommand(oPC, ActionJumpToLocation(lTarget)); +CastPC(0.2, SPELL_ETHEREALNESS, oPC); + + + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); + +// Spawn Dark team + +iDice = d12(); +switch (iDice) +{ + case 1:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW1=1;}break; + case 2:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW2=1;}break; + case 3:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW3=1;}break; + case 4:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "bard2", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW4=1;}break; + case 5:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW5=1;}break; + case 6:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW6=1;}break; + case 7:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW7=1;}break; + case 8:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "mistress2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW8=1;}break; + case 9:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime3", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW9=1;}break; + case 10:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime4", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW10=1;}break; + case 11:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "darcher", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW11=1;}break; + case 12:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW12=1;}break; +} + +while (iFlag1==0) + { + iDice = d12(); + switch (iDice) + { + case 1:{ + if (iW1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon1", bTarget); + iW1=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{ + if (iW2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_halfdrafn001", bTarget); + iW2=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iW3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_marilithb001", bTarget); + iW3=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iW4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "bard2", bTarget); + iW4=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iW5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); + iW5=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iW6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); + iW6=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iW7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dopple", lTarget); + iW7=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iW8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "mistress2", lTarget); + iW8=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iW9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime3", lTarget); + iW9=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iW10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime4", lTarget); + iW10=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 11:{if (iW11!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "darcher", lTarget); + iW11=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 12:{if (iW12!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "death", lTarget); + iW12=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + } + } + + +while (iFlag2==0) + { + iDice = d12(); + switch (iDice) + { + case 1:{ + if (iW1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon1", bTarget); + iW1=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{ + if (iW2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_halfdrafn001", bTarget); + iW2=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iW3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_marilithb001", bTarget); + iW3=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iW4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "bard2", bTarget); + iW4=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iW5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); + iW5=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iW6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); + iW6=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iW7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dopple", lTarget); + iW7=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iW8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "mistress2", lTarget); + iW8=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iW9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime3", lTarget); + iW9=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iW10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime4", lTarget); + iW10=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 11:{if (iW11!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "darcher", lTarget); + iW11=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 12:{if (iW12!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "death", lTarget); + iW12=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + } + } + +while (iFlag3==0) + { + iDice = d12(); + switch (iDice) + { + case 1:{ + if (iW1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon1", bTarget); + iW1=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{ + if (iW2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_halfdrafn001", bTarget); + iW2=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iW3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_marilithb001", bTarget); + iW3=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iW4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "bard2", bTarget); + iW4=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iW5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); + iW5=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iW6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); + iW6=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iW7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dopple", lTarget); + iW7=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iW8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "mistress2", lTarget); + iW8=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iW9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime3", lTarget); + iW9=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iW10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime4", lTarget); + iW10=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 11:{if (iW11!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "darcher", lTarget); + iW11=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 12:{if (iW12!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "death", lTarget); + iW12=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + } + } + +while (iFlag4==0) + { + iDice = d12(); + switch (iDice) + { + case 1:{ + if (iW1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon1", bTarget); + iW1=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{ + if (iW2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_halfdrafn001", bTarget); + iW2=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iW3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_marilithb001", bTarget); + iW3=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iW4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "bard2", bTarget); + iW4=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iW5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); + iW5=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iW6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); + iW6=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iW7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dopple", lTarget); + iW7=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iW8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "mistress2", lTarget); + iW8=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iW9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime3", lTarget); + iW9=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iW10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime4", lTarget); + iW10=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 11:{if (iW11!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "darcher", lTarget); + iW11=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 12:{if (iW12!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "death", lTarget); + iW12=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + } + } + +while (iFlag5==0) + { + iDice = d12(); + switch (iDice) + { + case 1:{ + if (iW1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon1", bTarget); + iW1=1; + iFlag5=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{ + if (iW2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_halfdrafn001", bTarget); + iW2=1; + iFlag5=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iW3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_marilithb001", bTarget); + iW3=1; + iFlag5=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iW4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "bard2", bTarget); + iW4=1; + iFlag5=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iW5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); + iW5=1; + iFlag5=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iW6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); + iW6=1; + iFlag5=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iW7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dopple", lTarget); + iW7=1; + iFlag5=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iW8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "mistress2", lTarget); + iW8=1; + iFlag5=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iW9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime3", lTarget); + iW9=1; + iFlag5=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iW10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime4", lTarget); + iW10=1; + iFlag5=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 11:{if (iW11!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "darcher", lTarget); + iW11=1; + iFlag5=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 12:{if (iW12!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "death", lTarget); + iW12=1; + iFlag5=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + } + } +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp2"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp2"); +lTarget = GetLocation(oTarget); + +// spawn light team + +iDice = d10(); +switch (iDice) +{ + case 1:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL1=1;}break; + case 2:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "div2", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL2=1;}break; + case 3:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "horod2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL3=1;}break; + case 4:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL4=1;}break; + case 5:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL5=1;}break; + case 6:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar3", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL6=1;}break; + case 7:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL7=1;}break; + case 8:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL8=1;}break; + case 9:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime1", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL9=1;}break; + case 10:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL10=1;}break; + +} + + +while (iFlag6==0) + { + iDice = d10(); + switch (iDice) + { + case 1:{if (iL1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime2", lTarget); + iL1=1; + iFlag6=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{if (iL2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "div2", lTarget); + iL2=1; + iFlag6=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iL3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "horod2", lTarget); + iL3=1; + iFlag6=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iL4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pfiend2", lTarget); + iL4=1; + iFlag6=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iL5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "hdrag2", lTarget); + iL5=1; + iFlag6=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iL6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pwar3", lTarget); + iL6=1; + iFlag6=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iL7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "beli2", lTarget); + iL7=1; + iFlag6=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iL8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "boss002", lTarget); + iL8=1; + iFlag6=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iL9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime1", lTarget); + iL9=1; + iFlag6=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iL10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon2", lTarget); + iL10=1; + iFlag6=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + +} + +} + +while (iFlag7==0) + { + iDice = d10(); + switch (iDice) + { + case 1:{if (iL1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime2", lTarget); + iL1=1; + iFlag7=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{if (iL2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "div2", lTarget); + iL2=1; + iFlag7=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iL3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "horod2", lTarget); + iL3=1; + iFlag7=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iL4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pfiend2", lTarget); + iL4=1; + iFlag7=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iL5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "hdrag2", lTarget); + iL5=1; + iFlag7=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iL6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pwar3", lTarget); + iL6=1; + iFlag7=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iL7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "beli2", lTarget); + iL7=1; + iFlag7=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iL8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "boss002", lTarget); + iL8=1; + iFlag7=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iL9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime1", lTarget); + iL9=1; + iFlag7=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iL10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon2", lTarget); + iL10=1; + iFlag7=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + +} + +} + +while (iFlag8==0) + { + iDice = d10(); + switch (iDice) + { + case 1:{if (iL1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime2", lTarget); + iL1=1; + iFlag8=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{if (iL2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "div2", lTarget); + iL2=1; + iFlag8=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iL3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "horod2", lTarget); + iL3=1; + iFlag8=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iL4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pfiend2", lTarget); + iL4=1; + iFlag8=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iL5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "hdrag2", lTarget); + iL5=1; + iFlag8=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iL6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pwar3", lTarget); + iL6=1; + iFlag8=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iL7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "beli2", lTarget); + iL7=1; + iFlag8=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iL8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "boss002", lTarget); + iL8=1; + iFlag8=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iL9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime1", lTarget); + iL9=1; + iFlag8=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iL10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon2", lTarget); + iL10=1; + iFlag8=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + +} + +} + +while (iFlag9==0) + { + iDice = d10(); + switch (iDice) + { + case 1:{if (iL1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime2", lTarget); + iL1=1; + iFlag9=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{if (iL2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "div2", lTarget); + iL2=1; + iFlag9=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iL3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "horod2", lTarget); + iL3=1; + iFlag9=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iL4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pfiend2", lTarget); + iL4=1; + iFlag9=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iL5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "hdrag2", lTarget); + iL5=1; + iFlag9=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iL6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pwar3", lTarget); + iL6=1; + iFlag9=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iL7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "beli2", lTarget); + iL7=1; + iFlag9=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iL8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "boss002", lTarget); + iL8=1; + iFlag9=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iL9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime1", lTarget); + iL9=1; + iFlag9=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iL10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon2", lTarget); + iL10=1; + iFlag9=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + +} + +} + +while (iFlag10==0) + { + iDice = d10(); + switch (iDice) + { + case 1:{if (iL1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime2", lTarget); + iL1=1; + iFlag10=1; + ///*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{if (iL2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "div2", lTarget); + iL2=1; + iFlag10=1; + ///*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iL3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "horod2", lTarget); + iL3=1; + iFlag10=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iL4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pfiend2", lTarget); + iL4=1; + iFlag10=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iL5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "hdrag2", lTarget); + iL5=1; + iFlag10=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iL6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pwar3", lTarget); + iL6=1; + iFlag10=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iL7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "beli2", lTarget); + iL7=1; + iFlag10=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iL8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "boss002", lTarget); + iL8=1; + iFlag10=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iL9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime1", lTarget); + iL9=1; + iFlag10=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iL10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon2", lTarget); + iL10=1; + iFlag10=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + + } + +} + +DelayCommand(3.0, JoinBackedTeam(oPC)); + + +// Spawn Effect + +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); + +} + diff --git a/_module/nss/holy_war_battle.nss b/_module/nss/holy_war_battle.nss new file mode 100644 index 0000000..976dffd --- /dev/null +++ b/_module/nss/holy_war_battle.nss @@ -0,0 +1,298 @@ +#include "nw_i0_generic" +#include "spawner" + +void main() +{ + +// Initialise variables & objects + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); + +object oPC2; +object oTarget; +object oTarget2; +object oSpawn; +location lTarget; +location bTarget; +string sHench; +int nInt; +string sPRes; +string sPRes2; +int iBetConfirm = GetLocalInt(oPC, "bet_confirmed"); + +if (iBetConfirm!=1) + { + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + //SetLocalInt(oPC, "winnings",0); + } + + +// Set Holy War mode ON + +SetLocalInt(oMod, "hwar_on", 1); +SetLocalInt(oMod, "war_won", 0); +SetLocalInt(oPC, "champ_won", 0); +SetLocalInt(oMod, "iFireFlag", 0); +SetLocalInt(oMod, "turn_flag", 0); +SetLocalInt(oMod, "iDfire", 1); + +// Flag all monsters as being in the arena + +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); + +// Reset scoreboard death status + +SetLocalString(oMod, "notime4_x", ""); +SetLocalString(oMod, "death_x", ""); +SetLocalString(oMod, "notime3_x", ""); +SetLocalString(oMod, "mistress2_x", ""); +SetLocalString(oMod, "zep_marilithb001_x", ""); +SetLocalString(oMod, "bard2_x", ""); +SetLocalString(oMod, "zep_halfdrafn001_x", ""); +SetLocalString(oMod, "zep_pitfiend001_x", ""); +SetLocalString(oMod, "dopple_x", ""); +SetLocalString(oMod, "zep_balrog001_x", ""); +SetLocalString(oMod, "dragon1_x", ""); +SetLocalString(oMod, "darcher_x", ""); + +SetLocalString(oMod, "notime2_x", ""); +SetLocalString(oMod, "notime1_x", ""); +SetLocalString(oMod, "boss002_x", ""); +SetLocalString(oMod, "beli2_x", ""); +SetLocalString(oMod, "pwar3_x", ""); +SetLocalString(oMod, "hdrag2_x", ""); +SetLocalString(oMod, "pfiend2_x", ""); +SetLocalString(oMod, "horod2_x", ""); +SetLocalString(oMod, "div2_x", ""); +SetLocalString(oMod, "dragon2_x", ""); + +// Reset match champion flag and kill comparative + +SetLocalInt(oMod, "notime4_ch", 0); +SetLocalInt(oMod, "death_ch", 0); +SetLocalInt(oMod, "notime3_ch", 0); +SetLocalInt(oMod, "mistress2_ch", 0); +SetLocalInt(oMod, "zep_marilithb001_ch", 0); +SetLocalInt(oMod, "bard2_ch", 0); +SetLocalInt(oMod, "zep_halfdrafn001_ch", 0); +SetLocalInt(oMod, "zep_pitfiend001_ch", 0); +SetLocalInt(oMod, "dopple_ch", 0); +SetLocalInt(oMod, "zep_balrog001_ch", 0); +SetLocalInt(oMod, "dragon1_ch", 0); +SetLocalInt(oMod, "darcher_ch", 0); + +SetLocalInt(oMod, "notime2_ch", 0); +SetLocalInt(oMod, "notime1_ch", 0); +SetLocalInt(oMod, "boss002_ch", 0); +SetLocalInt(oMod, "beli2_ch", 0); +SetLocalInt(oMod, "pwar3_ch", 0); +SetLocalInt(oMod, "hdrag2_ch", 0); +SetLocalInt(oMod, "pfiend2_ch", 0); +SetLocalInt(oMod, "horod2_ch", 0); +SetLocalInt(oMod, "div2_ch", 0); +SetLocalInt(oMod, "dragon2_ch", 0); + +SetLocalInt(oMod, "notime4_HWk", 0); +SetLocalInt(oMod, "death_HWk", 0); +SetLocalInt(oMod, "notime3_HWk", 0); +SetLocalInt(oMod, "mistress2_HWk", 0); +SetLocalInt(oMod, "zep_marilithb001_HWk", 0); +SetLocalInt(oMod, "bard2_HWk", 0); +SetLocalInt(oMod, "zep_halfdrafn001_HWk", 0); +SetLocalInt(oMod, "zep_pitfiend001_HWk", 0); +SetLocalInt(oMod, "dopple_HWk", 0); +SetLocalInt(oMod, "zep_balrog001_HWk", 0); +SetLocalInt(oMod, "dragon1_HWk", 0); +SetLocalInt(oMod, "darcher_HWk", 0); + +SetLocalInt(oMod, "notime2_HWk", 0); +SetLocalInt(oMod, "notime1_HWk", 0); +SetLocalInt(oMod, "boss002_HWk", 0); +SetLocalInt(oMod, "beli2_HWk", 0); +SetLocalInt(oMod, "pwar3_HWk", 0); +SetLocalInt(oMod, "hdrag2_HWk", 0); +SetLocalInt(oMod, "pfiend2_HWk", 0); +SetLocalInt(oMod, "horod2_HWk", 0); +SetLocalInt(oMod, "div2_HWk", 0); +SetLocalInt(oMod, "dragon2_HWk", 0); + +// Reset Match Champ stats + +SetLocalString(oMod, "sChamp", ""); +SetLocalInt(oMod, "champ_count", 0); +SetLocalInt(oMod, "MostKills", 0); +SetLocalInt(oPC, "iHappy", 0); + +// Reset team casualties + +SetLocalInt(oMod, "hell_cas", 0); +SetLocalInt(oMod, "heav_cas", 0); + +// Reset exploit flag + +SetLocalInt(oMod, "xcheck", 0); +SetLocalInt(oMod, "iDfire", 0); + +// Reset disabled options in spawner convo + +SetLocalInt(oMod, "scre_state", 0); +SetLocalInt(oMod, "scre2_state", 0); +SetLocalInt(oMod, "scre_state3", 0); +SetLocalInt(oMod, "scre_state4", 0); +SetLocalInt(oMod, "scre_state5", 0); + +// reset the player allegiance flags + +SetLocalInt(oMod, "turn_flag", 0); +oPC2 = GetFirstPC(); +while (GetIsObjectValid(oPC2)) + { + sPRes2 = GetResRef(oPC); + sPRes2+="_HWd"; + sPRes = GetResRef(oPC); + sPRes+="_HWk"; + SetLocalInt(oMod, sPRes, 0); + SetLocalInt(oMod, sPRes2, 0); + SetLocalInt(oPC2, "pc_HWdam", 0); + SetLocalInt(oPC2, "pc_HWhit", 0); + SetLocalInt(oPC2, "pc_side", 0); + SetLocalInt(oPC2, "join_switch", 0); + SetLocalInt(oPC2, "champ_won", 0); + RemoveJournalQuestEntry("war_hell", oPC2, TRUE, TRUE); + RemoveJournalQuestEntry("war_heav", oPC2, TRUE, TRUE); + SetLocalInt(oPC2, "pc_HWswing", 0); + oPC2 = GetNextPC(); + } + +// Reset war victory journal entry + +RemoveJournalQuestEntry("war_hell", oPC, TRUE, TRUE); +RemoveJournalQuestEntry("war_heav", oPC, TRUE, TRUE); + +// Lock arena gate + +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); + +// Move PC out of the battle + +oTarget = GetWaypointByTag("safe_wp"); +lTarget = GetLocation(oTarget); +AssignCommand(oPC, ClearAllActions()); +AssignCommand(oPC, ActionJumpToLocation(lTarget)); +CastPC(0.2, SPELL_ETHEREALNESS, oPC); + + + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); + +// Spawn Dark team + +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "bard2", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "mistress2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime3", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime4", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "darcher", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp2"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp2"); +lTarget = GetLocation(oTarget); + +// spawn light team + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "div2", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "horod2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar3", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime1", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); + + +// experimental 'Death' and henchman concepts + +//oTarget = GetWaypointByTag("death_wp"); +//lTarget = GetLocation(oTarget); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death2", lTarget); + +/* +int oMode = GetLocalInt(oMod, "gamemode"); +if (oMode==1) +{ + sHench = "diablo"; +} +else +{ +sHench = "starfall2"; +} + +oTarget = GetWaypointByTag("star_friend"); +lTarget = GetLocation(oTarget); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, sHench, lTarget); +oTarget = oSpawn; +AddHenchman(oPC, oTarget); +DelayCommand(1.0, AssignCommand(oTarget, ClearAllActions())); +DelayCommand(1.5, AssignCommand(oTarget, ActionSit(GetObjectByTag("SF_BENCH")))); +*/ + +// Spawn Effect + +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); + +} + diff --git a/_module/nss/holy_war_bet.nss b/_module/nss/holy_war_bet.nss new file mode 100644 index 0000000..ff7fbe0 --- /dev/null +++ b/_module/nss/holy_war_bet.nss @@ -0,0 +1,289 @@ +#include "nw_i0_generic" +#include "spawner" + +void StartWar() +{ + +// Initialise variables & objects + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); + +object oPC2; +object oTarget; +object oTarget2; +object oSpawn; +location lTarget; +location bTarget; +string sHench; +int nInt; +string sPRes; +string sPRes2; + +// Set Holy War mode ON + +SetLocalInt(oMod, "hwar_on", 1); +SetLocalInt(oMod, "war_won", 0); +SetLocalInt(oPC, "champ_won", 0); +SetLocalInt(oMod, "iFireFlag", 0); +SetLocalInt(oMod, "turn_flag", 0); +SetLocalInt(oMod, "iDfire", 1); + +// Flag all monsters as being in the arena + +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); + +// Reset scoreboard death status + +SetLocalString(oMod, "notime4_x", ""); +SetLocalString(oMod, "death_x", ""); +SetLocalString(oMod, "notime3_x", ""); +SetLocalString(oMod, "mistress2_x", ""); +SetLocalString(oMod, "zep_marilithb001_x", ""); +SetLocalString(oMod, "bard2_x", ""); +SetLocalString(oMod, "zep_halfdrafn001_x", ""); +SetLocalString(oMod, "zep_pitfiend001_x", ""); +SetLocalString(oMod, "dopple_x", ""); +SetLocalString(oMod, "zep_balrog001_x", ""); +SetLocalString(oMod, "dragon1_x", ""); +SetLocalString(oMod, "darcher_x", ""); + +SetLocalString(oMod, "notime2_x", ""); +SetLocalString(oMod, "notime1_x", ""); +SetLocalString(oMod, "boss002_x", ""); +SetLocalString(oMod, "beli2_x", ""); +SetLocalString(oMod, "pwar3_x", ""); +SetLocalString(oMod, "hdrag2_x", ""); +SetLocalString(oMod, "pfiend2_x", ""); +SetLocalString(oMod, "horod2_x", ""); +SetLocalString(oMod, "div2_x", ""); +SetLocalString(oMod, "dragon2_x", ""); + +// Reset match champion flag and kill comparative + +SetLocalInt(oMod, "notime4_ch", 0); +SetLocalInt(oMod, "death_ch", 0); +SetLocalInt(oMod, "notime3_ch", 0); +SetLocalInt(oMod, "mistress2_ch", 0); +SetLocalInt(oMod, "zep_marilithb001_ch", 0); +SetLocalInt(oMod, "bard2_ch", 0); +SetLocalInt(oMod, "zep_halfdrafn001_ch", 0); +SetLocalInt(oMod, "zep_pitfiend001_ch", 0); +SetLocalInt(oMod, "dopple_ch", 0); +SetLocalInt(oMod, "zep_balrog001_ch", 0); +SetLocalInt(oMod, "dragon1_ch", 0); +SetLocalInt(oMod, "darcher_ch", 0); + +SetLocalInt(oMod, "notime2_ch", 0); +SetLocalInt(oMod, "notime1_ch", 0); +SetLocalInt(oMod, "boss002_ch", 0); +SetLocalInt(oMod, "beli2_ch", 0); +SetLocalInt(oMod, "pwar3_ch", 0); +SetLocalInt(oMod, "hdrag2_ch", 0); +SetLocalInt(oMod, "pfiend2_ch", 0); +SetLocalInt(oMod, "horod2_ch", 0); +SetLocalInt(oMod, "div2_ch", 0); +SetLocalInt(oMod, "dragon2_ch", 0); + +SetLocalInt(oMod, "notime4_HWk", 0); +SetLocalInt(oMod, "death_HWk", 0); +SetLocalInt(oMod, "notime3_HWk", 0); +SetLocalInt(oMod, "mistress2_HWk", 0); +SetLocalInt(oMod, "zep_marilithb001_HWk", 0); +SetLocalInt(oMod, "bard2_HWk", 0); +SetLocalInt(oMod, "zep_halfdrafn001_HWk", 0); +SetLocalInt(oMod, "zep_pitfiend001_HWk", 0); +SetLocalInt(oMod, "dopple_HWk", 0); +SetLocalInt(oMod, "zep_balrog001_HWk", 0); +SetLocalInt(oMod, "dragon1_HWk", 0); +SetLocalInt(oMod, "darcher_HWk", 0); + +SetLocalInt(oMod, "notime2_HWk", 0); +SetLocalInt(oMod, "notime1_HWk", 0); +SetLocalInt(oMod, "boss002_HWk", 0); +SetLocalInt(oMod, "beli2_HWk", 0); +SetLocalInt(oMod, "pwar3_HWk", 0); +SetLocalInt(oMod, "hdrag2_HWk", 0); +SetLocalInt(oMod, "pfiend2_HWk", 0); +SetLocalInt(oMod, "horod2_HWk", 0); +SetLocalInt(oMod, "div2_HWk", 0); +SetLocalInt(oMod, "dragon2_HWk", 0); + +// Reset Match Champ stats + +SetLocalString(oMod, "sChamp", ""); +SetLocalInt(oMod, "champ_count", 0); +SetLocalInt(oMod, "MostKills", 0); +SetLocalInt(oPC, "iHappy", 0); + +// Reset team casualties + +SetLocalInt(oMod, "hell_cas", 0); +SetLocalInt(oMod, "heav_cas", 0); + +// Reset exploit flag + +SetLocalInt(oMod, "xcheck", 0); +SetLocalInt(oMod, "iDfire", 0); + +// Reset disabled options in spawner convo + +SetLocalInt(oMod, "scre_state", 0); +SetLocalInt(oMod, "scre2_state", 0); +SetLocalInt(oMod, "scre_state3", 0); +SetLocalInt(oMod, "scre_state4", 0); +SetLocalInt(oMod, "scre_state5", 0); + +// reset the player allegiance flags + +SetLocalInt(oMod, "turn_flag", 0); +oPC2 = GetFirstPC(); +while (GetIsObjectValid(oPC2)) + { + sPRes2 = GetResRef(oPC); + sPRes2+="_HWd"; + sPRes = GetResRef(oPC); + sPRes+="_HWk"; + SetLocalInt(oMod, sPRes, 0); + SetLocalInt(oMod, sPRes2, 0); + SetLocalInt(oPC2, "pc_HWdam", 0); + SetLocalInt(oPC2, "pc_HWhit", 0); + SetLocalInt(oPC2, "pc_side", 0); + SetLocalInt(oPC2, "join_switch", 0); + SetLocalInt(oPC2, "champ_won", 0); + RemoveJournalQuestEntry("war_hell", oPC2, TRUE, TRUE); + RemoveJournalQuestEntry("war_heav", oPC2, TRUE, TRUE); + SetLocalInt(oPC2, "pc_HWswing", 0); + oPC2 = GetNextPC(); + } + +// Reset war victory journal entry + +RemoveJournalQuestEntry("war_hell", oPC, TRUE, TRUE); +RemoveJournalQuestEntry("war_heav", oPC, TRUE, TRUE); + +// Lock arena gate + +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); + +// Move PC out of the battle + +oTarget = GetWaypointByTag("safe_wp"); +lTarget = GetLocation(oTarget); +AssignCommand(oPC, ClearAllActions()); +AssignCommand(oPC, ActionJumpToLocation(lTarget)); +CastPC(0.2, SPELL_ETHEREALNESS, oPC); + + + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); + +// Spawn Dark team + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "bard2", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "mistress2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime3", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime4", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "darcher", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp2"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp2"); +lTarget = GetLocation(oTarget); + +// spawn light team + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "div2", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "horod2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar3", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime1", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); + + +// experimental 'Death' and henchman concepts + +//oTarget = GetWaypointByTag("death_wp"); +//lTarget = GetLocation(oTarget); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death2", lTarget); + +/* +int oMode = GetLocalInt(oMod, "gamemode"); +if (oMode==1) +{ + sHench = "diablo"; +} +else +{ +sHench = "starfall2"; +} + +oTarget = GetWaypointByTag("star_friend"); +lTarget = GetLocation(oTarget); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, sHench, lTarget); +oTarget = oSpawn; +AddHenchman(oPC, oTarget); +DelayCommand(1.0, AssignCommand(oTarget, ClearAllActions())); +DelayCommand(1.5, AssignCommand(oTarget, ActionSit(GetObjectByTag("SF_BENCH")))); +*/ + +// Spawn Effect + +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); + +} +void main () {} diff --git a/_module/nss/holy_war_champ.nss b/_module/nss/holy_war_champ.nss new file mode 100644 index 0000000..5382cf7 --- /dev/null +++ b/_module/nss/holy_war_champ.nss @@ -0,0 +1,354 @@ +#include "nw_i0_generic" +#include "spawner" +#include "nw_i0_plot" + + + +void main() +{ + +// Initialise variables & objects + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); + +object oPC2; +object oTarget; +object oTarget2; +object oSpawn, oSpawn2; + +int iW1,iW2,iW3,iW4,iW5,iW6,iW7,iW8,iW9,iW10,iW11,iW12, + iL1,iL2,iL3,iL4,iL5,iL6,iL7,iL8,iL9,iL10; + +location lTarget; +location bTarget; +string sHench; +int nInt; +string sPRes; +string sPRes2; +int iDice; +int iFlag1=0,iFlag2=0,iFlag3=0,iFlag4=0,iFlag5=0,iFlag6=0,iFlag7=0,iFlag8=0, + iFlag9=0,iFlag10=0; +int iChampSide = GetLocalInt(oPC, "champ_side"); +int iBetConfirm = GetLocalInt(oPC, "bet_confirmed"); + +if (iBetConfirm!=1) + { + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + SetLocalInt(oPC, "champside", 0); + } + +//SetLocalInt(oPC, "npc_duel", 1); +SetLocalInt(oPC, "npc_duel2", 1); +// Set Holy War mode ON + +SetLocalInt(oMod, "hwar_on", 1); +SetLocalInt(oMod, "war_won", 0); +SetLocalInt(oPC, "champ_won", 0); +SetLocalInt(oMod, "iFireFlag", 0); +SetLocalInt(oMod, "turn_flag", 0); +SetLocalInt(oMod, "iDfire", 1); + +// Flag all monsters as being in the arena + +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); + +// Reset scoreboard death status + +SetLocalString(oMod, "notime4_x", ""); +SetLocalString(oMod, "death_x", ""); +SetLocalString(oMod, "notime3_x", ""); +SetLocalString(oMod, "mistress2_x", ""); +SetLocalString(oMod, "zep_marilithb001_x", ""); +SetLocalString(oMod, "bard2_x", ""); +SetLocalString(oMod, "zep_halfdrafn001_x", ""); +SetLocalString(oMod, "zep_pitfiend001_x", ""); +SetLocalString(oMod, "dopple_x", ""); +SetLocalString(oMod, "zep_balrog001_x", ""); +SetLocalString(oMod, "dragon1_x", ""); +SetLocalString(oMod, "darcher_x", ""); + +SetLocalString(oMod, "notime2_x", ""); +SetLocalString(oMod, "notime1_x", ""); +SetLocalString(oMod, "boss002_x", ""); +SetLocalString(oMod, "beli2_x", ""); +SetLocalString(oMod, "pwar3_x", ""); +SetLocalString(oMod, "hdrag2_x", ""); +SetLocalString(oMod, "pfiend2_x", ""); +SetLocalString(oMod, "horod2_x", ""); +SetLocalString(oMod, "div2_x", ""); +SetLocalString(oMod, "dragon2_x", ""); + +// Reset match champion flag and kill comparative + +SetLocalInt(oMod, "notime4_ch", 0); +SetLocalInt(oMod, "death_ch", 0); +SetLocalInt(oMod, "notime3_ch", 0); +SetLocalInt(oMod, "mistress2_ch", 0); +SetLocalInt(oMod, "zep_marilithb001_ch", 0); +SetLocalInt(oMod, "bard2_ch", 0); +SetLocalInt(oMod, "zep_halfdrafn001_ch", 0); +SetLocalInt(oMod, "zep_pitfiend001_ch", 0); +SetLocalInt(oMod, "dopple_ch", 0); +SetLocalInt(oMod, "zep_balrog001_ch", 0); +SetLocalInt(oMod, "dragon1_ch", 0); +SetLocalInt(oMod, "darcher_ch", 0); + +SetLocalInt(oMod, "notime2_ch", 0); +SetLocalInt(oMod, "notime1_ch", 0); +SetLocalInt(oMod, "boss002_ch", 0); +SetLocalInt(oMod, "beli2_ch", 0); +SetLocalInt(oMod, "pwar3_ch", 0); +SetLocalInt(oMod, "hdrag2_ch", 0); +SetLocalInt(oMod, "pfiend2_ch", 0); +SetLocalInt(oMod, "horod2_ch", 0); +SetLocalInt(oMod, "div2_ch", 0); +SetLocalInt(oMod, "dragon2_ch", 0); + +SetLocalInt(oMod, "notime4_HWk", 0); +SetLocalInt(oMod, "death_HWk", 0); +SetLocalInt(oMod, "notime3_HWk", 0); +SetLocalInt(oMod, "mistress2_HWk", 0); +SetLocalInt(oMod, "zep_marilithb001_HWk", 0); +SetLocalInt(oMod, "bard2_HWk", 0); +SetLocalInt(oMod, "zep_halfdrafn001_HWk", 0); +SetLocalInt(oMod, "zep_pitfiend001_HWk", 0); +SetLocalInt(oMod, "dopple_HWk", 0); +SetLocalInt(oMod, "zep_balrog001_HWk", 0); +SetLocalInt(oMod, "dragon1_HWk", 0); +SetLocalInt(oMod, "darcher_HWk", 0); + +SetLocalInt(oMod, "notime2_HWk", 0); +SetLocalInt(oMod, "notime1_HWk", 0); +SetLocalInt(oMod, "boss002_HWk", 0); +SetLocalInt(oMod, "beli2_HWk", 0); +SetLocalInt(oMod, "pwar3_HWk", 0); +SetLocalInt(oMod, "hdrag2_HWk", 0); +SetLocalInt(oMod, "pfiend2_HWk", 0); +SetLocalInt(oMod, "horod2_HWk", 0); +SetLocalInt(oMod, "div2_HWk", 0); +SetLocalInt(oMod, "dragon2_HWk", 0); + +// Reset Match Champ stats + +SetLocalString(oMod, "sChamp", ""); +SetLocalInt(oMod, "champ_count", 0); +SetLocalInt(oMod, "MostKills", 0); +SetLocalInt(oPC, "iHappy", 0); + +// Reset team casualties + +SetLocalInt(oMod, "hell_cas", 0); +SetLocalInt(oMod, "heav_cas", 0); + +// Reset exploit flag + +SetLocalInt(oMod, "xcheck", 0); +SetLocalInt(oMod, "iDfire", 0); + +// Reset disabled options in spawner convo + +SetLocalInt(oMod, "scre_state", 0); +SetLocalInt(oMod, "scre2_state", 0); +SetLocalInt(oMod, "scre_state3", 0); +SetLocalInt(oMod, "scre_state4", 0); +SetLocalInt(oMod, "scre_state5", 0); + +// reset the player allegiance flags + +SetLocalInt(oMod, "turn_flag", 0); +oPC2 = GetFirstPC(); +while (GetIsObjectValid(oPC2)) + { + sPRes2 = GetResRef(oPC); + sPRes2+="_HWd"; + sPRes = GetResRef(oPC); + sPRes+="_HWk"; + SetLocalInt(oMod, sPRes, 0); + SetLocalInt(oMod, sPRes2, 0); + SetLocalInt(oPC2, "pc_HWdam", 0); + SetLocalInt(oPC2, "pc_HWhit", 0); + SetLocalInt(oPC2, "pc_side", 0); + SetLocalInt(oPC2, "join_switch", 0); + SetLocalInt(oPC2, "champ_won", 0); + RemoveJournalQuestEntry("war_hell", oPC2, TRUE, TRUE); + RemoveJournalQuestEntry("war_heav", oPC2, TRUE, TRUE); + SetLocalInt(oPC2, "pc_HWswing", 0); + oPC2 = GetNextPC(); + } + +// Reset war victory journal entry + +RemoveJournalQuestEntry("war_hell", oPC, TRUE, TRUE); +RemoveJournalQuestEntry("war_heav", oPC, TRUE, TRUE); + +// Lock arena gate + +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); + +// Move PC out of the battle + +oTarget = GetWaypointByTag("safe_wp"); +lTarget = GetLocation(oTarget); +AssignCommand(oPC, ClearAllActions()); +AssignCommand(oPC, ActionJumpToLocation(lTarget)); +CastPC(0.2, SPELL_ETHEREALNESS, oPC); + + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("monster_wp2"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp2"); +lTarget = GetLocation(oTarget); + + +int pChampion = GetLocalInt(oPC, "pChampion"); + +switch (pChampion) + { + case 1:{FloatingTextStringOnCreature("The impossible happened", oPC);}break; + case 2:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +;iW1=1;}break; + case 3:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +;iW2=1;}break; + case 4:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +;iW3=1;}break; + case 5:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "bard2", lTarget); +;iW4=1;}break; + case 6:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +;iW5=1;}break; + case 7:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +;iW6=1;}break; + case 8:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +;iW7=1;}break; + case 9:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "mistress2", bTarget); +;iW8=1;}break; + case 10:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime3", lTarget); +;iW9=1;}break; + case 11:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime4", lTarget); +;iW10=1;}break; + case 12:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "darcher", lTarget); +;iW10=1;}break; + case 13:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death", lTarget); +;iW12=1;}break; + case 14:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime2", bTarget); +;iL1=1;}break; + case 15:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "div2", lTarget); +;iL2=1;}break; + case 16:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "horod2", bTarget); +;iL3=1;}break; + case 17:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", bTarget); +;iL4=1;}break; + case 18:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", bTarget); +;iL5=1;}break; + case 19:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar3", bTarget); +;iL6=1;}break; + case 20:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", bTarget); +;iL7=1;}break; + case 21:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +;iL8=1;}break; + case 22:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime1", bTarget); +;iL9=1;}break; + case 23:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +;iL10=1;}break; +} + + + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); + + + +// Spawn Dark team + +iDice = d20(); +iDice+= d3(); +if (iDice==pChampion){++iDice;} +if (iDice>23){iDice=2;} + +switch (iDice) +{ + case 1:{FloatingTextStringOnCreature("The impossible happened", oPC);}break; + case 2:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +;iW1=1;}break; + case 3:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +;iW2=1;}break; + case 4:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +;iW3=1;}break; + case 5:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "bard2", lTarget); +;iW4=1;}break; + case 6:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +;iW5=1;}break; + case 7:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +;iW6=1;}break; + case 8:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +;iW7=1;}break; + case 9:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "mistress2", bTarget); +;iW8=1;}break; + case 10:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "notime3", lTarget); +;iW9=1;}break; + case 11:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "notime4", lTarget); +;iW10=1;}break; + case 12:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "darcher", lTarget); +;iW10=1;}break; + case 13:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "death", lTarget); +;iW12=1;}break; + case 14:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "notime2", bTarget); +;iL1=1;}break; + case 15:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "div2", lTarget); +;iL2=1;}break; + case 16:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "horod2", bTarget); +;iL3=1;}break; + case 17:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", bTarget); +;iL4=1;}break; + case 18:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", bTarget); +;iL5=1;}break; + case 19:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "pwar3", bTarget); +;iL6=1;}break; + case 20:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "beli2", bTarget); +;iL7=1;}break; + case 21:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +;iL8=1;}break; + case 22:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "notime1", bTarget); +;iL9=1;}break; + case 23:{oSpawn2 = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +;iL10=1;}break; +} +DelayCommand(1.0, SetAILevel(oSpawn, AI_LEVEL_HIGH)); +DelayCommand(1.0, SetAILevel(oSpawn2, AI_LEVEL_HIGH)); + + + + DelayCommand(1.5, ChangeToStandardFaction(oSpawn, STANDARD_FACTION_COMMONER)); + DelayCommand(1.5, AssignCommand(oSpawn, SetIsEnemy(oSpawn2))); + DelayCommand(1.5, AssignCommand(oSpawn2, SetIsEnemy(oPC))); + DelayCommand(1.5, AssignCommand(oSpawn2, SetIsEnemy(oSpawn))); + + +// Spawn Effect + +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); + +} + diff --git a/_module/nss/holy_war_duel.nss b/_module/nss/holy_war_duel.nss new file mode 100644 index 0000000..6fedcc2 --- /dev/null +++ b/_module/nss/holy_war_duel.nss @@ -0,0 +1,324 @@ +#include "nw_i0_generic" +#include "spawner" + +void main() +{ + +// Initialise variables & objects + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); + +object oPC2; +object oTarget; +object oTarget2; +object oSpawn; +location lTarget; +location bTarget; +string sHench; +int nInt; +string sPRes; +string sPRes2; +int iDice; +int iBetConfirm = GetLocalInt(oPC, "bet_confirmed"); + +if (iBetConfirm!=1) + { + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + //SetLocalInt(oPC, "winnings",0); + } + +SetLocalInt(oPC, "npc_duel", 1); +// Set Holy War mode ON + +SetLocalInt(oMod, "hwar_on", 1); +SetLocalInt(oMod, "war_won", 0); +SetLocalInt(oPC, "champ_won", 0); +SetLocalInt(oMod, "iFireFlag", 0); +SetLocalInt(oMod, "turn_flag", 0); +SetLocalInt(oMod, "iDfire", 1); + +// Flag all monsters as being in the arena + +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); + +// Reset scoreboard death status + +SetLocalString(oMod, "notime4_x", ""); +SetLocalString(oMod, "death_x", ""); +SetLocalString(oMod, "notime3_x", ""); +SetLocalString(oMod, "mistress2_x", ""); +SetLocalString(oMod, "zep_marilithb001_x", ""); +SetLocalString(oMod, "bard2_x", ""); +SetLocalString(oMod, "zep_halfdrafn001_x", ""); +SetLocalString(oMod, "zep_pitfiend001_x", ""); +SetLocalString(oMod, "dopple_x", ""); +SetLocalString(oMod, "zep_balrog001_x", ""); +SetLocalString(oMod, "dragon1_x", ""); +SetLocalString(oMod, "darcher_x", ""); + +SetLocalString(oMod, "notime2_x", ""); +SetLocalString(oMod, "notime1_x", ""); +SetLocalString(oMod, "boss002_x", ""); +SetLocalString(oMod, "beli2_x", ""); +SetLocalString(oMod, "pwar3_x", ""); +SetLocalString(oMod, "hdrag2_x", ""); +SetLocalString(oMod, "pfiend2_x", ""); +SetLocalString(oMod, "horod2_x", ""); +SetLocalString(oMod, "div2_x", ""); +SetLocalString(oMod, "dragon2_x", ""); + +// Reset match champion flag and kill comparative + +SetLocalInt(oMod, "notime4_ch", 0); +SetLocalInt(oMod, "death_ch", 0); +SetLocalInt(oMod, "notime3_ch", 0); +SetLocalInt(oMod, "mistress2_ch", 0); +SetLocalInt(oMod, "zep_marilithb001_ch", 0); +SetLocalInt(oMod, "bard2_ch", 0); +SetLocalInt(oMod, "zep_halfdrafn001_ch", 0); +SetLocalInt(oMod, "zep_pitfiend001_ch", 0); +SetLocalInt(oMod, "dopple_ch", 0); +SetLocalInt(oMod, "zep_balrog001_ch", 0); +SetLocalInt(oMod, "dragon1_ch", 0); +SetLocalInt(oMod, "darcher_ch", 0); + +SetLocalInt(oMod, "notime2_ch", 0); +SetLocalInt(oMod, "notime1_ch", 0); +SetLocalInt(oMod, "boss002_ch", 0); +SetLocalInt(oMod, "beli2_ch", 0); +SetLocalInt(oMod, "pwar3_ch", 0); +SetLocalInt(oMod, "hdrag2_ch", 0); +SetLocalInt(oMod, "pfiend2_ch", 0); +SetLocalInt(oMod, "horod2_ch", 0); +SetLocalInt(oMod, "div2_ch", 0); +SetLocalInt(oMod, "dragon2_ch", 0); + +SetLocalInt(oMod, "notime4_HWk", 0); +SetLocalInt(oMod, "death_HWk", 0); +SetLocalInt(oMod, "notime3_HWk", 0); +SetLocalInt(oMod, "mistress2_HWk", 0); +SetLocalInt(oMod, "zep_marilithb001_HWk", 0); +SetLocalInt(oMod, "bard2_HWk", 0); +SetLocalInt(oMod, "zep_halfdrafn001_HWk", 0); +SetLocalInt(oMod, "zep_pitfiend001_HWk", 0); +SetLocalInt(oMod, "dopple_HWk", 0); +SetLocalInt(oMod, "zep_balrog001_HWk", 0); +SetLocalInt(oMod, "dragon1_HWk", 0); +SetLocalInt(oMod, "darcher_HWk", 0); + +SetLocalInt(oMod, "notime2_HWk", 0); +SetLocalInt(oMod, "notime1_HWk", 0); +SetLocalInt(oMod, "boss002_HWk", 0); +SetLocalInt(oMod, "beli2_HWk", 0); +SetLocalInt(oMod, "pwar3_HWk", 0); +SetLocalInt(oMod, "hdrag2_HWk", 0); +SetLocalInt(oMod, "pfiend2_HWk", 0); +SetLocalInt(oMod, "horod2_HWk", 0); +SetLocalInt(oMod, "div2_HWk", 0); +SetLocalInt(oMod, "dragon2_HWk", 0); + +// Reset Match Champ stats + +SetLocalString(oMod, "sChamp", ""); +SetLocalInt(oMod, "champ_count", 0); +SetLocalInt(oMod, "MostKills", 0); +SetLocalInt(oPC, "iHappy", 0); + +// Reset team casualties + +SetLocalInt(oMod, "hell_cas", 0); +SetLocalInt(oMod, "heav_cas", 0); + +// Reset exploit flag + +SetLocalInt(oMod, "xcheck", 0); +SetLocalInt(oMod, "iDfire", 0); + +// Reset disabled options in spawner convo + +SetLocalInt(oMod, "scre_state", 0); +SetLocalInt(oMod, "scre2_state", 0); +SetLocalInt(oMod, "scre_state3", 0); +SetLocalInt(oMod, "scre_state4", 0); +SetLocalInt(oMod, "scre_state5", 0); + +// reset the player allegiance flags + +SetLocalInt(oMod, "turn_flag", 0); +oPC2 = GetFirstPC(); +while (GetIsObjectValid(oPC2)) + { + sPRes2 = GetResRef(oPC); + sPRes2+="_HWd"; + sPRes = GetResRef(oPC); + sPRes+="_HWk"; + SetLocalInt(oMod, sPRes, 0); + SetLocalInt(oMod, sPRes2, 0); + SetLocalInt(oPC2, "pc_HWdam", 0); + SetLocalInt(oPC2, "pc_HWhit", 0); + SetLocalInt(oPC2, "pc_side", 0); + SetLocalInt(oPC2, "join_switch", 0); + SetLocalInt(oPC2, "champ_won", 0); + RemoveJournalQuestEntry("war_hell", oPC2, TRUE, TRUE); + RemoveJournalQuestEntry("war_heav", oPC2, TRUE, TRUE); + SetLocalInt(oPC2, "pc_HWswing", 0); + oPC2 = GetNextPC(); + } + +// Reset war victory journal entry + +RemoveJournalQuestEntry("war_hell", oPC, TRUE, TRUE); +RemoveJournalQuestEntry("war_heav", oPC, TRUE, TRUE); + +// Lock arena gate + +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); + +// Move PC out of the battle + +oTarget = GetWaypointByTag("safe_wp"); +lTarget = GetLocation(oTarget); +AssignCommand(oPC, ClearAllActions()); +AssignCommand(oPC, ActionJumpToLocation(lTarget)); +CastPC(0.2, SPELL_ETHEREALNESS, oPC); + + + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); + +// Spawn Dark team + +iDice = d12(); +switch (iDice) +{ + case 1:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 2:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 3:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 4:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "bard2", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 5:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 6:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 7:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 8:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "mistress2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 9:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime3", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 10:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime4", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 11:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "darcher", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 12:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; +} +SetAILevel(oSpawn, AI_LEVEL_HIGH); + + + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp2"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp2"); +lTarget = GetLocation(oTarget); + +// spawn light team + +iDice = d12(); +switch (iDice) +{ + case 1:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 2:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "div2", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 3:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "horod2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 4:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 5:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 6:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar3", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 7:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 8:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 9:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime1", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 10:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; +case 11:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime1", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; + case 12:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "div2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn);}break; +} +SetAILevel(oSpawn, AI_LEVEL_HIGH); + +DelayCommand(3.0, JoinBackedTeam(oPC)); + + + + + + + + + +// experimental 'Death' and henchman concepts + +//oTarget = GetWaypointByTag("death_wp"); +//lTarget = GetLocation(oTarget); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death2", lTarget); + +/* +int oMode = GetLocalInt(oMod, "gamemode"); +if (oMode==1) +{ + sHench = "diablo"; +} +else +{ +sHench = "starfall2"; +} + +oTarget = GetWaypointByTag("star_friend"); +lTarget = GetLocation(oTarget); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, sHench, lTarget); +oTarget = oSpawn; +AddHenchman(oPC, oTarget); +DelayCommand(1.0, AssignCommand(oTarget, ClearAllActions())); +DelayCommand(1.5, AssignCommand(oTarget, ActionSit(GetObjectByTag("SF_BENCH")))); +*/ + +// Spawn Effect + +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); + +} + diff --git a/_module/nss/holy_war_fight.nss b/_module/nss/holy_war_fight.nss new file mode 100644 index 0000000..bed400f --- /dev/null +++ b/_module/nss/holy_war_fight.nss @@ -0,0 +1,298 @@ +#include "nw_i0_generic" +#include "spawner" + +void main() +{ + +// Initialise variables & objects + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); + +object oPC2; +object oTarget; +object oTarget2; +object oSpawn; +location lTarget; +location bTarget; +string sHench; +int nInt; +string sPRes; +string sPRes2; +int iBetConfirm = GetLocalInt(oPC, "bet_confirmed"); + +if (iBetConfirm!=1) + { + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + //SetLocalInt(oPC, "winnings",0); + } + + +// Set Holy War mode ON + +SetLocalInt(oMod, "hwar_on", 1); +SetLocalInt(oMod, "war_won", 0); +SetLocalInt(oPC, "champ_won", 0); +SetLocalInt(oMod, "iFireFlag", 0); +SetLocalInt(oMod, "turn_flag", 0); +SetLocalInt(oMod, "iDfire", 1); + +// Flag all monsters as being in the arena + +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); + +// Reset scoreboard death status + +SetLocalString(oMod, "notime4_x", ""); +SetLocalString(oMod, "death_x", ""); +SetLocalString(oMod, "notime3_x", ""); +SetLocalString(oMod, "mistress2_x", ""); +SetLocalString(oMod, "zep_marilithb001_x", ""); +SetLocalString(oMod, "bard2_x", ""); +SetLocalString(oMod, "zep_halfdrafn001_x", ""); +SetLocalString(oMod, "zep_pitfiend001_x", ""); +SetLocalString(oMod, "dopple_x", ""); +SetLocalString(oMod, "zep_balrog001_x", ""); +SetLocalString(oMod, "dragon1_x", ""); +SetLocalString(oMod, "darcher_x", ""); + +SetLocalString(oMod, "notime2_x", ""); +SetLocalString(oMod, "notime1_x", ""); +SetLocalString(oMod, "boss002_x", ""); +SetLocalString(oMod, "beli2_x", ""); +SetLocalString(oMod, "pwar3_x", ""); +SetLocalString(oMod, "hdrag2_x", ""); +SetLocalString(oMod, "pfiend2_x", ""); +SetLocalString(oMod, "horod2_x", ""); +SetLocalString(oMod, "div2_x", ""); +SetLocalString(oMod, "dragon2_x", ""); + +// Reset match champion flag and kill comparative + +SetLocalInt(oMod, "notime4_ch", 0); +SetLocalInt(oMod, "death_ch", 0); +SetLocalInt(oMod, "notime3_ch", 0); +SetLocalInt(oMod, "mistress2_ch", 0); +SetLocalInt(oMod, "zep_marilithb001_ch", 0); +SetLocalInt(oMod, "bard2_ch", 0); +SetLocalInt(oMod, "zep_halfdrafn001_ch", 0); +SetLocalInt(oMod, "zep_pitfiend001_ch", 0); +SetLocalInt(oMod, "dopple_ch", 0); +SetLocalInt(oMod, "zep_balrog001_ch", 0); +SetLocalInt(oMod, "dragon1_ch", 0); +SetLocalInt(oMod, "darcher_ch", 0); + +SetLocalInt(oMod, "notime2_ch", 0); +SetLocalInt(oMod, "notime1_ch", 0); +SetLocalInt(oMod, "boss002_ch", 0); +SetLocalInt(oMod, "beli2_ch", 0); +SetLocalInt(oMod, "pwar3_ch", 0); +SetLocalInt(oMod, "hdrag2_ch", 0); +SetLocalInt(oMod, "pfiend2_ch", 0); +SetLocalInt(oMod, "horod2_ch", 0); +SetLocalInt(oMod, "div2_ch", 0); +SetLocalInt(oMod, "dragon2_ch", 0); + +SetLocalInt(oMod, "notime4_HWk", 0); +SetLocalInt(oMod, "death_HWk", 0); +SetLocalInt(oMod, "notime3_HWk", 0); +SetLocalInt(oMod, "mistress2_HWk", 0); +SetLocalInt(oMod, "zep_marilithb001_HWk", 0); +SetLocalInt(oMod, "bard2_HWk", 0); +SetLocalInt(oMod, "zep_halfdrafn001_HWk", 0); +SetLocalInt(oMod, "zep_pitfiend001_HWk", 0); +SetLocalInt(oMod, "dopple_HWk", 0); +SetLocalInt(oMod, "zep_balrog001_HWk", 0); +SetLocalInt(oMod, "dragon1_HWk", 0); +SetLocalInt(oMod, "darcher_HWk", 0); + +SetLocalInt(oMod, "notime2_HWk", 0); +SetLocalInt(oMod, "notime1_HWk", 0); +SetLocalInt(oMod, "boss002_HWk", 0); +SetLocalInt(oMod, "beli2_HWk", 0); +SetLocalInt(oMod, "pwar3_HWk", 0); +SetLocalInt(oMod, "hdrag2_HWk", 0); +SetLocalInt(oMod, "pfiend2_HWk", 0); +SetLocalInt(oMod, "horod2_HWk", 0); +SetLocalInt(oMod, "div2_HWk", 0); +SetLocalInt(oMod, "dragon2_HWk", 0); + +// Reset Match Champ stats + +SetLocalString(oMod, "sChamp", ""); +SetLocalInt(oMod, "champ_count", 0); +SetLocalInt(oMod, "MostKills", 0); +SetLocalInt(oPC, "iHappy", 0); + +// Reset team casualties + +SetLocalInt(oMod, "hell_cas", 0); +SetLocalInt(oMod, "heav_cas", 0); + +// Reset exploit flag + +SetLocalInt(oMod, "xcheck", 0); +SetLocalInt(oMod, "iDfire", 0); + +// Reset disabled options in spawner convo + +SetLocalInt(oMod, "scre_state", 0); +SetLocalInt(oMod, "scre2_state", 0); +SetLocalInt(oMod, "scre_state3", 0); +SetLocalInt(oMod, "scre_state4", 0); +SetLocalInt(oMod, "scre_state5", 0); + +// reset the player allegiance flags + +SetLocalInt(oMod, "turn_flag", 0); +oPC2 = GetFirstPC(); +while (GetIsObjectValid(oPC2)) + { + sPRes2 = GetResRef(oPC); + sPRes2+="_HWd"; + sPRes = GetResRef(oPC); + sPRes+="_HWk"; + SetLocalInt(oMod, sPRes, 0); + SetLocalInt(oMod, sPRes2, 0); + SetLocalInt(oPC2, "pc_HWdam", 0); + SetLocalInt(oPC2, "pc_HWhit", 0); + SetLocalInt(oPC2, "pc_side", 0); + SetLocalInt(oPC2, "join_switch", 0); + SetLocalInt(oPC2, "champ_won", 0); + RemoveJournalQuestEntry("war_hell", oPC2, TRUE, TRUE); + RemoveJournalQuestEntry("war_heav", oPC2, TRUE, TRUE); + SetLocalInt(oPC2, "pc_HWswing", 0); + oPC2 = GetNextPC(); + } + +// Reset war victory journal entry + +RemoveJournalQuestEntry("war_hell", oPC, TRUE, TRUE); +RemoveJournalQuestEntry("war_heav", oPC, TRUE, TRUE); + +// Lock arena gate + +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); + +// Move PC out of the battle + +oTarget = GetWaypointByTag("safe_wp"); +lTarget = GetLocation(oTarget); +AssignCommand(oPC, ClearAllActions()); +AssignCommand(oPC, ActionJumpToLocation(lTarget)); +CastPC(0.2, SPELL_ETHEREALNESS, oPC); + + + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); + +// Spawn Dark team + +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "bard2", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "mistress2", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime3", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime4", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "darcher", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death", lTarget); +SetIsTemporaryEnemy(oPC, oSpawn); + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp2"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp2"); +lTarget = GetLocation(oTarget); + +// spawn light team + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "div2", lTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "horod2", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar3", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime1", bTarget); +SetIsTemporaryEnemy(oPC, oSpawn); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +//SetIsTemporaryEnemy(oPC, oSpawn); + + +// experimental 'Death' and henchman concepts + +//oTarget = GetWaypointByTag("death_wp"); +//lTarget = GetLocation(oTarget); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death2", lTarget); + +/* +int oMode = GetLocalInt(oMod, "gamemode"); +if (oMode==1) +{ + sHench = "diablo"; +} +else +{ +sHench = "starfall2"; +} + +oTarget = GetWaypointByTag("star_friend"); +lTarget = GetLocation(oTarget); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, sHench, lTarget); +oTarget = oSpawn; +AddHenchman(oPC, oTarget); +DelayCommand(1.0, AssignCommand(oTarget, ClearAllActions())); +DelayCommand(1.5, AssignCommand(oTarget, ActionSit(GetObjectByTag("SF_BENCH")))); +*/ + +// Spawn Effect + +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); + +} + diff --git a/_module/nss/holy_war_team.nss b/_module/nss/holy_war_team.nss new file mode 100644 index 0000000..b805ee5 --- /dev/null +++ b/_module/nss/holy_war_team.nss @@ -0,0 +1,730 @@ +#include "nw_i0_generic" +#include "spawner" + +void main() +{ + +// Initialise variables & objects + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); + +object oPC2; +object oTarget; +object oTarget2; +object oSpawn; + +int iW1,iW2,iW3,iW4,iW5,iW6,iW7,iW8,iW9,iW10,iW11,iW12, + iL1,iL2,iL3,iL4,iL5,iL6,iL7,iL8,iL9,iL10; + +location lTarget; +location bTarget; +string sHench; +int nInt; +string sPRes; +string sPRes2; +int iDice; +int iFlag1=0; +int iFlag2=0; +int iFlag3=0; +int iFlag4=0; +int iBetConfirm = GetLocalInt(oPC, "bet_confirmed"); + +if (iBetConfirm!=1) + { + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + //SetLocalInt(oPC, "winnings",0); + } + +//SetLocalInt(oPC, "npc_duel", 1); +// Set Holy War mode ON + +SetLocalInt(oMod, "hwar_on", 1); +SetLocalInt(oMod, "war_won", 0); +SetLocalInt(oPC, "champ_won", 0); +SetLocalInt(oMod, "iFireFlag", 0); +SetLocalInt(oMod, "turn_flag", 0); +SetLocalInt(oMod, "iDfire", 1); + +// Flag all monsters as being in the arena + +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); + +// Reset scoreboard death status + +SetLocalString(oMod, "notime4_x", ""); +SetLocalString(oMod, "death_x", ""); +SetLocalString(oMod, "notime3_x", ""); +SetLocalString(oMod, "mistress2_x", ""); +SetLocalString(oMod, "zep_marilithb001_x", ""); +SetLocalString(oMod, "bard2_x", ""); +SetLocalString(oMod, "zep_halfdrafn001_x", ""); +SetLocalString(oMod, "zep_pitfiend001_x", ""); +SetLocalString(oMod, "dopple_x", ""); +SetLocalString(oMod, "zep_balrog001_x", ""); +SetLocalString(oMod, "dragon1_x", ""); +SetLocalString(oMod, "darcher_x", ""); + +SetLocalString(oMod, "notime2_x", ""); +SetLocalString(oMod, "notime1_x", ""); +SetLocalString(oMod, "boss002_x", ""); +SetLocalString(oMod, "beli2_x", ""); +SetLocalString(oMod, "pwar3_x", ""); +SetLocalString(oMod, "hdrag2_x", ""); +SetLocalString(oMod, "pfiend2_x", ""); +SetLocalString(oMod, "horod2_x", ""); +SetLocalString(oMod, "div2_x", ""); +SetLocalString(oMod, "dragon2_x", ""); + +// Reset match champion flag and kill comparative + +SetLocalInt(oMod, "notime4_ch", 0); +SetLocalInt(oMod, "death_ch", 0); +SetLocalInt(oMod, "notime3_ch", 0); +SetLocalInt(oMod, "mistress2_ch", 0); +SetLocalInt(oMod, "zep_marilithb001_ch", 0); +SetLocalInt(oMod, "bard2_ch", 0); +SetLocalInt(oMod, "zep_halfdrafn001_ch", 0); +SetLocalInt(oMod, "zep_pitfiend001_ch", 0); +SetLocalInt(oMod, "dopple_ch", 0); +SetLocalInt(oMod, "zep_balrog001_ch", 0); +SetLocalInt(oMod, "dragon1_ch", 0); +SetLocalInt(oMod, "darcher_ch", 0); + +SetLocalInt(oMod, "notime2_ch", 0); +SetLocalInt(oMod, "notime1_ch", 0); +SetLocalInt(oMod, "boss002_ch", 0); +SetLocalInt(oMod, "beli2_ch", 0); +SetLocalInt(oMod, "pwar3_ch", 0); +SetLocalInt(oMod, "hdrag2_ch", 0); +SetLocalInt(oMod, "pfiend2_ch", 0); +SetLocalInt(oMod, "horod2_ch", 0); +SetLocalInt(oMod, "div2_ch", 0); +SetLocalInt(oMod, "dragon2_ch", 0); + +SetLocalInt(oMod, "notime4_HWk", 0); +SetLocalInt(oMod, "death_HWk", 0); +SetLocalInt(oMod, "notime3_HWk", 0); +SetLocalInt(oMod, "mistress2_HWk", 0); +SetLocalInt(oMod, "zep_marilithb001_HWk", 0); +SetLocalInt(oMod, "bard2_HWk", 0); +SetLocalInt(oMod, "zep_halfdrafn001_HWk", 0); +SetLocalInt(oMod, "zep_pitfiend001_HWk", 0); +SetLocalInt(oMod, "dopple_HWk", 0); +SetLocalInt(oMod, "zep_balrog001_HWk", 0); +SetLocalInt(oMod, "dragon1_HWk", 0); +SetLocalInt(oMod, "darcher_HWk", 0); + +SetLocalInt(oMod, "notime2_HWk", 0); +SetLocalInt(oMod, "notime1_HWk", 0); +SetLocalInt(oMod, "boss002_HWk", 0); +SetLocalInt(oMod, "beli2_HWk", 0); +SetLocalInt(oMod, "pwar3_HWk", 0); +SetLocalInt(oMod, "hdrag2_HWk", 0); +SetLocalInt(oMod, "pfiend2_HWk", 0); +SetLocalInt(oMod, "horod2_HWk", 0); +SetLocalInt(oMod, "div2_HWk", 0); +SetLocalInt(oMod, "dragon2_HWk", 0); + +// Reset Match Champ stats + +SetLocalString(oMod, "sChamp", ""); +SetLocalInt(oMod, "champ_count", 0); +SetLocalInt(oMod, "MostKills", 0); +SetLocalInt(oPC, "iHappy", 0); + +// Reset team casualties + +SetLocalInt(oMod, "hell_cas", 0); +SetLocalInt(oMod, "heav_cas", 0); + +// Reset exploit flag + +SetLocalInt(oMod, "xcheck", 0); +SetLocalInt(oMod, "iDfire", 0); + +// Reset disabled options in spawner convo + +SetLocalInt(oMod, "scre_state", 0); +SetLocalInt(oMod, "scre2_state", 0); +SetLocalInt(oMod, "scre_state3", 0); +SetLocalInt(oMod, "scre_state4", 0); +SetLocalInt(oMod, "scre_state5", 0); + +// reset the player allegiance flags + + +oPC2 = GetFirstPC(); +while (GetIsObjectValid(oPC2)) + { + sPRes2 = GetResRef(oPC); + sPRes2+="_HWd"; + sPRes = GetResRef(oPC); + sPRes+="_HWk"; + SetLocalInt(oMod, sPRes, 0); + SetLocalInt(oMod, sPRes2, 0); + SetLocalInt(oPC2, "pc_HWdam", 0); + SetLocalInt(oPC2, "pc_HWhit", 0); + SetLocalInt(oPC2, "pc_side", 0); + SetLocalInt(oPC2, "join_switch", 0); + SetLocalInt(oPC2, "champ_won", 0); + RemoveJournalQuestEntry("war_hell", oPC2, TRUE, TRUE); + RemoveJournalQuestEntry("war_heav", oPC2, TRUE, TRUE); + SetLocalInt(oPC2, "pc_HWswing", 0); + oPC2 = GetNextPC(); + } + +// Reset war victory journal entry + +RemoveJournalQuestEntry("war_hell", oPC, TRUE, TRUE); +RemoveJournalQuestEntry("war_heav", oPC, TRUE, TRUE); + +// Lock arena gate + +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); + +// Move PC out of the battle + +oTarget = GetWaypointByTag("safe_wp"); +lTarget = GetLocation(oTarget); +AssignCommand(oPC, ClearAllActions()); +AssignCommand(oPC, ActionJumpToLocation(lTarget)); +CastPC(0.2, SPELL_ETHEREALNESS, oPC); + + + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); + +// Spawn Dark team + +iDice = d12(); +switch (iDice) +{ + case 1:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW1=1;}break; + case 2:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW2=1;}break; + case 3:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW3=1;}break; + case 4:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "bard2", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW4=1;}break; + case 5:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW5=1;}break; + case 6:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW6=1;}break; + case 7:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW7=1;}break; + case 8:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "mistress2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW8=1;}break; + case 9:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime3", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW9=1;}break; + case 10:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime4", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW10=1;}break; + case 11:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "darcher", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW11=1;}break; + case 12:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iW12=1;}break; +} + +while (iFlag1==0) + { + iDice = d12(); + switch (iDice) + { + case 1:{ + if (iW1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon1", bTarget); + iW1=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{ + if (iW2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_halfdrafn001", bTarget); + iW2=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iW3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_marilithb001", bTarget); + iW3=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iW4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "bard2", bTarget); + iW4=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iW5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); + iW5=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iW6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); + iW6=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iW7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dopple", lTarget); + iW7=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iW8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "mistress2", lTarget); + iW8=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iW9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime3", lTarget); + iW9=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iW10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime4", lTarget); + iW10=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 11:{if (iW11!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "darcher", lTarget); + iW11=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 12:{if (iW12!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "death", lTarget); + iW12=1; + iFlag1=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + } + } + + +while (iFlag2==0) + { + iDice = d12(); + switch (iDice) + { + case 1:{ + if (iW1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon1", bTarget); + iW1=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{ + if (iW2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_halfdrafn001", bTarget); + iW2=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iW3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_marilithb001", bTarget); + iW3=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iW4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "bard2", bTarget); + iW4=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iW5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); + iW5=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iW6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); + iW6=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iW7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dopple", lTarget); + iW7=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iW8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "mistress2", lTarget); + iW8=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iW9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime3", lTarget); + iW9=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iW10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime4", lTarget); + iW10=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 11:{if (iW11!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "darcher", lTarget); + iW11=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 12:{if (iW12!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "death", lTarget); + iW12=1; + iFlag2=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + } + } + + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp2"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp2"); +lTarget = GetLocation(oTarget); + +// spawn light team + +iDice = d10(); +switch (iDice) +{ + case 1:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL1=1;}break; + case 2:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "div2", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL2=1;}break; + case 3:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "horod2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL3=1;}break; + case 4:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL4=1;}break; + case 5:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL5=1;}break; + case 6:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar3", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL6=1;}break; + case 7:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL7=1;}break; + case 8:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL8=1;}break; + case 9:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime1", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL9=1;}break; + case 10:{oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/iL10=1;}break; + +} + + +while (iFlag3==0) + { + iDice = d10(); + switch (iDice) + { + case 1:{if (iL1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime2", lTarget); + iL1=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{if (iL2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "div2", lTarget); + iL2=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iL3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "horod2", lTarget); + iL3=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iL4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pfiend2", lTarget); + iL4=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iL5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "hdrag2", lTarget); + iL5=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iL6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pwar3", lTarget); + iL6=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iL7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "beli2", lTarget); + iL7=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iL8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "boss002", lTarget); + iL8=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iL9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime1", lTarget); + iL9=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iL10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon2", lTarget); + iL10=1; + iFlag3=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + +} + +} + +while (iFlag4==0) + { + iDice = d10(); + switch (iDice) + { + case 1:{if (iL1!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime2", lTarget); + iL1=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 2:{if (iL2!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "div2", lTarget); + iL2=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 3:{if (iL3!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "horod2", lTarget); + iL3=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 4:{if (iL4!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pfiend2", lTarget); + iL4=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 5:{if (iL5!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "hdrag2", lTarget); + iL5=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 6:{if (iL6!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "pwar3", lTarget); + iL6=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 7:{if (iL7!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "beli2", lTarget); + iL7=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 8:{if (iL8!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "boss002", lTarget); + iL8=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 9:{if (iL9!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "notime1", lTarget); + iL9=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + case 10:{if (iL10!=1) + { + oSpawn = CreateObject + (OBJECT_TYPE_CREATURE, "dragon2", lTarget); + iL10=1; + iFlag4=1; + /*SetIsTemporaryEnemy(oPC, oSpawn);*/ + } + }break; + +} + +} + +DelayCommand(3.0, JoinBackedTeam(oPC)); + +// Spawn Effect + +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); + +} + diff --git a/_module/nss/holy_war_war.nss b/_module/nss/holy_war_war.nss new file mode 100644 index 0000000..37837e5 --- /dev/null +++ b/_module/nss/holy_war_war.nss @@ -0,0 +1,300 @@ +#include "nw_i0_generic" +#include "spawner" + +void main() +{ + +// Initialise variables & objects + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); + +object oPC2; +object oTarget; +object oTarget2; +object oSpawn; +location lTarget; +location bTarget; +string sHench; +int nInt; +string sPRes; +string sPRes2; +int iBetConfirm = GetLocalInt(oPC, "bet_confirmed"); + +if (iBetConfirm!=1) + { + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + //SetLocalInt(oPC, "winnings",0); + } + + +// Set Holy War mode ON + +SetLocalInt(oMod, "hwar_on", 1); +SetLocalInt(oMod, "war_won", 0); +SetLocalInt(oPC, "champ_won", 0); +SetLocalInt(oMod, "iFireFlag", 0); +SetLocalInt(oMod, "turn_flag", 0); +SetLocalInt(oMod, "iDfire", 1); + +// Flag all monsters as being in the arena + +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); + +// Reset scoreboard death status + +SetLocalString(oMod, "notime4_x", ""); +SetLocalString(oMod, "death_x", ""); +SetLocalString(oMod, "notime3_x", ""); +SetLocalString(oMod, "mistress2_x", ""); +SetLocalString(oMod, "zep_marilithb001_x", ""); +SetLocalString(oMod, "bard2_x", ""); +SetLocalString(oMod, "zep_halfdrafn001_x", ""); +SetLocalString(oMod, "zep_pitfiend001_x", ""); +SetLocalString(oMod, "dopple_x", ""); +SetLocalString(oMod, "zep_balrog001_x", ""); +SetLocalString(oMod, "dragon1_x", ""); +SetLocalString(oMod, "darcher_x", ""); + +SetLocalString(oMod, "notime2_x", ""); +SetLocalString(oMod, "notime1_x", ""); +SetLocalString(oMod, "boss002_x", ""); +SetLocalString(oMod, "beli2_x", ""); +SetLocalString(oMod, "pwar3_x", ""); +SetLocalString(oMod, "hdrag2_x", ""); +SetLocalString(oMod, "pfiend2_x", ""); +SetLocalString(oMod, "horod2_x", ""); +SetLocalString(oMod, "div2_x", ""); +SetLocalString(oMod, "dragon2_x", ""); + +// Reset match champion flag and kill comparative + +SetLocalInt(oMod, "notime4_ch", 0); +SetLocalInt(oMod, "death_ch", 0); +SetLocalInt(oMod, "notime3_ch", 0); +SetLocalInt(oMod, "mistress2_ch", 0); +SetLocalInt(oMod, "zep_marilithb001_ch", 0); +SetLocalInt(oMod, "bard2_ch", 0); +SetLocalInt(oMod, "zep_halfdrafn001_ch", 0); +SetLocalInt(oMod, "zep_pitfiend001_ch", 0); +SetLocalInt(oMod, "dopple_ch", 0); +SetLocalInt(oMod, "zep_balrog001_ch", 0); +SetLocalInt(oMod, "dragon1_ch", 0); +SetLocalInt(oMod, "darcher_ch", 0); + +SetLocalInt(oMod, "notime2_ch", 0); +SetLocalInt(oMod, "notime1_ch", 0); +SetLocalInt(oMod, "boss002_ch", 0); +SetLocalInt(oMod, "beli2_ch", 0); +SetLocalInt(oMod, "pwar3_ch", 0); +SetLocalInt(oMod, "hdrag2_ch", 0); +SetLocalInt(oMod, "pfiend2_ch", 0); +SetLocalInt(oMod, "horod2_ch", 0); +SetLocalInt(oMod, "div2_ch", 0); +SetLocalInt(oMod, "dragon2_ch", 0); + +SetLocalInt(oMod, "notime4_HWk", 0); +SetLocalInt(oMod, "death_HWk", 0); +SetLocalInt(oMod, "notime3_HWk", 0); +SetLocalInt(oMod, "mistress2_HWk", 0); +SetLocalInt(oMod, "zep_marilithb001_HWk", 0); +SetLocalInt(oMod, "bard2_HWk", 0); +SetLocalInt(oMod, "zep_halfdrafn001_HWk", 0); +SetLocalInt(oMod, "zep_pitfiend001_HWk", 0); +SetLocalInt(oMod, "dopple_HWk", 0); +SetLocalInt(oMod, "zep_balrog001_HWk", 0); +SetLocalInt(oMod, "dragon1_HWk", 0); +SetLocalInt(oMod, "darcher_HWk", 0); + +SetLocalInt(oMod, "notime2_HWk", 0); +SetLocalInt(oMod, "notime1_HWk", 0); +SetLocalInt(oMod, "boss002_HWk", 0); +SetLocalInt(oMod, "beli2_HWk", 0); +SetLocalInt(oMod, "pwar3_HWk", 0); +SetLocalInt(oMod, "hdrag2_HWk", 0); +SetLocalInt(oMod, "pfiend2_HWk", 0); +SetLocalInt(oMod, "horod2_HWk", 0); +SetLocalInt(oMod, "div2_HWk", 0); +SetLocalInt(oMod, "dragon2_HWk", 0); + +// Reset Match Champ stats + +SetLocalString(oMod, "sChamp", ""); +SetLocalInt(oMod, "champ_count", 0); +SetLocalInt(oMod, "MostKills", 0); +SetLocalInt(oPC, "iHappy", 0); + +// Reset team casualties + +SetLocalInt(oMod, "hell_cas", 0); +SetLocalInt(oMod, "heav_cas", 0); + +// Reset exploit flag + +SetLocalInt(oMod, "xcheck", 0); +SetLocalInt(oMod, "iDfire", 0); + +// Reset disabled options in spawner convo + +SetLocalInt(oMod, "scre_state", 0); +SetLocalInt(oMod, "scre2_state", 0); +SetLocalInt(oMod, "scre_state3", 0); +SetLocalInt(oMod, "scre_state4", 0); +SetLocalInt(oMod, "scre_state5", 0); + +// reset the player allegiance flags + +SetLocalInt(oMod, "turn_flag", 0); +oPC2 = GetFirstPC(); +while (GetIsObjectValid(oPC2)) + { + sPRes2 = GetResRef(oPC); + sPRes2+="_HWd"; + sPRes = GetResRef(oPC); + sPRes+="_HWk"; + SetLocalInt(oMod, sPRes, 0); + SetLocalInt(oMod, sPRes2, 0); + SetLocalInt(oPC2, "pc_HWdam", 0); + SetLocalInt(oPC2, "pc_HWhit", 0); + SetLocalInt(oPC2, "pc_side", 0); + SetLocalInt(oPC2, "join_switch", 0); + SetLocalInt(oPC2, "champ_won", 0); + RemoveJournalQuestEntry("war_hell", oPC2, TRUE, TRUE); + RemoveJournalQuestEntry("war_heav", oPC2, TRUE, TRUE); + SetLocalInt(oPC2, "pc_HWswing", 0); + oPC2 = GetNextPC(); + } + +// Reset war victory journal entry + +RemoveJournalQuestEntry("war_hell", oPC, TRUE, TRUE); +RemoveJournalQuestEntry("war_heav", oPC, TRUE, TRUE); + +// Lock arena gate + +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); + +// Move PC out of the battle + +oTarget = GetWaypointByTag("safe_wp"); +lTarget = GetLocation(oTarget); +AssignCommand(oPC, ClearAllActions()); +AssignCommand(oPC, ActionJumpToLocation(lTarget)); +CastPC(0.2, SPELL_ETHEREALNESS, oPC); + + + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); + +// Spawn Dark team + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "bard2", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "mistress2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime3", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime4", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "darcher", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ + +// Set up spawnpoints + +oTarget2 = GetWaypointByTag("big_wp2"); +lTarget = GetLocation(oTarget); +bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp2"); +lTarget = GetLocation(oTarget); + +// spawn light team + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "div2", lTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "horod2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar3", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "notime1", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +/*SetIsTemporaryEnemy(oPC, oSpawn);*/ + + +// experimental 'Death' and henchman concepts + +//oTarget = GetWaypointByTag("death_wp"); +//lTarget = GetLocation(oTarget); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "death2", lTarget); + +/* +int oMode = GetLocalInt(oMod, "gamemode"); +if (oMode==1) +{ + sHench = "diablo"; +} +else +{ +sHench = "starfall2"; +} + +oTarget = GetWaypointByTag("star_friend"); +lTarget = GetLocation(oTarget); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, sHench, lTarget); +oTarget = oSpawn; +AddHenchman(oPC, oTarget); +DelayCommand(1.0, AssignCommand(oTarget, ClearAllActions())); +DelayCommand(1.5, AssignCommand(oTarget, ActionSit(GetObjectByTag("SF_BENCH")))); +*/ + +// Spawn Effect +DelayCommand(6.0, JoinBackedTeam(oPC)); + + +nInt = GetObjectType(oTarget); +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); + +} + diff --git a/_module/nss/id_store.nss b/_module/nss/id_store.nss new file mode 100644 index 0000000..a7525c4 --- /dev/null +++ b/_module/nss/id_store.nss @@ -0,0 +1,21 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +oTarget = GetObjectByTag("identifyer"); + +OpenStore(oTarget, oPC, 0, 0); + +} + diff --git a/_module/nss/identify.nss b/_module/nss/identify.nss new file mode 100644 index 0000000..16006a3 --- /dev/null +++ b/_module/nss/identify.nss @@ -0,0 +1,25 @@ +#include "nw_i0_plot" + +void main() +{ +object oPC = GetPCSpeaker(); +object oItem = GetFirstItemInInventory(oPC); +while (oItem != OBJECT_INVALID) + { + if(!GetIdentified(oItem)) + { + if (GetGold(oPC) >= 100) + { + SetIdentified(oItem,TRUE); + TakeGold(100, oPC, TRUE); + SendMessageToPC(oPC, GetName(OBJECT_SELF) + " " + GetStringByStrRef(75930) + " " + GetName(oItem)); + } + else + { + SendMessageToPC(oPC, "You do not have enough gold to identify items."); + return; + } + } + oItem = GetNextItemInInventory(oPC); + } +} diff --git a/_module/nss/ifless1000gp.nss b/_module/nss/ifless1000gp.nss new file mode 100644 index 0000000..3b9cf7e --- /dev/null +++ b/_module/nss/ifless1000gp.nss @@ -0,0 +1,19 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_008 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 10/07/2004 10:41:30 PM +//::////////////////////////////////////////////// +#include "nw_i0_tool" + +int StartingConditional() +{ + + object oPC = GetPCSpeaker(); + +if (GetGold(oPC) <= 999) + return TRUE; + + return FALSE; +} diff --git a/_module/nss/ifless500gp.nss b/_module/nss/ifless500gp.nss new file mode 100644 index 0000000..1f3c764 --- /dev/null +++ b/_module/nss/ifless500gp.nss @@ -0,0 +1,19 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_008 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 10/07/2004 10:41:30 PM +//::////////////////////////////////////////////// +#include "nw_i0_tool" + +int StartingConditional() +{ + + object oPC = GetPCSpeaker(); + +if (GetGold(oPC) <= 499) + return TRUE; + + return FALSE; +} diff --git a/_module/nss/imbue_include.nss b/_module/nss/imbue_include.nss new file mode 100644 index 0000000..3bcc2bb --- /dev/null +++ b/_module/nss/imbue_include.nss @@ -0,0 +1,87 @@ +#include "spawner" +#include "prc_x2_itemprop" +void ArmImbue(object oItem, int oDamageType) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + if (nRandom==1) oDamage = IP_CONST_DAMAGERESIST_25; + if (nRandom==2) oDamage = IP_CONST_DAMAGERESIST_25; + if (nRandom==3) oDamage = IP_CONST_DAMAGERESIST_25; + if (nRandom==4) oDamage = IP_CONST_DAMAGERESIST_25; + if (nRandom==5) oDamage = IP_CONST_DAMAGERESIST_30; + if (nRandom==6) oDamage = IP_CONST_DAMAGERESIST_30; + if (nRandom==7) oDamage = IP_CONST_DAMAGERESIST_30; + if (nRandom==8) oDamage = IP_CONST_DAMAGERESIST_30; + if (nRandom==9) oDamage = IP_CONST_DAMAGERESIST_35; + if (nRandom==10) oDamage = IP_CONST_DAMAGERESIST_35; + if (nRandom==11) oDamage = IP_CONST_DAMAGERESIST_35; + if (nRandom==12) oDamage = IP_CONST_DAMAGERESIST_35; + if (nRandom==13) oDamage = IP_CONST_DAMAGERESIST_40; + if (nRandom==14) oDamage = IP_CONST_DAMAGERESIST_40; + if (nRandom==15) oDamage = IP_CONST_DAMAGERESIST_40; + if (nRandom==16) oDamage = IP_CONST_DAMAGERESIST_40; + if (nRandom==17) oDamage = IP_CONST_DAMAGERESIST_45; + if (nRandom==18) oDamage = IP_CONST_DAMAGERESIST_45; + if (nRandom==19) oDamage = IP_CONST_DAMAGERESIST_45 ; + if (nRandom==20) + { + oDamage = IP_CONST_DAMAGERESIST_50; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertyDamageResistance(oDamageType, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} + +void Imbue(object oItem, int oDamageType) +{ +itemproperty ipAdd; +ipAdd = ItemPropertyDamageBonus(oDamageType, IP_CONST_DAMAGEBONUS_1d8); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void ImbueWeapon (int oVfx, int oDamageType) +{ +object oTarget; +object oItem; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,oVfx, OBJECT_SELF); +DelayCommand(1.0, Imbue(GetFirstItemInInventory(OBJECT_SELF), oDamageType)); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + +void ImbueArmour (int oVfx, int oDamageType) +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,oVfx, OBJECT_SELF); +DelayCommand(1.0, ArmImbue(GetFirstItemInInventory(OBJECT_SELF), oDamageType)); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + +//void main (){} diff --git a/_module/nss/immune_imbue.nss b/_module/nss/immune_imbue.nss new file mode 100644 index 0000000..6a57875 --- /dev/null +++ b/_module/nss/immune_imbue.nss @@ -0,0 +1,35 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Immune(object oItem, int oType) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyImmunityMisc(oType); +IPSafeAddItemProperty(oItem, ipAdd); + + +} + + +void ImmuneImbue (int oType) +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_DUR_ELEMENTAL_SHIELD, OBJECT_SELF); +PCEffect(1.5,VFX_DUR_FREEDOM_OF_MOVEMENT, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_BLINDDEAF , OBJECT_SELF); +DelayCommand(1.0, Immune(GetFirstItemInInventory(OBJECT_SELF), oType)); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} +//void main (){} diff --git a/_module/nss/in_g_cutscene.nss b/_module/nss/in_g_cutscene.nss new file mode 100644 index 0000000..384767f --- /dev/null +++ b/_module/nss/in_g_cutscene.nss @@ -0,0 +1,3665 @@ +const int FADE_IN = 1; +const int FADE_OUT = 2; +const int FADE_CROSS = 3; + +const int ANIMATION_NONE = 999; +const int NORMAL = ANIMATION_LOOPING_TALK_NORMAL; +const int FORCEFUL = ANIMATION_LOOPING_TALK_FORCEFUL; +const int LAUGHING = ANIMATION_LOOPING_TALK_LAUGHING; +const int PLEADING = ANIMATION_LOOPING_TALK_PLEADING; + +const int INVENTORY_SLOT_BEST_MELEE = 999; +const int INVENTORY_SLOT_BEST_RANGED = 998; +const int INVENTORY_SLOT_BEST_ARMOUR = 997; +const int INVENTORY_SLOT_NONE = 996; + +const int INSTANT = DURATION_TYPE_INSTANT; +const int PERMANENT = DURATION_TYPE_PERMANENT; +const int TEMPORARY = DURATION_TYPE_TEMPORARY; + +const int TRACK_CURRENT = 998; +const int TRACK_ORIGINAL = 999; + + + +// Initializes the cutscene, setting its name and putting the selected player(s) into CutsceneMode + // oPC the player you want the cutscene to run for + // sName the name of the cutscene - this is stored on all the party members as a LocalString called "cutscene" + // NOTE - if you don't want the player to be able to skip the cutscene, you may leave this blank + // bCamera sets whether or not to cancel any camera movements that may still be running from previous scripts + // bClear sets whether or not to clear all actions on the select PC(s) + // bClearFX sets whether or not to clear all visual effects from the selected PC(s) (includes cutscene invisibility, polymorph, blindness etc) + // bResetSpeed sets whether or not to clear all effects from the selected PC(s) that will interfere with their movement (includes sleep, paralyzation etc) + // bStoreCam sets whether or not to store the position of the player's camera so that it can be restored at the end of the scene + // NOTE - if your cutscene is triggered from the OnEnter script of an area, the camera position which is stored will be invalid, as the player won't yet be in the area + // To get around this, either set bStoreCam to FALSE and store the camera facing yourself from the script that sent the player to the new area for the cutscene + // OR set bStoreCam to 2 to store the camera facing a few seconds after the cutscene starts, by which time the player should be in the area + // iParty sets whether the cutscene is being seen by only oPC (0), all the players in oPC's party (1) or all the players on the server (2) +void GestaltStartCutscene(object oPC, string sName = "", int bCamera = TRUE, int bClear = TRUE, int bClearFX = TRUE, int bResetSpeed = TRUE, int bStoreCam = TRUE, int iParty = 0); + +// Move one or more NPC members of oPC's party out of the way at the beginning of the cutscene + // fDelay how many seconds to wait before removing the(associates) + // oPC the player whose associates you want to clear + // iAssociates the associate(s) you want to clear - add up the numbers below for all the associates you want to clear + // 1 NPC henchman + // 2 druid's / ranger's animal companion + // 4 wizard's / sorceror's familiar + // 8 summoned creature + // 16 dominated creature + // 32 henchman's associates + // EXAMPLES - to remove the henchman and all the henchman's associates, use 33 (1 + 32) + // to remove everyone apart from the henchman, use 30 (2 + 4 + 8 + 16) + // to remove all associates, leave iAssociates at its default value of 63 + // iMethod how you want to remove the selected associate(s) + // 0 (default) beam them to the specified waypoint and keep them there + // 1 make them cutscene invisible and keep them where they are + // 2 destroy them - NOTE this is permanent, a destroyed associate cannot be returned at the end of the cutscene! + // 3 keep them where they are, but keep them visible + // oDestination the waypoint you want your associates to be held at for the duration of the cutscene + // NOTE - you only need to set this if you are using iMethod 0 (beam the associates to a holding pen) + // sDestination the tag of the waypoint you want oPC's associates to be beamed to + // NOTE - leave this at its default value of "" if you have already set oDestination or if you want the associates to stay where they are + // iParty sets whether to clear the associates of only oPC (0), all the players in oPC's party (1) or all the players on the server (2) +void GestaltClearAssociates(float fDelay, object oPC, int iAssociates = 63, int iMethod = 0, object oDestination = OBJECT_INVALID, string sDestination = "", int iParty = 0); + +// Returns one or more NPC members of oPC's party which were cleared out of the way at the beginning of the cutscene + // fDelay how many seconds to wait before returning the associate(s) + // oPC the player whose associates you want to return + // iAssociates the associate(s) you want to return - add up the numbers below for all the associates you want to return + // 1 NPC henchman + // 2 druid's / ranger's animal companion + // 4 wizard's / sorceror's familiar + // 8 summoned creature + // 16 dominated creature + // 32 henchman's associates + // EXAMPLES - to return the henchman and all the henchman's associates, use 33 (1 + 32) + // to return everyone apart from the henchman, use 30 (2 + 4 + 8 + 16) + // to return all associates, leave iAssociates at its default value of 63 + // NOTE - make sure this matches the number you used in GestaltClearAssociates if you want to return all the associates! + // iMethod how you removed the associate(s) + // 0 (default) you beamed them to a holding position (so just beam them back) + // 1 you made them cutscene invisible and kept them where they were (so cancel that effect and beam them back) + // 3 you froze them where they were but kept them visible + // NOTE - make sure this matches the iMethod you used in GestaltClearAssociates if you want to make sure they return correctly! + // oDestination the waypoint you want oPC's associates to be beamed to + // NOTE - if you leave this as OBJECT_INVALID the associates will be beamed to oPC's current position + // sDestination the tag of the waypoint you want oPC's associates to be beamed to + // NOTE - leave this at its default value of "" if you have already set oDestination or if you want the associates to be beamed to oPC's current position + // iParty sets whether to return the associates of only oPC (0), all the players in oPC's party (1) or all the players on the server (2) +void GestaltReturnAssociates(float fDelay, object oPC, int iAssociates = 63, int iMethod = 0, object oDestination = OBJECT_INVALID, string sDestination = "", int iParty = 0); + +// Stops the current cutscene, cancelling all camera movements and Gestalt* actions in cutscene + // fDelay how many seconds to wait before ending the cutscene + // oPC the player running the cutscene you want to stop + // sDestination the tag of the waypoint where you want the PC to be at the end of the cutscene + // NOTE - if you set this to anything other than its default value of "" the PC will automatically be beamed to the specified waypoint when GestaltStopCutscene is called + // NOTE - you can use this in the OnCutsceneAbort script to send the PC to wherever they would have been at the end of the cutscene if they hadn't skipped it + // bMode sets whether or not to cancel CutsceneMode + // bCamera sets whether or not to cancel all camera movements + // bClear sets whether or not to clear all actions on the select PC(s) + // bClearFX sets whether or not to clear all visual effects from the selected PC(s) (includes cutscene invisibility, polymorph, blindness etc) + // bResetSpeed sets whether or not to clear all effects from the selected PC(s) that will interfere with their movement (includes sleep, paralyzation etc) + // bClearActors sets whether or not to clear all actions on all the actors that took part in the cutscene and beam them to their finishing positions (if they have one) + // NOTE - the finishing position of an actor is a waypoint with a tag equal to the name of the cutscene plus the tag of the actor + // FOR EXAMPLE - the finishing position for an actor with the tag "freda" in a cutscene called "bigscene" is a waypoint with the tag "bigscenefreda" + // NOTE - objects can't have a tag longer than 32 characters, so make sure your actor tags and cutscene names aren't too long! + // iParty make this the same as you used in GestaltStartCutscene to make sure the cutscene is cancelled for everyone together +void GestaltStopCutscene(float fDelay, object oPC, string sDestination = "", int bMode = TRUE, int bCamera = TRUE, int bClear = TRUE, int bClearFX = TRUE, int bResetSpeed = TRUE, int bClearActors = TRUE, int iParty = 0); + +// Sets the speed of the selected character so that they will go fDistance metres in fTime seconds + // fDelay how many seconds to wait before setting the character's speed + // oActor the character whose speed you want to adjust + // fTime how long you want them to take .. + // fDistance .. to move this far + // iRun sets whether they will be walking (0) or running (1) +void GestaltSetSpeed(float fDelay, object oActor, float fTime, float fDistance, int iRun); + +// Sets the speed of the selected character so that they will go fDistance metres in fTime seconds + // fDelay how many seconds to wait before setting the character's speed + // sActor the tag of the character whose speed you want to adjust - MAKE SURE THIS IS UNIQUE! + // fTime how long you want them to take .. + // fDistance .. to move this far + // iRun sets whether they will be walking (0) or running (1) +void GestaltTagSetSpeed(float fDelay, string sActor, float fTime, float fDistance, int iRun); + +// Removes any visual effects (including polymorph and invisibility) from the selected character +void GestaltClearFX(object oActor); + +// Removes any effects that might interfere with oActor's movement (sleep, paralyzation etc) +void GestaltResetSpeed(object oActor); + +// Makes the selected actor completely invisible, using CUTSCENE_INVISIBILITY + // fDelay how many seconds to wait before applying the effect + // oActor the object you want to make invisible + // fTime how long the object will remain invisible + // NOTE - leave this at its default value of 0.0 to make the effect permanent (it can be cancelled later using GestaltClearFX) + // sActor the tag of the object you want to make invisible + // NOTE - this allows you to make objects created during the cutscene invisible + // NOTE - leave this at its default value of "" if you have already set oActor +void GestaltInvisibility(float fDelay, object oActor, float fTime = 0.0, string sActor = ""); + +// Moves the selected actor to a target object in a specified time + // fDelay how many seconds to wait before movement is added to oActor's action queue + // oActor the character you want to move + // oDestination the object or waypoint they should move to + // iRun sets whether the actor will walk (FALSE) or run (TRUE) + // fRange how many metres from the target the actor should be at the end of movement (keep this number low if you're timing the movement!) + // NOTE - due to a bug in BioWare's ActionMoveToObject function, if you set fRange > 0.0 for a PC, the PC will run regardless of what you set iRun to be + // fTime how many seconds the movement should take - leave at 0.0 if you don't want to adjust the actor's speed + // sDestination the tag of the object or waypoint they should move to + // NOTE - this allows you to send actors to objects or waypoints created during the cutscene, as long as they have a unique tag + // If you want to do this, set oDestination to OBJECT_INVALID and sDestination to the tag of the object you want to move to + // If the object you want to send the actor to exists at the start of the cutscene, leave sDestination as "" + // bTowards sets whether the actor should move towards (TRUE) or away from (FALSE) the destination +void GestaltActionMove(float fDelay, object oActor, object oDestination, int iRun = FALSE, float fRange = 0.0, float fTime = 0.0, string sDestination = "", int bTowards = TRUE); + +// Moves the selected actor to a target object in a specified time + // fDelay how many seconds to wait before movement is added to the actor's action queue + // sActor the tag of the character you want to move - MAKE SURE THIS IS UNIQUE! + // oDestination the object or waypoint they should move to + // iRun sets whether the actor will walk (FALSE) or run (TRUE) + // fRange how many metres from the target the actor should be at the end of movement (keep this number low if you're timing the movement!) + // NOTE - due to a bug in BioWare's ActionMoveToObject function, if you set fRange > 0.0 for a PC, the PC will run regardless of what you set iRun to be + // fTime how many seconds the movement should take - leave at 0.0 if you don't want to adjust the actor's speed + // sDestination the tag of the object or waypoint they should move to + // NOTE - this allows you to send actors to objects or waypoints created during the cutscene, as long as they have a unique tag + // If you want to do this, set oDestination to OBJECT_INVALID and sDestination to the tag of the object you want to move to + // If the object you want to send the actor to exists at the start of the cutscene, leave sDestination as "" + // bTowards sets whether the actor should move towards (TRUE) or away from (FALSE) the destination +void GestaltTagActionMove(float fDelay, string sActor, object oDestination, int iRun = FALSE, float fRange = 0.0, float fTime = 0.0, string sDestination = "", int bTowards = TRUE); + +// Jumps the selected actor to the position of another object + // fDelay how many seconds to wait before jump is added to oActor's action queue + // oActor the character you want to jump + // oTarget the object or waypoint they should jump to + // sTarget the tag of the object or waypoint they should move to + // NOTE - this allows you to send actors to objects or waypoints created during the cutscene, as long as they have a unique tag + // If you want to do this, set oTarget to OBJECT_INVALID and sTarget to the tag of the object you want to move to + // If the object you want to send the actor to exists at the start of the cutscene, leave sTarget as "" +void GestaltActionJump(float fDelay, object oActor, object oTarget, string sTarget = ""); + +// Jumps the selected actor to the position of another object + // fDelay how many seconds to wait before oActor jumps + // oActor the character you want to jump + // oTarget the object or waypoint they should jump to + // sTarget the tag of the object or waypoint they should move to + // NOTE - this allows you to send actors to objects or waypoints created during the cutscene, as long as they have a unique tag + // If you want to do this, set oTarget to OBJECT_INVALID and sTarget to the tag of the object you want to move to + // If the object you want to send the actor to exists at the start of the cutscene, leave sTarget as "" +void GestaltJump(float fDelay, object oActor, object oTarget, string sTarget = ""); + +// Jumps the selected actor to the position of another object + // fDelay how many seconds to wait before jump is added to the actor's action queue + // sActor the tag of the character you want to jump - MAKE SURE THIS IS UNIQUE! + // oTarget the object or waypoint they should jump to + // sTarget the tag of the object or waypoint they should move to + // NOTE - this allows you to send actors to objects or waypoints created during the cutscene, as long as they have a unique tag + // If you want to do this, set oTarget to OBJECT_INVALID and sTarget to the tag of the object you want to move to + // If the object you want to send the actor to exists at the start of the cutscene, leave sTarget as "" +void GestaltTagActionJump(float fDelay, string sActor, object oTarget, string sTarget = ""); + +// Jumps the selected actor to the position of another object + // fDelay how many seconds to wait before the actor jumps + // sActor the tag of the character you want to jump - MAKE SURE THIS IS UNIQUE! + // oTarget the object or waypoint they should jump to + // sTarget the tag of the object or waypoint they should move to + // NOTE - this allows you to send actors to objects or waypoints created during the cutscene, as long as they have a unique tag + // If you want to do this, set oTarget to OBJECT_INVALID and sTarget to the tag of the object you want to move to + // If the object you want to send the actor to exists at the start of the cutscene, leave sTarget as "" +void GestaltTagJump(float fDelay, string sActor, object oTarget, string sTarget = ""); + +// Tell the selected actor to play an animation + // fDelay how many seconds to wait before animation is added to oActor's action queue + // oActor the character you want to play the animation + // iAnim the animation you want them to play (ANIMATION_*) + // fDuration how long the animation should last (leave at 0.0 for fire-and-forget animations) + // fSpeed the speed of the animation (defaults to 1.0) +void GestaltActionAnimate(float fDelay, object oActor, int iAnim, float fDuration = 0.0, float fSpeed = 1.0); + +// Tell the selected actor to play an animation + // fDelay how many seconds to wait before playing the animation + // oActor the character you want to play the animation + // iAnim the animation you want them to play (ANIMATION_*) + // fDuration how long the animation should last (leave at 0.0 for fire-and-forget animations) + // fSpeed the speed of the animation (defaults to 1.0) +void GestaltAnimate(float fDelay, object oActor, int iAnim, float fDuration = 0.0, float fSpeed = 1.0); + +// Tell the selected actor to play an animation + // fDelay how many seconds to wait before animation is added to the actor's action queue + // sActor the tag of the character you want to play the animation - MAKE SURE THIS IS UNIQUE! + // iAnim the animation you want them to play (ANIMATION_*) + // fDuration how long the animation should last (leave at 0.0 for fire-and-forget animations) + // fSpeed the speed of the animation (defaults to 1.0) +void GestaltTagActionAnimate(float fDelay, string sActor, int iAnim, float fDuration = 0.0, float fSpeed = 1.0); + +// Tell the selected actor to play an animation + // fDelay how many seconds to wait before playing the animation + // sActor the tag of the character you want to play the animation - MAKE SURE THIS IS UNIQUE! + // iAnim the animation you want them to play (ANIMATION_*) + // fDuration how long the animation should last (leave at 0.0 for fire-and-forget animations) + // fSpeed the speed of the animation (defaults to 1.0) +void GestaltTagAnimate(float fDelay, string sActor, int iAnim, float fDuration = 0.0, float fSpeed = 1.0); + +// Tell the selected actor to speak a line + // fDelay how many seconds to wait before speech is added to oActor's action queue + // oActor the character you want to speak the line + // sLine the line you want them to speak + // iAnim the animation you want them to play whilst speaking the line (leave as ANIMATION_NONE for no animation) + // NOTE - if you are using a ANIMATION_LOOPING_TALK_* animation, all you need to use is the last word (eg FORCEFUL)) + // fDuration how long the animation should last (leave at 0.0 for fire-and-forget animations) + // fSpeed the speed of the animation (defaults to 1.0) +void GestaltActionSpeak(float fDelay, object oActor, string sLine, int iAnimation = ANIMATION_NONE, float fDuration = 0.0, float fSpeed = 1.0); + +// Tell the selected actor to speak a line + // fDelay how many seconds to wait before speaking line + // oActor the character you want to speak the line + // sLine the line you want them to speak + // iAnim the animation you want them to play whilst speaking the line (leave as ANIMATION_NONE for no animation) + // fDuration how long the animation should last (leave at 0.0 for fire-and-forget animations) + // fSpeed the speed of the animation (defaults to 1.0) +void GestaltSpeak(float fDelay, object oActor, string sLine, int iAnimation = ANIMATION_NONE, float fDuration = 0.0, float fSpeed = 1.0); + +// Tell the selected actor to speak a line + // fDelay how many seconds to wait before speech is added to the actor's action queue + // sActor the tag of the character you want to speak the line - MAKE SURE THIS IS UNIQUE! + // sLine the line you want them to speak + // iAnim the animation you want them to play whilst speaking the line (leave as ANIMATION_NONE for no animation) + // NOTE - if you are using a ANIMATION_LOOPING_TALK_* animation, all you need to use is the last word (eg FORCEFUL)) + // fDuration how long the animation should last (leave at 0.0 for fire-and-forget animations) + // fSpeed the speed of the animation (defaults to 1.0) +void GestaltTagActionSpeak(float fDelay, string sActor, string sLine, int iAnimation = ANIMATION_NONE, float fDuration = 0.0, float fSpeed = 1.0); + +// Tell the selected actor to speak a line + // fDelay how many seconds to wait before speaking line + // sActor the tag of the character you want to speak the line - MAKE SURE THIS IS UNIQUE! + // sLine the line you want them to speak + // iAnim the animation you want them to play whilst speaking the line (leave as ANIMATION_NONE for no animation) + // fDuration how long the animation should last (leave at 0.0 for fire-and-forget animations) + // fSpeed the speed of the animation (defaults to 1.0) +void GestaltTagSpeak(float fDelay, string sActor, string sLine, int iAnimation = ANIMATION_NONE, float fDuration = 0.0, float fSpeed = 1.0); + +// Tell the selected actor to start a conversation. NOTE players can hold a conversation while in cutscene mode. + // fDelay how many seconds to wait before speech is added to oActor's action queue + // oActor the character you want to start the conversation + // oTarget the character you want them to talk to + // sConv the conversation file they should use + // sTarget the tag of the character you want them to talk to + // NOTE - this allows you to start conversations with creatures created during the cutscene, as long as they have a unique tag + // If you want to do this, set oTarget to OBJECT_INVALID and sTarget to the tag of the character you want the actor to talk to + // If you have already set oTarget, leave sTarget at its default value of "" + // bGreet whether or not the character should play its greeting sound when the conversation starts +void GestaltActionConversation(float fDelay, object oActor, object oTarget, string sConv = "", string sTarget = "", int bGreet = TRUE); + +// Tell the selected actor to start a conversation. NOTE players can hold a conversation while in cutscene mode. + // fDelay how many seconds to wait before speech is added to oActor's action queue + // sActor the tag of the character you want to start the conversation - MAKE SURE THIS IS UNIQUE! + // oTarget the character you want them to talk to + // sConv the conversation file they should use + // sTarget the tag of the character you want them to talk to + // NOTE - this allows you to start conversations with creatures created during the cutscene, as long as they have a unique tag + // If you want to do this, set oTarget to OBJECT_INVALID and sTarget to the tag of the character you want the actor to talk to + // If you have already set oTarget, leave sTarget at its default value of "" + // bGreet whether or not the character should play its greeting sound when the conversation starts +void GestaltTagActionConversation(float fDelay, string sActor, object oTarget, string sConv = "", string sTarget = "", int bGreet = TRUE); + +// Tells the selected actor to face in a particular direction + // fDelay how many seconds to wait before facing command is added to oActor's action queue + // oActor the character you want to turn + // fFace the direction you want the actor to face in (due east is 0.0, count in degrees anti-clockwise) + // NOTE - fFace is ignored if iFace is not set to 0 + // iFace whether the actor should face in a specific direction (0), face in the direction the target is facing (1), or face the target (2) + // oTarget the object they should face (leave as OBJECT_INVALID if you don't want them to face an object) +void GestaltActionFace(float fDelay, object oActor, float fFace, int iFace = 0, object oTarget = OBJECT_INVALID); + +// Tells the selected actor to face in a particular direction + // fDelay how many seconds to wait before turning + // oActor the character you want to turn + // fFace the direction you want the actor to face in (due east is 0.0, count in degrees anti-clockwise) + // NOTE - fFace is ignored if iFace is not set to 0 + // iFace whether the actor should face in a specific direction (0), face in the direction the target is facing (1), or face the target (2) + // oTarget the object they should face (leave as OBJECT_INVALID if you don't want them to face an object) +void GestaltFace(float fDelay, object oActor, float fFace, int iFace = 0, object oTarget = OBJECT_INVALID); + +// Tells the selected actor to face in a particular direction + // fDelay how many seconds to wait before facing command is added to the actor's action queue + // sActor the tag of the character you want to turn - MAKE SURE THIS IS UNIQUE! + // fFace the direction you want the actor to face in (due east is 0.0, count in degrees anti-clockwise) + // NOTE - fFace is ignored if iFace is not set to 0 + // iFace whether the actor should face in a specific direction (0), face in the direction the target is facing (1), or face the target (2) + // oTarget the object they should face (leave as OBJECT_INVALID if you don't want them to face an object) +void GestaltTagActionFace(float fDelay, string sActor, float fFace, int iFace = 0, object oTarget = OBJECT_INVALID); + +// Tells the selected actor to face in a particular direction + // fDelay how many seconds to wait before turning + // sActor the tag of the character you want to turn - MAKE SURE THIS IS UNIQUE! + // fFace the direction you want the actor to face in (due east is 0.0, count in degrees anti-clockwise) + // NOTE - fFace is ignored if iFace is not set to 0 + // iFace whether the actor should face in a specific direction (0), face in the direction the target is facing (1), or face the target (2) + // oTarget the object they should face (leave as OBJECT_INVALID if you don't want them to face an object) +void GestaltTagFace(float fDelay, string sActor, float fFace, int iFace = 0, object oTarget = OBJECT_INVALID); + +// Tells the selected actor to equip an item + // fDelay how many seconds to wait before equip command is added to oActor's action queue + // oActor the character you want to equip the item + // iSlot the inventory slot to put the item in + // INVENTORY_SLOT_BEST_MELEE will equip the actor's best melee weapon in his right hand + // INVENTORY_SLOT_BEST_RANGED will equip the actor's best ranged weapon in his right hand + // INVENTORY_SLOT_BEST_ARMOUR will equip the actor's best armour in his chest slot + // oItem the item you want to equip + // NOTE - leave this as OBJECT_INVALID if you're auto-equipping an INVENTORY_SLOT_BEST_* + // sItem the tag of the item you want to equip + // NOTE - this is included so that you can equip items that are created in the actor's inventory during a cutscene + // NOTE - leave sItem at its default value of "" if you're auto-equipping an INVENTORY_SLOT_BEST_* + // NOTE - leave sItem at its default value of "" if you have set oItem already +void GestaltActionEquip(float fDelay, object oActor, int iSlot = INVENTORY_SLOT_BEST_MELEE, object oItem = OBJECT_INVALID, string sItem = ""); + +// Tells the selected actor to equip an item + // fDelay how many seconds to wait before equip command is added to the actor's action queue + // sActor the tag of the character you want to equip the item - MAKE SURE THIS IS UNIQUE! + // iSlot the inventory slot to put the item in + // INVENTORY_SLOT_BEST_MELEE will equip the actor's best melee weapon in his right hand + // INVENTORY_SLOT_BEST_RANGED will equip the actor's best ranged weapon in his right hand + // INVENTORY_SLOT_BEST_ARMOUR will equip the actor's best armour in his chest slot + // oItem the item you want to equip + // NOTE - leave this as OBJECT_INVALID if you're auto-equipping an INVENTORY_SLOT_BEST_* + // sItem the tag of the item you want to equip + // NOTE - this is included so that you can equip items that are created in the actor's inventory during a cutscene + // NOTE - leave sItem at its default value of "" if you're auto-equipping an INVENTORY_SLOT_BEST_* + // NOTE - leave sItem at its default value of "" if you have set oItem already +void GestaltTagActionEquip(float fDelay, string sActor, int iSlot = INVENTORY_SLOT_BEST_MELEE, object oItem = OBJECT_INVALID, string sItem = ""); + +// Tells the selected actor to unequip an item + // fDelay how many seconds to wait before equip command is added to the actor's action queue + // sActor the tag of the character you want to unequip the item - MAKE SURE THIS IS UNIQUE! + // iSlot the inventory slot you want the actor to clear + // NOTE - if you set iSlot to anything other than its default INVENTORY_SLOT_NONE, the function will remove whatever item the actor has in the slot you specified + // oItem the item you want to equip + // NOTE - leave this as OBJECT_INVALID if you're auto-unequipping a specific INVENTORY_SLOT_* + // sItem the tag of the item you want to equip + // NOTE - this is included so that you can unequip items that are created during the cutscene + // NOTE - leave sItem at its default value of "" if you're auto-unequipping a specific INVENTORY_SLOT_* + // NOTE - leave sItem at its default value of "" if you have set oItem already +void GestaltTagActionUnequip(float fDelay, string sActor, int iSlot = INVENTORY_SLOT_NONE, object oItem = OBJECT_INVALID, string sItem = ""); + +// Tells the selected actor to unequip an item + // fDelay how many seconds to wait before equip command is added to the actor's action queue + // oActor the character you want to unequip the item + // iSlot the inventory slot you want the actor to clear + // NOTE - if you set iSlot to anything other than its default INVENTORY_SLOT_NONE, the function will remove whatever item the actor has in the slot you specified + // oItem the item you want to equip + // NOTE - leave this as OBJECT_INVALID if you're auto-unequipping a specific INVENTORY_SLOT_* + // sItem the tag of the item you want to equip + // NOTE - this is included so that you can unequip items that are created during the cutscene + // NOTE - leave sItem at its default value of "" if you're auto-unequipping a specific INVENTORY_SLOT_* + // NOTE - leave sItem at its default value of "" if you have set oItem already +void GestaltActionUnequip(float fDelay, object oActor, int iSlot = INVENTORY_SLOT_NONE, object oItem = OBJECT_INVALID, string sItem = ""); + +// Tells the selected actor to attack something + // fDelay how many seconds to wait before attack is added to oActor's action queue + // oActor the character you want to carry out the attack + // oTarget the object or character you want them to attack + // sTarget the tag of the object or character you want them to attack + // NOTE - this is included so that you can attack objects and creatures that are created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget + // bPassive whether or not to attack in passive mode +void GestaltActionAttack(float fDelay, object oActor, object oTarget, string sTarget = "", int bPassive = FALSE); + +// Tells the selected actor to attack something + // fDelay how many seconds to wait before attack is added to oActor's action queue + // sActor the tag of the character you want to carry out the attack - MAKE SURE THIS IS UNIQUE! + // oTarget the object or character you want them to attack + // sTarget the tag of the object or character you want them to attack + // NOTE - this is included so that you can attack objects and creatures that are created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget + // bPassive whether or not to attack in passive mode +void GestaltTagActionAttack(float fDelay, string sActor, object oTarget, string sTarget = "", int bPassive = FALSE); + +// Applies an effect to a target + // fDelay how many seconds to wait before applying the effect + // oTarget the object to apply the effect to + // eFect the effect to apply to the object (eg, EffectDeath()) + // iDuration the DURATION_TYPE_* (NOTE you only need to use the last word - INSTANT, TEMPORARY or PERMANENT) + // fDuration how long the effect should last (only needed if iDuration is TEMPORARY) + // sTarget the tag of the object to apply the effect to + // NOTE - this is included so that you can apply effects to objects and creatures that are created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget +void GestaltApplyEffect(float fDelay, object oTarget, effect eFect, int iDuration = PERMANENT, float fDuration = 0.0, string sTarget = ""); + +// Applies an effect to a target + // fDelay how many seconds to wait before adding the effect to oActor's action queue + // oActor the character whose action queue you want the effect to go into + // NOTE - this is NOT the character the effect is applied to! + // oTarget the object to apply the effect to + // eFect the effect to apply to the object (eg, EffectDeath()) + // iDuration the DURATION_TYPE_* (NOTE you only need to use the last word - INSTANT, TEMPORARY or PERMANENT) + // fDuration how long the effect should last (only needed if iDuration is TEMPORARY) + // sTarget the tag of the object to apply the effect to + // NOTE - this is included so that you can apply effects to objects and creatures that are created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget +void GestaltActionEffect(float fDelay, object oActor, object oTarget, effect eFect, int iDuration = PERMANENT, float fDuration = 0.0, string sTarget = ""); + +// Applies an effect to a target + // fDelay how many seconds to wait before adding the effect to oActor's action queue + // sActor the tag of the character whose action queue you want the effect to go into - MAKE SURE THIS IS UNIQUE! + // NOTE - this is NOT the character the effect is applied to! + // oTarget the object to apply the effect to + // eFect the effect to apply to the object (eg, EffectDeath()) + // iDuration the DURATION_TYPE_* (NOTE you only need to use the last word - INSTANT, TEMPORARY or PERMANENT) + // fDuration how long the effect should last (only needed if iDuration is TEMPORARY) + // sTarget the tag of the object to apply the effect to + // NOTE - this is included so that you can apply effects to objects and creatures that are created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget +void GestaltTagActionEffect(float fDelay, string sActor, object oTarget, effect eFect, int iDuration = PERMANENT, float fDuration = 0.0, string sTarget = ""); + +// Creates something on or at the selected object, creature or waypoint + // fDelay how many seconds to wait before the function is added to oActor's action queue + // oActor the character you want this command to go into the action queue for + // NOTE - this is NOT the character the object is created on! + // oTarget the object, character or waypoint you want to create the item at or on + // iType the OBJECT_TYPE_* you want to create (eg, OBJECT_TYPE_CREATURE, OBJECT_TYPE_PLACEABLE etc) + // sRef the resref of the object you want to create + // NOTE - you can create gold by using "nw_it_gold001" as sRef and setting iStack to how many GP you want to create + // sTag the tag you want the object to be given when it is created + // NOTE - this won't work if you're creating an item in an object's inventory + // NOTE - leave sTag as "" if you want to use the default tag for the object, as defined in its blueprint + // iAnim whether or not the object should play its entry animation when it is created + // iStack sets how many of the items you want to create + // NOTE - this can only be used if iType is OBJECT_TYPE_ITEM + // bCreateOn set this to TRUE if you want to create an item in the target's inventory + // NOTE - this can only be used if iType is OBJECT_TYPE_ITEM - all other objects will always appear on the ground at oTarget's location + // sTarget the tag of the object, character or waypoint you want to create the item at or on + // NOTE - this is included so that you can create objects on other objects that have been created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget +void GestaltActionCreate(float fDelay, object oActor, object oTarget, int iType, string sRef, string sTag = "", int iAnim = FALSE, int iStack = 0, int bCreateOn = FALSE, string sTarget = ""); + +// Creates something on or at the selected object, creature or waypoint + // fDelay how many seconds to wait before the function is added to the actor's action queue + // sActor the tag of the character you want this command to go into the action queue for - MAKE SURE THIS IS UNIQUE! + // NOTE - this is NOT the character the object is created on! + // oTarget the object, character or waypoint you want to create the item at or on + // iType the OBJECT_TYPE_* you want to create (eg, OBJECT_TYPE_CREATURE, OBJECT_TYPE_PLACEABLE etc) + // sRef the resref of the object you want to create + // NOTE - you can create gold by using "nw_it_gold001" as sRef and setting iStack to how many GP you want to create + // sTag the tag you want the object to be given when it is created + // NOTE - this won't work if you're creating an item in an object's inventory + // NOTE - leave sTag as "" if you want to use the default tag for the object, as defined in its blueprint + // iAnim whether or not the object should play its entry animation when it is created + // iStack sets how many of the items you want to create + // NOTE - this can only be used if iType is OBJECT_TYPE_ITEM + // bCreateOn set this to TRUE if you want to create an item in the target's inventory + // NOTE - this can only be used if iType is OBJECT_TYPE_ITEM - all other objects will always appear on the ground at oTarget's location + // sTarget the tag of the object, character or waypoint you want to create the item at or on + // NOTE - this is included so that you can create objects on other objects that have been created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget +void GestaltTagActionCreate(float fDelay, string sActor, object oTarget, int iType, string sRef, string sTag = "", int iAnim = FALSE, int iStack = 0, int bCreateOn = FALSE, string sTarget = ""); + +// Creates something on or at the selected object, creature or waypoint + // fDelay how many seconds to wait before the object is created + // oTarget the object, character or waypoint you want to create the item at or on + // iType the OBJECT_TYPE_* you want to create (eg, OBJECT_TYPE_CREATURE, OBJECT_TYPE_PLACEABLE etc) + // sRef the resref of the object you want to create + // NOTE - you can create gold by using "nw_it_gold001" as sRef and setting iStack to how many GP you want to create + // sTag the tag you want the object to be given when it is created + // NOTE - this won't work if you're creating an item in an object's inventory + // NOTE - leave sTag as "" if you want to use the default tag for the object, as defined in its blueprint + // iAnim whether or not the object should play its entry animation when it is created + // iStack sets how many of the items you want to create + // NOTE - this can only be used if iType is OBJECT_TYPE_ITEM + // bCreateOn set this to TRUE if you want to create an item in the target's inventory + // NOTE - this can only be used if iType is OBJECT_TYPE_ITEM - all other objects will always appear on the ground at oTarget's location + // sTarget the tag of the object, character or waypoint you want to create the item at or on + // NOTE - this is included so that you can create objects on other objects that have been created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget +void GestaltCreate(float fDelay, object oTarget, int iType, string sRef, string sTag = "", int iAnim = FALSE, int iStack = 0, int bCreateOn = FALSE, string sTarget = ""); + +// Copies a creature or item +// IMPORTANT NOTE - as of NWN v1.32 there is STILL a bug in the game which stops you from locating a copied object by its tag +// As a result this function won't work properly. You should use object oClone = CopyObject(...); to clone characters instead + // fDelay how many seconds to wait before copying the object + // oSource the object you want to copy + // oTarget the object you want to create the copy at or on + // bCreateOn set this to TRUE if you want to put the copy in oTarget's inventory + // NOTE - this can only be used for items, and will only work if oTarget has an inventory (ie, it's a creature or a container) + // sTag the tag you want to give the new item + // NOTE - leave sTag as "" if you want to use the default tag for the object, as defined in its blueprint + // sTarget the tag of the object you want to create the copy at or on + // NOTE - this is included so that you can create objects on other objects that have been created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget +void GestaltCopy(float fDelay, object oSource, object oTarget, int bCreateOn = FALSE, string sTag = "", string sTarget = ""); + +// Creates a clone of the selected PC which you can then move around from your cutscene script +// IMPORTANT NOTE - as of NWN v1.32 there is STILL a bug in the game which stops you from locating a copied object by its tag +// As a result this function won't work properly. You should use object oClone = CopyObject(...); to clone characters instead + // fDelay how many seconds to wait before copying the object + // oPC the PC you want to create a clone of + // oTarget the object you want the clone to appear at + // sTag the tag which the PC's clone will be given + // NOTE - you need to make sure this tag is unique for every player you clone if you want to be able to do anything with them + // NOTE - by default the clone will be given the tag "cloned_pc" + // sTarget the tag of the object you want the clone to appear at + // NOTE - this is included so that you can create clones at the position of other objects created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget + // bInvisible sets whether or not you want to make the PC invisible, allowing you to use them as a cameraman while their clone does the acting +void GestaltClonePC(float fDelay, object oPC, object oTarget, string sTag = "cloned_pc", string sTarget = "", int bInvisible = TRUE); + +// Tells the actor to cast (or fake casting) a spell at an object + // fDelay how many seconds to wait before adding the spell cast to the actor's action queue + // oActor the character you want to cast the spell + // oTarget the object you want to cast the spell at + // iSpell the SPELL_* you want to be cast + // bFake whether to only create the animations and visual effects for the spell (TRUE) or to really cast the spell (FALSE) + // NOTE - if iFake is TRUE, bCheat, bInstant and iMeta aren't used + // iPath the PROJECTILE_PATH_TYPE_* the spell should use (uses spell's default path unless told otherwise) + // sTarget the tag of the object you want to cast the spell at + // NOTE - this is included so that you can cast spells at objects that have been created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget + // bCheat whether or not to let the character cast the spell even if he wouldn't normally be able to + // bInstant if bInstant is set to TRUE, the character will cast the spell immediately without playing their casting animation + // iLevel if iLevel is set to anything other than 0, that is the level at which the spell will be cast, rather than the actor's real level + // iMeta the METAMAGIC_* type you want the caster to cast the spell using (NONE by default) +void GestaltActionSpellCast(float fDelay, object oActor, object oTarget, int iSpell, int bFake = FALSE, int iPath = PROJECTILE_PATH_TYPE_DEFAULT, string sTarget = "", int bCheat = TRUE, int bInstant = FALSE, int iLevel = 0, int iMeta = METAMAGIC_NONE); + +// Tells the actor to cast (or fake casting) a spell at an object + // fDelay how many seconds to wait before adding the spell cast to the actor's action queue + // sActor the tag of the character you want to cast the spell - MAKE SURE THIS IS UNIQUE! + // oTarget the object you want to cast the spell at + // iSpell the SPELL_* you want to be cast + // bFake whether to only create the animations and visual effects for the spell (TRUE) or to really cast the spell (FALSE) + // NOTE - if iFake is TRUE, bCheat, bInstant and iMeta aren't used + // iPath the PROJECTILE_PATH_TYPE_* the spell should use (uses spell's default path unless told otherwise) + // sTarget the tag of the object you want to cast the spell at + // NOTE - this is included so that you can cast spells at objects that have been created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget + // bCheat whether or not to let the character cast the spell even if he wouldn't normally be able to + // bInstant if bInstant is set to TRUE, the character will cast the spell immediately without playing their casting animation + // iLevel if iLevel is set to anything other than 0, that is the level at which the spell will be cast, rather than the actor's real level + // iMeta the METAMAGIC_* type you want the caster to cast the spell using (NONE by default) +void GestaltTagActionSpellCast(float fDelay, string sActor, object oTarget, int iSpell, int bFake = FALSE, int iPath = PROJECTILE_PATH_TYPE_DEFAULT, string sTarget = "", int bCheat = TRUE, int bInstant = FALSE, int iLevel = 0, int iMeta = METAMAGIC_NONE); + +// Tells the actor to close a door + // fDelay how many seconds to wait before adding the command to the actor's action queue + // oActor the character you want to close the door + // oDoor the door you want them to close + // bLock whether or not they should lock the door once it's closed +void GestaltActionClose(float fDelay, object oActor, object oDoor, int bLock = FALSE); + +// Tells the actor to open a door + // fDelay how many seconds to wait before adding the command to the actor's action queue + // oActor the character you want to open the door + // oDoor the door you want them to open + // bUnlock whether or not they should unlock the door if necessary before opening it +void GestaltActionOpen(float fDelay, object oActor, object oDoor, int bUnlock = TRUE); + +// Tells the actor to close a door + // fDelay how many seconds to wait before adding the command to the actor's action queue + // sActor the tag of the character you want to close the door - MAKE SURE THIS IS UNIQUE! + // oDoor the door you want them to close + // bLock whether or not they should lock the door once it's closed +void GestaltTagActionClose(float fDelay, string sActor, object oDoor, int bLock = FALSE); + +// Tells the actor to open a door + // fDelay how many seconds to wait before adding the command to the actor's action queue + // sActor the tag of the character you want to open the door - MAKE SURE THIS IS UNIQUE! + // oDoor the door you want them to open + // bUnlock whether or not they should unlock the door if necessary before opening it +void GestaltTagActionOpen(float fDelay, string sActor, object oDoor, int bUnlock = TRUE); + +// Tells the actor to pick up an object from the ground + // fDelay how many seconds to wait before adding the command to the actor's action queue + // oActor the character you want to pick up the item + // oItem the object to pick up + // sItem the tag of the object to pick up (the game will find the nearest item with that tag to the actor) + // NOTE - this is included so that you can pick up an item created during the cutscene + // NOTE - leave sItem at its default value of "" if you have already set oItem +void GestaltActionPickUp(float fDelay, object oActor, object oItem, string sItem = ""); + +// Tells the actor to pick up an object from the ground + // fDelay how many seconds to wait before adding the command to the actor's action queue + // sActor the tag of the character you want to pick up the item - MAKE SURE THIS IS UNIQUE! + // oItem the object to pick up + // sItem the tag of the object to pick up (the game will find the nearest item with that tag to the actor) + // NOTE - this is included so that you can pick up an item created during the cutscene + // NOTE - leave sItem at its default value of "" if you have already set oItem +void GestaltTagActionPickUp(float fDelay, string sActor, object oItem, string sItem = ""); + +// Tells the actor to sit down on a specified chair or other object + // fDelay how many seconds to wait before adding the command to the actor's action queue + // oActor the character you want to sit down + // oChair the object you want them to sit on + // sChair the tag of the object you want them to sit on (the game will find the nearest object with that tag to the actor) + // NOTE - this is included so that you can sit on an object created during the cutscene + // NOTE - leave sChair at its default value of "" if you have already set oChair +void GestaltActionSit(float fDelay, object oActor, object oChair, string sChair = ""); + +// Tells the actor to sit down on a specified chair or other object + // fDelay how many seconds to wait before adding the command to the actor's action queue + // sActor the tag of the character you want to sit down - MAKE SURE THIS IS UNIQUE! + // oChair the object you want them to sit on + // sChair the tag of the object you want them to sit on (the game will find the nearest object with that tag to the actor) + // NOTE - this is included so that you can sit on an object created during the cutscene + // NOTE - leave sChair at its default value of "" if you have already set oChair +void GestaltTagActionSit(float fDelay, string sActor, object oChair, string sChair = ""); + +// This function allows you to activate and deactivate sound objects, as well as to adjust their position and volume + // fDelay how many seconds to wait before making the change + // oSound the sound object you want to adjust + // bOn set to TRUE to switch the sound object on, or FALSE to switch it off + // fDuration how long the sound object should stay on / off for + // NOTE - leave fDuration at its default value of 0.0 to switch the sound object on / off permanently + // iVolume changes the volume of the sound (iVolume must be between 0 and 127) + // NOTE - leave iVolume at its default value of 128 to leave the volume unchanged + // oPosition changes the sound to play from the position of the specified object + // NOTE - leave oPosition at its default value of OBJECT_INVALID to leave the position unchanged +void GestaltSoundObject(float fDelay, object oSound, int bOn = TRUE, float fDuration = 0.0, int iVolume = 128, object oPosition = OBJECT_INVALID); + +// This function allows you to activate and deactivate sound objects, as well as to adjust their position and volume + // fDelay how many seconds to wait before making the change + // oArea the area whose ambient sound you want to adjust + // bOn set to TRUE to switch the ambient sound on, or FALSE to switch it off + // fDuration how long the ambient sound should stay on / off for + // NOTE - leave fDuration at its default value of 0.0 to switch the sound on / off permanently + // iVolume changes the volume of the area's ambient sound (iVolume must be between 0 and 100) + // NOTE - leave iVolume at its default value of 128 to leave the volume unchanged +void GestaltAmbientSound(float fDelay, object oArea, int bOn = TRUE, float fDuration = 0.0, int iVolume = 128); + +// This function allows you to play a specific piece of soundtrack music at any point in the cutscene + // fDelay how many seconds to wait before changing the music + // oArea the area whose music you want to change + // bOn set to TRUE to switch the area music on, or FALSE to switch it off + // iTrack the TRACK_* you want to play + // NOTE - leave iTrack at its default value of TRACK_CURRENT to leave the area music unchanged + // NOTE - set iTrack to TRACK_ORIGINAL if you want to switch all the music settings for the area back to their original values + // fDuration how long the music should stay on / off for and how long the new piece of music (if you changed the track) should remain active + // NOTE - leave fDuration at its default value of 0.0 to make the changes permanent +void GestaltPlayMusic(float fDelay, object oArea, int bOn = TRUE, int iTrack = TRACK_CURRENT, float fDuration = 0.0); + +// Tells the actor to play a sound file + // fDelay how many seconds to wait before playing the sound + // oActor the object you want to play the sound + // sSound the name of the sound you want to be played + // sActor the tag of the object you want to play the sound + // NOTE - this is included so that you can play sounds on an object created during the cutscene + // NOTE - leave sActor at its default value of "" if you have already set oActor +void GestaltPlaySound(float fDelay, object oActor, string sSound, string sActor = ""); + +// Tells the actor to play a sound file + // fDelay how many seconds to wait before adding the command to the actor's action queue + // oActor the object you want to play the sound + // sSound the name of the sound you want to be played + // sActor the tag of the object you want to play the sound + // NOTE - this is included so that you can play sounds on an object created during the cutscene + // NOTE - leave sActor at its default value of "" if you have already set oActor +void GestaltActionPlaySound(float fDelay, object oActor, string sSound, string sActor = ""); + +// Tells the actor to wait before proceeding with the actions in their queue + // fDelay how many seconds to wait before adding the pause to their action queue + // oActor the character you want to pause + // fPause how many seconds they should pause for +void GestaltActionWait(float fDelay, object oActor, float fPause); + +// Tells the actor to wait before proceeding with the actions in their queue + // fDelay how many seconds to wait before adding the pause to their action queue + // sActor the tag of the character you want to pause - MAKE SURE THIS IS UNIQUE! + // fPause how many seconds they should pause for +void GestaltTagActionWait(float fDelay, string sActor, float fPause); + +// Tells the selected actor to stop everything he's doing and prepare for new orders + // fDelay how many seconds to wait before applying this to oActor + // oActor the character whose action queue you want to clear + // sActor the tag of the character whose action queue you want to clear + // NOTE - this is included so that you can clear the actions of a creature created during the cutscene + // NOTE - leave sActor at its default value of "" if you have already set oActor +void GestaltClearActions(float fDelay, object oActor, string sActor=""); + +// Creates a line of text that appears above the selected character and rises up the screen, fading out as it goes - good for creating scrolling credits for a module! + // fDelay how many seconds to wait before displaying the text + // oActor the object above which the text should appear + // sMessage the text you want to appear + // bFaction whether or not the text will only appear to members in the object's faction + // NOTE - if you set this to TRUE and oActor is an object or an NPC which isn't in the PC's party, nobody will see it + // NOTE - if you set this to TRUE and oActor is a PC, only other players in their party will see it + // NOTE - if you set this to FALSE, everyone on the server will see the message appear in their chat window +void GestaltFloatingText(float fDelay, object oActor, string sMessage, int bFaction = TRUE); + +// Destroy the specified object. The function will SetIsDestroyable(TRUE) the object first to make sure it can be destroyed. + // fDelay how many seconds to wait before destroying the target + // oTarget the object you want to destroy + // sTarget the tag of the object you want to destroy + // NOTE - this is included so that you can destroy an object created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget +void GestaltDestroy(float fDelay, object oTarget, string sTarget = ""); + +// Destroy the specified object. The function will SetIsDestroyable(TRUE) the object first to make sure it can be destroyed. + // fDelay how many seconds to wait before adding this command to the actor's action queue + // oActor the actor whose action queue you want this to be placed in + // NOTE - this is not the object that will be destroyed! + // oTarget the object you want to destroy + // sTarget the tag of the object you want to destroy + // NOTE - this is included so that you can destroy an object created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget +void GestaltActionDestroy(float fDelay, object oActor, object oTarget, string sTarget = ""); + +// Destroy the specified object. The function will SetIsDestroyable(TRUE) the object first to make sure it can be destroyed. + // fDelay how many seconds to wait before adding this command to the actor's action queue + // sActor the tag of the actor whose action queue you want this to be placed in - MAKE SURE THIS IS UNIQUE! + // NOTE - this is not the object that will be destroyed! + // oTarget the object you want to destroy + // sTarget the tag of the object you want to destroy + // NOTE - this is included so that you can destroy an object created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget +void GestaltTagActionDestroy(float fDelay, string sActor, object oTarget, string sTarget = ""); + +// Update the journals of the selected player(s), and (optionally) give them quest experience + // fDelay how many seconds to wait before applying the journal update + // oPC the PC who completed the quest + // sQuest the id tag of the quest you want to update + // iState the number of the quest entry you want to put in the journal + // iXP how many XP to give the player(s) + // NOTE - leave this at 0 if you want to give no XP + // NOTE - set this to 1 if you want to give the quest XP you specified in the journal editor + // iParty sets whether to update the journal for only oPC (0), all the players in oPC's party (1) or all the players on the server (2) + // bRewardAll sets whether or not to give the XP reward to all the players you updated the journal for, or only for oPC + // NOTE - if iXP or iParty is 0 you can ignore this option + // bOverride sets whether or not to allow the function to give a player a quest state lower than the one they already have in that quest + // NOTE - this is TRUE by default! +void GestaltJournalEntry(float fDelay, object oPC, string sQuest, int iState, int iXP = 0, int iParty = 0, int bRewardAll = TRUE, int bOverride = FALSE); + +// Execute another script + // fDelay how many seconds to wait before triggering the other script + // oTarget the object which the script will be triggered on + // sScript the name of the script + // sTarget the tag of the object which the script will be triggered on + // NOTE - this is included so that you can run scripts on objects created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget +void GestaltExecuteScript(float fDelay, object oTarget, string sScript, string sTarget = ""); + +// Execute another script + // fDelay how many seconds to wait before adding this command to oActor's action queue + // oActor the actor whose action queue you want to place this command in (oActor doesn't have to be the same as oTarget) + // oTarget the object which the script will be triggered on + // sScript the name of the script + // sTarget the tag of the object which the script will be triggered on + // NOTE - this is included so that you can run scripts on objects created during the cutscene + // NOTE - leave sTarget at its default value of "" if you have already set oTarget +void GestaltActionExecute(float fDelay, object oActor, object oTarget, string sScript, string sTarget = ""); + + +// Stops all camera movements immediately + // oPC the player whose camera movements you want to stop + // iParty sets whether to stop the camera of only oPC (0), all the players in oPC's party (1) or all the players on the server (2) +// DO NOT CHANGE THE FOLLOWING SETTINGS! + // bAuto sets whether the function should stop all camera movement (TRUE) or only ones with an id lower than iCamID (FALSE) + // iCamID the ID of the last camera move you want to stop (this is only needed if bAuto is set to FALSE) +void GestaltStopCameraMoves(object oPC, int iParty = 0, int bAuto = TRUE, int iCamID = 0); + +// Gets the vector linking object A to object B +vector GetVectorAB(object oA, object oB); + +// Finds the horizontal distance between two objects, ignoring any vertical component +float GetHorizontalDistanceBetween(object oA, object oB); + +// Finds the compass direction from the PC to a target object +float GestaltGetDirection(object oTarget, object oPC); + +// Acts just like the standard SetCameraFacing function + // STARTING TIME - + // fDelay how many seconds to wait before starting the movement + // STARTING CONDITIONS - + // fDirection the direction you want the camera to face in (0.0 = due east) + // fRange how far you want the camera to be from the PC + // fPitch how far from the vertical you want the camera to be tilted + // MISC SETTINGS - + // oPC the PC whose camera you want to move + // iTransition the transition speed (defaults to CAMERA_TRANSITION_TYPE_SNAP) +void GestaltCameraFacing(float fDelay, float fDirection, float fRange, float fPitch, object oPC, int iTransition = CAMERA_TRANSITION_TYPE_SNAP); + +// Moves the camera smoothly from one position to another over the specified time + // STARTING TIME - + // fDelay how many seconds to wait before starting the movement + // STARTING CONDITIONS - + // fDirection initial direction (0.0 = due east) + // fRange initial distance between player and camera + // fPitch initial pitch (vertical tilt) + // FINAL CONDITIONS - + // fDirection2 finishing direction + // fRange2 finishing distance + // fPitch2 finishing tilt + // TIME SETTINGS - + // fTime number of seconds it takes camera to complete movement + // fFrameRate number of movements per second (governs how smooth the motion is) + // MISC SETTINGS - + // oPC the PC you want to apply the camera movement to + // iClockwise set to 1 if you want the camera to rotate clockwise, 0 for anti-clockwise, or 2 for auto-select + // iFace sets whether the camera (0), the character (2) or both (1) turn to face the specified direction + // iParty sets whether to move the camera of only oPC (0), all the players in oPC's party (1) or all the players on the server (2) +void GestaltCameraMove(float fDelay, float fDirection, float fRange, float fPitch, float fDirection2, float fRange2, float fPitch2, float fTime, float fFrameRate, object oPC, int iClockwise = 0, int iFace = 0, int iParty = 0); + +// Just like GestaltCameraMove, but with the added advantage of being able to move the point the camera is centered on up and down + // STARTING TIME - + // fDelay how many seconds to wait before starting the movement + // STARTING CONDITIONS - + // fDirection initial direction (0.0 = due east) + // fRange initial distance between player and camera + // fPitch initial pitch (vertical tilt) + // fHeight initial height above the PC where the camera should point + // FINAL CONDITIONS - + // fDirection2 finishing direction + // fRange2 finishing distance + // fPitch2 finishing tilt + // fHeight2 finishing height + // TIME SETTINGS - + // fTime number of seconds it takes camera to complete movement + // fFrameRate number of movements per second (governs how smooth the motion is) + // MISC SETTINGS - + // oPC the PC you want to apply the camera movement to + // iClockwise set to 1 if you want the camera to rotate clockwise, 0 for anti-clockwise, or 2 for auto-select + // iFace sets whether the camera (0), the character (2) or both (1) turn to face the specified direction + // iParty sets whether to move the camera of only oPC (0), all the players in oPC's party (1) or all the players on the server (2) +void GestaltCameraCrane(float fDelay, float fDirection, float fRange, float fPitch, float fHeight, float fDirection2, float fRange2, float fPitch2, float fHeight2, float fTime, float fFrameRate, object oPC, int iClockwise = 0, int iFace = 0, int iParty = 0); + +// Produces smooth transitions between different camera movements by setting initial and final speeds +// The function then interpolates between the two so that the movement rate changes smoothly over the +// duration of the movement. + // STARTING TIME - + // fDelay how many seconds to wait before starting the movement + // MOVEMENT RATES AT START OF MOTION - + // fdDirection1 how fast the camera's compass direction should change by in degrees per second + // positive numbers produce an anti-clockwise movement, negative anti-clockwise + // fdRange1 how fast the camera's range should change in meters per second + // positive numbers move the camera away from the player, negative towards them + // fdPitch1 how fast the camera's pitch should change in degrees per second + // positive numbers tilt the camera down towards the ground, negative up towards vertical + // MOVEMENT RATES AT END OF MOTION - + // fdDirection2 how fast the camera's compass direction should change by in degrees per second + // positive numbers produce an anti-clockwise movement, negative anti-clockwise + // fdRange2 how fast the camera's range should change in meters per second + // positive numbers move the camera away from the player, negative towards them + // fdPitch2 how fast the camera's pitch should change in degrees per second + // positive numbers tilt the camera down towards the ground, negative up towards vertical + // TIME SETTINGS - + // fTime number of seconds it should take the camera to complete movement + // fFrameRate number of movements per second (governs how smooth the motion is) + // MISC SETTINGS - + // oPC the player whose camera you want to move + // iParty sets whether to move the camera of only oPC (0), all the players in oPC's party (1) or all the players on the server (2) + // iSync sets whether to use separate camera starting positions for every player (0) or sync them all to oPC's camera position (1) +void GestaltCameraSmooth(float fDelay, float fdDirection1, float fdRange1, float fdPitch1, float fdDirection2, float fdRange2, float fdPitch2, float fTime, float fFrameRate, object oPC, int iParty = 0, int iSync = 1); + +// Just like GestaltCameraSmooth, but with the added advantage of being able to move the point the camera is centered on up and down + // STARTING TIME - + // fDelay how many seconds to wait before starting the movement + // MOVEMENT RATES AT START OF MOTION - + // fdDirection1 how fast the camera's compass direction should change by in degrees per second + // positive numbers produce an anti-clockwise movement, negative anti-clockwise + // fdRange1 how fast the camera's range should change in meters per second + // positive numbers move the camera away from the player, negative towards them + // fdPitch1 how fast the camera's pitch should change in degrees per second + // positive numbers tilt the camera down towards the ground, negative up towards vertical + // fdHeight1 how fast the camera's vertical height should change in meters per second + // positive numbers move the camera up, negative numbers move it down + // MOVEMENT RATES AT END OF MOTION - + // fdDirection2 how fast the camera's compass direction should change by in degrees per second + // positive numbers produce an anti-clockwise movement, negative anti-clockwise + // fdRange2 how fast the camera's range should change in meters per second + // positive numbers move the camera away from the player, negative towards them + // fdPitch2 how fast the camera's pitch should change in degrees per second + // positive numbers tilt the camera down towards the ground, negative up towards vertical + // fdHeight2 how fast the camera's vertical height should change in meters per second + // positive numbers move the camera up, negative numbers move it down + // TIME SETTINGS - + // fTime number of seconds it should take the camera to complete movement + // fFrameRate number of movements per second (governs how smooth the motion is) + // MISC SETTINGS - + // oPC the player whose camera you want to move + // iParty sets whether to move the camera of only oPC (0), all the players in oPC's party (1) or all the players on the server (2) + // iSync sets whether to use separate camera starting positions for every player (0) or sync them all to oPC's camera position (1) +void GestaltCameraCraneSmooth(float fDelay, float fdDirection1, float fdRange1, float fdPitch1, float fdHeight1, float fdDirection2, float fdRange2, float fdPitch2, float fdHeight2, float fTime, float fFrameRate, object oPC, int iParty = 0, int iSync = 1); + +// Sets where the camera will start when you next use GestaltCameraSmooth and GestaltCameraCrane - it has no effect on other functions +// NOTE GestaltCameraSmooth, GestaltCameraCrane, GestaltCameraCraneSmooth and GestaltCameraMove automatically store the current position of the camera after each step - +// GestaltCameraSetup should only be used at the start of a cutscene to set the initial position for your first GestaltCameraSmooth, +// or during a gap between camera movements if you want to set a new starting position midway through a cutscene + // STARTING TIME - + // fDelay how many seconds to wait before setting the starting position + // PLAYER - + // oPC the player whose camera you're going to be moving + // STARTING POSITION - + // fDirection the compass direction the camera should start from + // fRange the distance between the camera and the player it belongs to + // fPitch the vertical tilt + // fHeight how far above the character the camera should be centered (only needed for Crane shots) +void GestaltCameraSetup(float fDelay, object oPC, float fDirection, float fRange, float fPitch, float fHeight = 0.0); + +// Turns the camera and/or player between two objects +// NOTE that this will only work properly if the player and target objects are stationary while the function is active + // STARTING TIME - + // fDelay how many seconds to wait before starting the movement + // STARTING CONDITIONS - + // oStart object to face at start of movement + // fRange initial distance between player and camera + // fPitch initial pitch (vertical tilt) + // FINAL CONDITIONS - + // oEnd object to finish movement facing + // fRange2 finishing distance + // fPitch2 finishing tilt + // TIME SETTINGS - + // fTime number of seconds it takes camera to complete movement + // fFrameRate number of movements per second (governs how smooth the motion is) + // MISC SETTINGS - + // oPC the player whose camera you want to move + // iClockwise set to 1 if you want the camera to rotate clockwise, 0 for anti-clockwise, or 2 for auto-select + // iFace controls whether the camera (0), the character (2) or both (1) turn + // iParty sets whether to move the camera of only oPC (0), all the players in oPC's party (1) or all the players on the server (2) +void GestaltCameraFace(float fDelay, object oStart, float fRange, float fPitch, object oEnd, float fRange2, float fPitch2, float fTime, float fFrameRate, object oPC, int iClockwise = 0, int iFace = 0, int iParty = 0); + +// Tracks a moving object, turning the player's camera so that it always faces towards it + // STARTING TIME - + // fDelay how many seconds to wait before starting the movement + // TARGET - + // oTrack object to track the movement of + // STARTING CONDITIONS - + // fRange initial distance between player and camera + // fPitch initial pitch (vertical tilt) + // FINAL CONDITIONS - + // fRange2 finishing distance + // fPitch2 finishing tilt + // TIME SETTINGS - + // fTime how long the camera will track the object for + // fFrameRate number of movements per second (governs how smooth the motion is) + // MISC SETTINGS - + // oPC the PC you want to apply the camera movement to + // iFace controls whether the camera (0), the character (2) or both (1) turn + // iParty sets whether to move the camera of only oPC (0), all the players in oPC's party (1) or all the players on the server (2) +void GestaltCameraTrack(float fDelay, object oTrack, float fRange, float fPitch, float fRange2, float fPitch2, float fTime, float fFrameRate, object oPC, int iFace = 0, int iParty = 0); + +// Fades the screen of the specified player(s) to and/or from black + // fDelay how many seconds to wait before fading the screen + // oPC the player you want to fade the screen of + // iFade sets what kind of fade you want - + // if iFade is FADE_IN, the screen will start black and then become visible + // if iFade is FADE_OUT, the screen will start visible and then become black + // if iFade is FADE_CROSS, the screen will start visible, fade to black and then become visible again + // fSpeed the speed at which the fade(s) should take place + // NOTE - always use the FADE_SPEED_* constants for this unless you really know what you're doing! + // fDuration how many seconds the fade should last + // if iFade is FADE_IN, this is how long the screen will remain black before the fade begins + // if iFade is FADE_OUT, this is the time between the fade out beginning and the screen being cleared again - leave at 0.0 to keep the screen black + // if iFade is FADE_CROSS, this is the time between the fade out beginning and the fade in beginning + // iParty sets whether to fade the screen of only oPC (0), all the players in oPC's party (1) or all the players on the server (2) +void GestaltCameraFade(float fDelay, object oPC, int iFade, float fSpeed = FADE_SPEED_MEDIUM, float fDuration = 0.0, int iParty = 0); + +// Fades the screen of the specified player(s) to and/or from black + // fDelay how many seconds to wait before adding the command to oActor's action queue + // oActor the actor whose action queue you want to place this command in (oActor doesn't have to be the same as oPC) + // oPC the player you want to fade the screen of + // iFade sets what kind of fade you want - + // if iFade is FADE_IN, the screen will start black and then become visible + // if iFade is FADE_OUT, the screen will start visible and then become black + // if iFade is FADE_CROSS, the screen will start visible, fade to black and then become visible again + // fSpeed the speed at which the fade(s) should take place + // NOTE - always use the FADE_SPEED_* constants for this unless you really know what you're doing! + // fDuration how many seconds the fade should last + // if iFade is FADE_IN, this is how long the screen will remain black before the fade begins + // if iFade is FADE_OUT, this is the time between the fade out beginning and the screen being cleared again - leave at 0.0 to keep the screen black + // if iFade is FADE_CROSS, this is the time between the fade out beginning and the fade in beginning + // iParty sets whether to fade the screen of only oPC (0), all the players in oPC's party (1) or all the players on the server (2) +void GestaltActionCameraFade(float fDelay, object oActor, object oPC, int iFade, float fSpeed = FADE_SPEED_MEDIUM, float fDuration = 0.0, int iParty = 0); + +// Gives the illusion of the camera being fixed in one place and rotating to face the player as they move + // oPC the PC you want to apply the camera movement to + // fFrameRate number of movements per second (governs how smooth the motion is) +// +// To setup a fixed camera position, place a waypoint with a unique tag in your area + // Set the camera's tag as a LocalString "sGestaltFixedCamera" on the PC to let them know to use that camera + // Set a LocalFloat "fGestaltFixedCamera" on the PC to set the camera's vertical position + // Set "sGestaltFixedCamera" to "" to pause the tracking, or to "STOP" to end the tracking +void GestaltFixedCamera(object oPC, float fFrameRate = 50.0); + + + + + + + + +// General functions + +void GestaltDebugOutput(object oPC) +{ + // Get the current position of oPC's camera + float fDirection = GetLocalFloat(oPC,"fCameraDirection"); + float fRange = GetLocalFloat(oPC,"fCameraRange"); + float fPitch = GetLocalFloat(oPC,"fCameraPitch"); + + // Fire a message to say where the camera is + AssignCommand(oPC,SpeakString(FloatToString(fDirection) + ", " + FloatToString(fRange) + ", " + FloatToString(fPitch))); +} + + + +void GestaltStartCutscene(object oPC, string sName, int bCamera = TRUE, int bClear = TRUE, int bClearFX = TRUE, int bResetSpeed = TRUE, int bStoreCam = TRUE, int iParty = 0) +{ + object oParty; + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + int iCancel = GetLocalInt(GetModule(),sName) + 1; + + SetLocalString(GetModule(),"cutscene",sName); + SetLocalInt(GetModule(),sName + "time",iCancel); + + while (GetIsObjectValid(oParty)) + { + SetCutsceneMode(oParty,TRUE); + SetLocalString(oParty,"cutscene",sName); + SetLocalInt(oParty,sName + "time",iCancel); + + if (bCamera) { GestaltStopCameraMoves(oPC); } + if (bClear) { AssignCommand(oParty,ClearAllActions(TRUE)); } + if (bClearFX) { GestaltClearFX(oPC); } + if (bResetSpeed) { GestaltResetSpeed(oPC); } + if (bStoreCam) { AssignCommand(oParty,StoreCameraFacing()); } + if (bStoreCam == 2) { DelayCommand(5.0,AssignCommand(oParty,StoreCameraFacing())); } + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +int NW_FLAG_AMBIENT_ANIMATIONS = 0x00080000; +int NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS = 0x00200000; +int NW_FLAG_AMBIENT_ANIMATIONS_AVIAN = 0x00800000; + + + +void SetSpawnCondition(object oActor, int nCondition, int bValid) +{ + int nPlot = GetLocalInt(oActor,"NW_GENERIC_MASTER"); + + if(bValid == TRUE) + { + nPlot = nPlot | nCondition; + SetLocalInt(oActor,"NW_GENERIC_MASTER",nPlot); + } + + else if (bValid == FALSE) + { + nPlot = nPlot & ~nCondition; + SetLocalInt(oActor,"NW_GENERIC_MASTER",nPlot); + } +} + + + +int GetSpawnCondition(object oActor, int nCondition) +{ + int nPlot = GetLocalInt(oActor,"NW_GENERIC_MASTER"); + if(nPlot & nCondition) + { return TRUE; } + return FALSE; +} + + + +void GestaltRegisterActor(string sName, object oActor, string sActor = "") +{ + if (sActor != "") { oActor = GetObjectByTag(sActor); } + if (sActor == "") { sActor = GetTag(oActor); } + + string sCancel = IntToString(GetLocalInt(GetModule(),sName + "time")); + + GestaltResetSpeed(oActor); + SetCutsceneCameraMoveRate(oActor,1.0); + + if (GetLocalInt(GetModule(),sName + sCancel + sActor + "registered") > 0) + { return; } + + if (GetSpawnCondition(oActor,NW_FLAG_AMBIENT_ANIMATIONS)) + { + SetSpawnCondition(oActor,NW_FLAG_AMBIENT_ANIMATIONS,FALSE); + SetLocalInt(oActor,"gcss_ambient",1); + } + + if (GetSpawnCondition(oActor,NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS)) + { + SetSpawnCondition(oActor,NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS,FALSE); + SetLocalInt(oActor,"gcss_immobile",1); + } + + if (GetSpawnCondition(oActor,NW_FLAG_AMBIENT_ANIMATIONS_AVIAN)) + { + SetSpawnCondition(oActor,NW_FLAG_AMBIENT_ANIMATIONS_AVIAN,FALSE); + SetLocalInt(oActor,"gcss_avian",1); + } + + int iActors = GetLocalInt(GetModule(),sName + sCancel + "actorsregistered") + 1; + SetLocalObject(GetModule(),sName + sCancel + "actor" + IntToString(iActors),oActor); + SetLocalInt(GetModule(),sName + sCancel + "actorsregistered",iActors); + SetLocalInt(GetModule(),sName + sCancel + sActor + "registered",1); +} + + + +void GestaltClearActorSpeeds(string sName) +{ + string sCancel = IntToString(GetLocalInt(GetModule(),sName + "time")); + + int iCount = 1; + int iActors = GetLocalInt(GetModule(),sName + sCancel + "actorsmodified"); + object oActor; + + while (iCount <= iActors) + { + oActor = GetLocalObject(GetModule(),sName + sCancel + "actorspeedmodified" + IntToString(iCount)); + GestaltResetSpeed(oActor); + iCount++; + } +} + + + +void GestaltClearActors(string sName) +{ + string sCancel = IntToString(GetLocalInt(GetModule(),sName + "time")); + + int iCount = 1; + int iActors = GetLocalInt(GetModule(),sName + sCancel + "actorsregistered"); + object oActor = GetLocalObject(GetModule(),sName + sCancel + "actor" + IntToString(iCount)); + object oWP; + + while (iCount <= iActors) + { + AssignCommand(oActor,ClearAllActions(TRUE)); + + if (GetLocalInt(oActor,"gcss_ambient") == 1) + { SetSpawnCondition(oActor,NW_FLAG_AMBIENT_ANIMATIONS,TRUE); } + + if (GetLocalInt(oActor,"gcss_immobile") == 1) + { SetSpawnCondition(oActor,NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS,TRUE); } + + if (GetLocalInt(oActor,"gcss_avian") == 1) + { SetSpawnCondition(oActor,NW_FLAG_AMBIENT_ANIMATIONS_AVIAN,TRUE); } + + oWP = GetWaypointByTag(sName + GetTag(oActor)); + + if (GetIsObjectValid(oWP) && GetIsObjectValid(oActor) && GetDistanceBetween(oWP,oActor) > 1.0) + { + DelayCommand(0.1,AssignCommand(oActor,ActionJumpToObject(oWP))); + DelayCommand(0.1,AssignCommand(oActor,ActionDoCommand(SetFacing(GetFacing(oWP))))); + } + + iCount++; + oActor = GetLocalObject(GetModule(),sName + sCancel + "actor" + IntToString(iCount)); + } +} + + + +void GestaltDoStopCutscene(string sName, int iCancel, object oPC, string sDestination = "", int bMode = TRUE, int bCamera = TRUE, int bClear = TRUE, int bClearFX = TRUE, int bResetSpeed = TRUE, int bClearActors = TRUE, int iParty = 0) +{ + // Check cutscene hasn't been stopped already + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + // Otherwise stop cutscene + if (sName != "") + { SetLocalInt(GetModule(),sName,iCancel); } + + object oParty; + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + if (bClearActors) { GestaltClearActors(sName); } + + GestaltClearActorSpeeds(sName); + + while (GetIsObjectValid(oParty)) + { + // End cutscene mode and clear selected player + if (bMode) { SetCutsceneMode(oParty,FALSE); } + if (bCamera) { GestaltStopCameraMoves(oParty); } + if (bClear) { AssignCommand(oParty,ClearAllActions(TRUE)); } + if (bClearFX) { GestaltClearFX(oParty); } + if (bResetSpeed) { GestaltResetSpeed(oParty); } + if (sDestination != "") { AssignCommand(oParty,JumpToObject(GetWaypointByTag(sDestination))); } + + SetCameraHeight(oParty,0.0); + DeleteLocalString(oParty,"cutscene"); + DeleteLocalInt(oParty,sName + "time"); + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltStopCutscene(float fDelay, object oPC, string sDestination = "", int bMode = TRUE, int bCamera = TRUE, int bClear = TRUE, int bClearFX = TRUE, int bResetSpeed = TRUE, int bClearActors = TRUE, int iParty = 0) +{ + string sName = GetLocalString(oPC,"cutscene"); + int iCancel = GetLocalInt(oPC,sName + "time"); + DelayCommand(fDelay,GestaltDoStopCutscene(sName,iCancel,oPC,sDestination,bMode,bCamera,bClear,bClearFX,bResetSpeed,bClearActors,iParty)); +} + + + +void GestaltDoClearAssociate(object oAssociate, int iMethod, object oDestination) +{ + AssignCommand(oAssociate,ClearAllActions(TRUE)); + + if (iMethod == 0) { AssignCommand(oAssociate,JumpToObject(oDestination)); } + + else if (iMethod == 1) + { + ApplyEffectToObject(PERMANENT,EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY),oAssociate); + ApplyEffectToObject(PERMANENT,EffectCutsceneGhost(),oAssociate); + } + + else if (iMethod == 2) + { + AssignCommand(oAssociate,SetIsDestroyable(TRUE)); + DestroyObject(oAssociate); + } + + DelayCommand(0.1,ApplyEffectToObject(PERMANENT,EffectCutsceneParalyze(),oAssociate)); + DelayCommand(0.1,SetCommandable(FALSE,oAssociate)); +} + + + +void GestaltDoClearAssociates(string sName, int iCancel, object oPC, int iAssociates = 63, int iMethod = 0, object oDestination = OBJECT_INVALID, string sDestination = "") +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sDestination != "") + { oDestination = GetWaypointByTag(sDestination); } + + object oAssociate; + + // Check how many henchman may be present + int iHenchmen = GetMaxHenchmen(); + int i; + + if (iAssociates >= 32) + { + i = 1; + while (i <= iHenchmen) + { + oAssociate = GetAssociate(1,oPC,i); + + if (GetIsObjectValid(oAssociate)) + { + int iCount = 1; + object oSecondary; + + while (iCount <= 5) + { + oSecondary = GetAssociate(iCount,oAssociate); + GestaltDoClearAssociate(oSecondary,iMethod,oDestination); + iCount++; + } + } + + i++; + } + + iAssociates -= 32; + } + + if (iAssociates >= 16) + { + oAssociate = GetAssociate(5,oPC); + GestaltDoClearAssociate(oAssociate,iMethod,oDestination); + iAssociates -= 16; + } + + if (iAssociates >= 8) + { + oAssociate = GetAssociate(4,oPC); + GestaltDoClearAssociate(oAssociate,iMethod,oDestination); + iAssociates -= 8; + } + + if (iAssociates >= 4) + { + oAssociate = GetAssociate(3,oPC); + GestaltDoClearAssociate(oAssociate,iMethod,oDestination); + iAssociates -= 4; + } + + if (iAssociates >= 2) + { + oAssociate = GetAssociate(2,oPC); + GestaltDoClearAssociate(oAssociate,iMethod,oDestination); + iAssociates -= 2; + } + + if (iAssociates >= 1) + { + i = 1; + while (i <= iHenchmen) + { + oAssociate = GetAssociate(1,oPC,i); + GestaltDoClearAssociate(oAssociate,iMethod,oDestination); + i++; + } + iAssociates -= 1; + } +} + + + +void GestaltClearAssociates(float fDelay, object oPC, int iAssociates = 63, int iMethod = 0, object oDestination = OBJECT_INVALID, string sDestination = "", int iParty = 0) +{ + object oParty; + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + DelayCommand(fDelay,GestaltDoClearAssociates(sName,iCancel,oParty,iAssociates,iMethod,oDestination,sDestination)); + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltDoReturnAssociate(object oAssociate, object oDestination, int iMethod) +{ + SetCommandable(TRUE,oAssociate); + GestaltResetSpeed(oAssociate); + if (iMethod == 1) { GestaltClearFX(oAssociate); } + DelayCommand(0.1,AssignCommand(oAssociate,JumpToObject(oDestination))); +} + + + +void GestaltDoReturnAssociates(string sName, int iCancel, object oPC, int iAssociates, int iMethod, object oDestination, string sDestination) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sDestination != "") + { oDestination = GetWaypointByTag(sDestination); } + + if (!GetIsObjectValid(oDestination)) + { oDestination = oPC; } + + object oAssociate; + + // Check how many henchman may be present + int iHenchmen = GetMaxHenchmen(); + int i; + + if (iAssociates >= 32) + { + i = 1; + while (i <= iHenchmen) + { + oAssociate = GetAssociate(1,oPC,i); + + if (GetIsObjectValid(oAssociate)) + { + int iCount = 1; + object oSecondary; + while (iCount <= 5) + { + oSecondary = GetAssociate(iCount,oAssociate); + GestaltDoReturnAssociate(oSecondary,oAssociate,iMethod); + iCount++; + } + } + + i++; + } + iAssociates -= 32; + } + + if (iAssociates >= 16) + { + oAssociate = GetAssociate(5,oPC); + GestaltDoReturnAssociate(oAssociate,oDestination,iMethod); + iAssociates -= 16; + } + + if (iAssociates >= 8) + { + oAssociate = GetAssociate(4,oPC); + GestaltDoReturnAssociate(oAssociate,oDestination,iMethod); + iAssociates -= 8; + } + + if (iAssociates >= 4) + { + oAssociate = GetAssociate(3,oPC); + GestaltDoReturnAssociate(oAssociate,oDestination,iMethod); + iAssociates -= 4; + } + + if (iAssociates >= 2) + { + oAssociate = GetAssociate(2,oPC); + GestaltDoReturnAssociate(oAssociate,oDestination,iMethod); + iAssociates -= 2; + } + + if (iAssociates >= 1) + { + i = 1; + while (i <= iHenchmen) + { + oAssociate = GetAssociate(1,oPC,i); + GestaltDoReturnAssociate(oAssociate,oDestination,iMethod); + i++; + } + iAssociates -= 1; + } +} + + + +void GestaltReturnAssociates(float fDelay, object oPC, int iAssociates = 63, int iMethod = 0, object oDestination = OBJECT_INVALID, string sDestination = "", int iParty = 0) +{ + object oParty; + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + DelayCommand(fDelay,GestaltDoReturnAssociates(sName,iCancel,oParty,iAssociates,iMethod,oDestination,sDestination)); + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + + + + +// Action functions + +float GestaltMonkSpeed(object oActor) +{ + int iClass = GetLevelByClass(CLASS_TYPE_MONK,oActor); + + if (iClass >= 18) { return 1.50; } + if (iClass >= 15) { return 1.45; } + if (iClass >= 12) { return 1.40; } + if (iClass >= 9) { return 1.30; } + if (iClass >= 6) { return 1.20; } + if (iClass >= 3) { return 1.10; } + else { return 1.00; } +} + + + +float GestaltGetSpeed(object oActor,int iRun) +{ + float fSpeed = 0.0; + int iRate = GetMovementRate(oActor); + + switch(iRate) + { + case 0: fSpeed = 2.00; break; // PCs + case 1: fSpeed = 0.00; break; // Immobile + case 2: fSpeed = 0.75; break; // Very Slow + case 3: fSpeed = 1.25; break; // Slow + case 4: fSpeed = 1.75; break; // Normal + case 5: fSpeed = 2.25; break; // Fast + case 6: fSpeed = 2.75; break; // Very Fast + case 7: fSpeed = 5.50; break; // DM Fast + } + + if (iRun == TRUE) { fSpeed = fSpeed * 2; } +// if (GetHasFeat(FEAT_BARBARIAN_ENDURANCE,oActor)) { fSpeed = fSpeed * 1.1; } +// if (GetHasFeat(FEAT_MONK_ENDURANCE,oActor)) { fSpeed = fSpeed * GestaltMonkSpeed(oActor); } + +// AssignCommand(oActor,SpeakString(FloatToString(fSpeed),TALKVOLUME_SHOUT)); // DEBUG LINE + + return fSpeed; +} + + + +void GestaltClearFX(object oActor) +{ + StopFade(oActor); + + effect eFect = GetFirstEffect(oActor); + int iType = GetEffectType(eFect); + while (GetIsEffectValid(eFect)) + { + if (iType == EFFECT_TYPE_IMPROVEDINVISIBILITY + || iType == EFFECT_TYPE_CUTSCENEGHOST + || iType == EFFECT_TYPE_VISUALEFFECT + || iType == EFFECT_TYPE_INVISIBILITY + || iType == EFFECT_TYPE_SANCTUARY + || iType == EFFECT_TYPE_POLYMORPH + || iType == EFFECT_TYPE_BLINDNESS + || iType == EFFECT_TYPE_ETHEREAL + || iType == EFFECT_TYPE_DARKNESS) + { RemoveEffect(oActor,eFect); } + eFect = GetNextEffect(oActor); + iType = GetEffectType(eFect); + } +} + + + +void GestaltResetSpeed(object oActor) +{ + effect eEffect = GetFirstEffect(oActor); + int iType = GetEffectType(eEffect); + while (iType != EFFECT_TYPE_INVALIDEFFECT) + { + if (iType == EFFECT_TYPE_MOVEMENT_SPEED_DECREASE + || iType == EFFECT_TYPE_MOVEMENT_SPEED_INCREASE + || iType == EFFECT_TYPE_CUTSCENE_PARALYZE + || iType == EFFECT_TYPE_FRIGHTENED + || iType == EFFECT_TYPE_DOMINATED + || iType == EFFECT_TYPE_ENTANGLE + || iType == EFFECT_TYPE_CONFUSED + || iType == EFFECT_TYPE_PARALYZE + || iType == EFFECT_TYPE_TIMESTOP + || iType == EFFECT_TYPE_STUNNED + || iType == EFFECT_TYPE_PETRIFY + || iType == EFFECT_TYPE_DAZED + || iType == EFFECT_TYPE_SLEEP) + { RemoveEffect(oActor,eEffect); } + eEffect = GetNextEffect(oActor); + iType = GetEffectType(eEffect); + } +} + + + +void GestaltDoSetSpeed(string sName, int iCancel, object oActor, string sActor, float fTime, float fDistance, int iRun, float fStops = 0.0) +{ + if (fTime == 0.0) { return; } + + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + float fActualSpeed = GestaltGetSpeed(oActor,iRun); + float fTargetSpeed = fDistance / fTime; + + if (fActualSpeed == fTargetSpeed) { return; } + + float fPercent = fTargetSpeed / fActualSpeed; + + if (fPercent < 0.1) { fPercent = 0.1; } + if (fPercent > 2.0) { fPercent = 2.0; } + + if (!GetIsPC(oActor)) + { + GestaltResetSpeed(oActor); + + int iPercent; + + string sRecord = sName + IntToString(iCancel); + int iCount = GetLocalInt(GetModule(),sRecord + "actorsmodified") + 1; + SetLocalInt(GetModule(),sRecord + "actorsmodified",iCount); + SetLocalObject(GetModule(),sRecord + "actorspeedmodified" + IntToString(iCount),oActor); + + if (fActualSpeed < fTargetSpeed) + { + fPercent = 100 * ((fTargetSpeed - fActualSpeed) / fTargetSpeed); + iPercent = FloatToInt(fPercent); + // AssignCommand(oActor,SpeakString("Speed increase " + IntToString(iPercent),TALKVOLUME_SHOUT)); // DEBUG LINE + ApplyEffectToObject(DURATION_TYPE_PERMANENT,EffectMovementSpeedIncrease(iPercent),oActor); + } + + else + { + fPercent = 100 * ((fActualSpeed - fTargetSpeed) / fActualSpeed); + iPercent = FloatToInt(fPercent); + // AssignCommand(oActor,SpeakString("Speed decrease " + IntToString(iPercent),TALKVOLUME_SHOUT)); // DEBUG LINE + ApplyEffectToObject(DURATION_TYPE_PERMANENT,EffectMovementSpeedDecrease(iPercent),oActor); + } + } + + else + { + SetCutsceneCameraMoveRate(oActor,fPercent); + } +} + + + +void GestaltTagSetSpeed(float fDelay, string sActor, float fTime, float fDistance, int iRun) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoSetSpeed(sName,iCancel,OBJECT_INVALID,sActor,fTime,fDistance,iRun)); +} + + + +void GestaltSetSpeed(float fDelay, object oActor, float fTime, float fDistance, int iRun) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoSetSpeed(sName,iCancel,oActor,"",fTime,fDistance,iRun)); +} + + + +void GestaltDoInvisibility(string sName, int iCancel, object oActor, string sActor, float fTime) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + if (fTime > 0.0) + { + ApplyEffectToObject(TEMPORARY,EffectCutsceneGhost(),oActor,fTime); + ApplyEffectToObject(TEMPORARY,EffectEthereal(),oActor,fTime); + ApplyEffectToObject(TEMPORARY,EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY),oActor,fTime); + } + + else + { + ApplyEffectToObject(PERMANENT,EffectCutsceneGhost(),oActor); + ApplyEffectToObject(PERMANENT,EffectEthereal(),oActor); + ApplyEffectToObject(PERMANENT,EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY),oActor); + } +} + + + +void GestaltInvisibility(float fDelay, object oActor, float fTime = 0.0, string sActor = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoInvisibility(sName,iCancel,oActor,sActor,fTime)); +} + + + +void GestaltDoMove(string sName, int iCancel, object oActor, string sActor, object oDestination, int iRun, float fRange, float fTime, string sDestination, int bTowards) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + if (sDestination != "") + { oDestination = GetObjectByTag(sDestination); } + + if (fTime > 0.0) + { AssignCommand(oActor,ActionDoCommand(GestaltDoSetSpeed(sName,iCancel,oActor,"",fTime,GetDistanceBetween(oActor,oDestination),iRun))); } + + if (!bTowards) { AssignCommand(oActor,ActionMoveAwayFromObject(oDestination,iRun,fRange)); } + else if (fRange > 0.0) { AssignCommand(oActor,ActionMoveToObject(oDestination,iRun,fRange)); } + else { AssignCommand(oActor,ActionMoveToLocation(GetLocation(oDestination),iRun)); } +} + + + +void GestaltTagActionMove(float fDelay, string sActor, object oDestination, int iRun = FALSE, float fRange = 0.0, float fTime = 0.0, string sDestination = "", int bTowards = TRUE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoMove(sName,iCancel,OBJECT_INVALID,sActor,oDestination,iRun,fRange,fTime,sDestination,bTowards)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltActionMove(float fDelay, object oActor, object oDestination, int iRun = FALSE, float fRange = 0.0, float fTime = 0.0, string sDestination = "", int bTowards = TRUE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoMove(sName,iCancel,oActor,"",oDestination,iRun,fRange,fTime,sDestination,bTowards)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoJump(string sName, int iCancel, object oActor, string sActor, object oTarget, string sTarget, int bAction = FALSE) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + if (sTarget != "") + { oTarget = GetObjectByTag(sTarget); } + + if (bAction) { AssignCommand(oActor,ActionJumpToObject(oTarget,FALSE)); } + else { AssignCommand(oActor,JumpToObject(oTarget,FALSE)); } +} + + + +void GestaltTagActionJump(float fDelay, string sActor, object oTarget, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoJump(sName,iCancel,OBJECT_INVALID,sActor,oTarget,sTarget,TRUE)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltTagJump(float fDelay, string sActor, object oTarget, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoJump(sName,iCancel,OBJECT_INVALID,sActor,oTarget,sTarget)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltActionJump(float fDelay, object oActor, object oTarget, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoJump(sName,iCancel,oActor,"",oTarget,sTarget,TRUE)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltJump(float fDelay, object oActor, object oTarget, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoJump(sName,iCancel,oActor,"",oTarget,sTarget)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoAnimate(string sName, int iCancel, object oActor, string sActor, int iAnim, float fDuration = 0.0, float fSpeed = 1.0, int bAction = FALSE) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + if (bAction) { AssignCommand(oActor,ActionPlayAnimation(iAnim,fSpeed,fDuration)); } + else { AssignCommand(oActor,PlayAnimation(iAnim,fSpeed,fDuration)); } +} + + + +void GestaltTagActionAnimate(float fDelay, string sActor, int iAnim, float fDuration = 0.0, float fSpeed = 1.0) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoAnimate(sName,iCancel,OBJECT_INVALID,sActor,iAnim,fDuration,fSpeed,TRUE)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltTagAnimate(float fDelay, string sActor, int iAnim, float fDuration = 0.0, float fSpeed = 1.0) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoAnimate(sName,iCancel,OBJECT_INVALID,sActor,iAnim,fDuration,fSpeed)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltActionAnimate(float fDelay, object oActor, int iAnim, float fDuration = 0.0, float fSpeed = 1.0) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoAnimate(sName,iCancel,oActor,"",iAnim,fDuration,fSpeed,TRUE)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltAnimate(float fDelay, object oActor, int iAnim, float fDuration = 0.0, float fSpeed = 1.0) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoAnimate(sName,iCancel,oActor,"",iAnim,fDuration,fSpeed)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoSpeak(string sName, int iCancel, object oActor, string sActor, string sLine, int iAnimation = ANIMATION_NONE, float fDuration = 0.0, float fSpeed = 1.0, int bAction = FALSE) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + if (bAction) + { + AssignCommand(oActor,ActionSpeakString(sLine)); + if (iAnimation != ANIMATION_NONE) + { AssignCommand(oActor,ActionPlayAnimation(iAnimation,fSpeed,fDuration)); } + } + + else + { + AssignCommand(oActor,SpeakString(sLine)); + if (iAnimation != ANIMATION_NONE) + { AssignCommand(oActor,PlayAnimation(iAnimation,fSpeed,fDuration)); } + } +} + + + +void GestaltTagActionSpeak(float fDelay, string sActor, string sLine, int iAnimation = ANIMATION_NONE, float fDuration = 0.0, float fSpeed = 1.0) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoSpeak(sName,iCancel,OBJECT_INVALID,sActor,sLine,iAnimation,fDuration,fSpeed,TRUE)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltTagSpeak(float fDelay, string sActor, string sLine, int iAnimation = ANIMATION_NONE, float fDuration = 0.0, float fSpeed = 1.0) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoSpeak(sName,iCancel,OBJECT_INVALID,sActor,sLine,iAnimation,fDuration,fSpeed)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltActionSpeak(float fDelay, object oActor, string sLine, int iAnimation = ANIMATION_NONE, float fDuration = 0.0, float fSpeed = 1.0) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoSpeak(sName,iCancel,oActor,"",sLine,iAnimation,fDuration,fSpeed,TRUE)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltSpeak(float fDelay, object oActor, string sLine, int iAnimation = ANIMATION_NONE, float fDuration = 0.0, float fSpeed = 1.0) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoSpeak(sName,iCancel,oActor,"",sLine,iAnimation,fDuration,fSpeed)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoConversation(string sName, int iCancel, object oActor, string sActor, object oTarget, string sConv = "", string sTarget = "", int bGreet = TRUE) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + if (sTarget != "") + { oTarget = GetObjectByTag(sTarget); } + + AssignCommand(oActor,ActionStartConversation(oTarget,sConv,FALSE,bGreet)); +} + + + +void GestaltActionConversation(float fDelay, object oActor, object oTarget, string sConv = "", string sTarget = "", int bGreet = TRUE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoConversation(sName,iCancel,oActor,"",oTarget,sConv,sTarget,bGreet)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltTagActionConversation(float fDelay, string sActor, object oTarget, string sConv = "", string sTarget = "", int bGreet = TRUE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoConversation(sName,iCancel,OBJECT_INVALID,sActor,oTarget,sConv,sTarget,bGreet)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltDoFace(string sName, int iCancel, object oActor, string sActor, object oTarget, int iFace, float fFace, int bAction) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + if (iFace == 0) + { + if (bAction) { AssignCommand(oActor,ActionDoCommand(SetFacing(fFace))); } + else { AssignCommand(oActor,SetFacing(fFace)); } + } + + else if (iFace == 1) + { + if (bAction) { AssignCommand(oActor,ActionDoCommand(SetFacing(GetFacing(oTarget)))); } + else { AssignCommand(oActor,SetFacing(GetFacing(oTarget))); } + } + + else + { + if (bAction) { AssignCommand(oActor,ActionDoCommand(SetFacingPoint(GetPosition(oTarget)))); } + else { AssignCommand(oActor,SetFacingPoint(GetPosition(oTarget))); } + } +} + + + +void GestaltTagActionFace(float fDelay, string sActor, float fFace, int iFace = 0, object oTarget = OBJECT_INVALID) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoFace(sName,iCancel,OBJECT_INVALID,sActor,oTarget,iFace,fFace,TRUE)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltTagFace(float fDelay, string sActor, float fFace, int iFace = 0, object oTarget = OBJECT_INVALID) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoFace(sName,iCancel,OBJECT_INVALID,sActor,oTarget,iFace,fFace,FALSE)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltActionFace(float fDelay, object oActor, float fFace, int iFace = 0, object oTarget = OBJECT_INVALID) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoFace(sName,iCancel,oActor,"",oTarget,iFace,fFace,TRUE)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltFace(float fDelay, object oActor, float fFace, int iFace = 0, object oTarget = OBJECT_INVALID) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoFace(sName,iCancel,oActor,"",oTarget,iFace,fFace,FALSE)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoEquip(string sName, int iCancel, object oActor, string sActor, int iSlot, object oItem, string sItem) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + if (sItem != "") + { oItem = GetItemPossessedBy(oActor,sItem); } + + if (iSlot == 999) { AssignCommand(oActor,ActionEquipMostDamagingMelee()); } + else if (iSlot == 998) { AssignCommand(oActor,ActionEquipMostDamagingRanged()); } + else if (iSlot == 997) { AssignCommand(oActor,ActionEquipMostEffectiveArmor()); } + else { AssignCommand(oActor,ActionEquipItem(oItem,iSlot)); } +} + + + +void GestaltTagActionEquip(float fDelay, string sActor, int iSlot = INVENTORY_SLOT_BEST_MELEE, object oItem = OBJECT_INVALID, string sItem = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoEquip(sName,iCancel,OBJECT_INVALID,sActor,iSlot,oItem,sItem)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltActionEquip(float fDelay, object oActor, int iSlot = INVENTORY_SLOT_BEST_MELEE, object oItem = OBJECT_INVALID, string sItem = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoEquip(sName,iCancel,oActor,"",iSlot,oItem,sItem)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoUnequip(string sName, int iCancel, object oActor, string sActor, int iSlot, object oItem, string sItem) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + if (sItem != "") + { oItem = GetItemPossessedBy(oActor,sItem); } + + if (iSlot != 996) + { oItem = GetItemInSlot(iSlot,oActor); } + + AssignCommand(oActor,ActionUnequipItem(oItem)); +} + + + +void GestaltTagActionUnequip(float fDelay, string sActor, int iSlot = INVENTORY_SLOT_NONE, object oItem = OBJECT_INVALID, string sItem = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoUnequip(sName,iCancel,OBJECT_INVALID,sActor,iSlot,oItem,sItem)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltActionUnequip(float fDelay, object oActor, int iSlot = INVENTORY_SLOT_NONE, object oItem = OBJECT_INVALID, string sItem = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoUnequip(sName,iCancel,oActor,"",iSlot,oItem,sItem)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoAttack(string sName, int iCancel, object oActor, string sActor, object oTarget, int bPassive, string sTarget) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + if (sTarget != "") + { oTarget = GetObjectByTag(sTarget); } + + AssignCommand(oActor,ActionAttack(oTarget,bPassive)); +} + + + +void GestaltTagActionAttack(float fDelay, string sActor, object oTarget, string sTarget = "", int bPassive = FALSE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoAttack(sName,iCancel,OBJECT_INVALID,sActor,oTarget,bPassive,sTarget)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltActionAttack(float fDelay, object oActor, object oTarget, string sTarget = "", int bPassive = FALSE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoAttack(sName,iCancel,oActor,"",oTarget,bPassive,sTarget)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoSpellCast(string sName, int iCancel, object oActor, string sActor, object oTarget, int iSpell, int bFake = FALSE, int iPath = PROJECTILE_PATH_TYPE_DEFAULT, string sTarget = "", int bCheat = TRUE, int bInstant = FALSE, int iLevel = 0, int iMeta = METAMAGIC_NONE) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + if (sTarget != "") + { oTarget = GetObjectByTag(sTarget); } + + if (bFake) { AssignCommand(oActor,ActionCastFakeSpellAtObject(iSpell,oTarget,iPath)); } + else { AssignCommand(oActor,ActionCastSpellAtObject(iSpell,oTarget,iMeta,bCheat,iLevel,iPath,bInstant)); } +} + + + +void GestaltActionSpellCast(float fDelay, object oActor, object oTarget, int iSpell, int bFake = FALSE, int iPath = PROJECTILE_PATH_TYPE_DEFAULT, string sTarget = "", int bCheat = TRUE, int bInstant = FALSE, int iLevel = 0, int iMeta = METAMAGIC_NONE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoSpellCast(sName,iCancel,oActor,"",oTarget,iSpell,bFake,iPath,sTarget,bCheat,bInstant,iLevel,iMeta)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltTagActionSpellCast(float fDelay, string sActor, object oTarget, int iSpell, int bFake = FALSE, int iPath = PROJECTILE_PATH_TYPE_DEFAULT, string sTarget = "", int bCheat = TRUE, int bInstant = FALSE, int iLevel = 0, int iMeta = METAMAGIC_NONE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoSpellCast(sName,iCancel,OBJECT_INVALID,sActor,oTarget,iSpell,bFake,iPath,sTarget,bCheat,bInstant,iLevel,iMeta)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltDoEffect(string sName, int iCancel, object oActor, string sActor, object oTarget, string sTarget, effect eFect, int iDuration = PERMANENT, float fDuration = 0.0, int bAction = FALSE) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") + { oActor = GetObjectByTag(sActor); } + + if (sTarget != "") + { oTarget = GetObjectByTag(sTarget); } + + if (bAction) { AssignCommand(oActor,ActionDoCommand(ApplyEffectToObject(iDuration,eFect,oTarget,fDuration))); } + else { ApplyEffectToObject(iDuration,eFect,oTarget,fDuration); } +} + + + +void GestaltApplyEffect(float fDelay, object oTarget, effect eFect, int iDuration = PERMANENT, float fDuration = 0.0, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoEffect(sName,iCancel,OBJECT_INVALID,"",oTarget,sTarget,eFect,iDuration,fDuration)); +} + + + +void GestaltActionEffect(float fDelay, object oActor, object oTarget, effect eFect, int iDuration = PERMANENT, float fDuration = 0.0, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoEffect(sName,iCancel,oActor,"",oTarget,sTarget,eFect,iDuration,fDuration,TRUE)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltTagActionEffect(float fDelay, string sActor, object oTarget, effect eFect, int iDuration = PERMANENT, float fDuration = 0.0, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoEffect(sName,iCancel,OBJECT_INVALID,sActor,oTarget,sTarget,eFect,iDuration,fDuration,TRUE)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void VoidCreateObject(int iType, string sRef, location lLoc, int iAnim, string sTag) +{ + CreateObject(iType,sRef,lLoc,iAnim,sTag); +} + + +void VoidCreateItemOnObject(string sRef, object oTarget, int iStack) +{ + CreateItemOnObject(sRef,oTarget,iStack); +} + + + +void GestaltDoCreate(string sName, int iCancel, object oActor, string sActor, object oTarget, string sTarget, int iType, string sRef, string sTag, int iAnim, int iStack, int bCreateOn, int bAction = FALSE) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") { oActor = GetObjectByTag(sActor); } + if (sTarget != "") { oTarget = GetObjectByTag(sTarget); } + + if (bCreateOn) + { + if (bAction) { AssignCommand(oActor,ActionDoCommand(VoidCreateItemOnObject(sRef,oTarget,iStack))); } + else { CreateItemOnObject(sRef,oTarget,iStack); } + } + + else + { + if (bAction) { AssignCommand(oActor,ActionDoCommand(VoidCreateObject(iType,sRef,GetLocation(oTarget),iAnim,sTag))); } + else { CreateObject(iType,sRef,GetLocation(oTarget),iAnim,sTag); } + } +} + + + +void GestaltActionCreate(float fDelay, object oActor, object oTarget, int iType, string sRef, string sTag = "", int iAnim = FALSE, int iStack = 0, int bCreateOn = FALSE, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoCreate(sName,iCancel,oActor,"",oTarget,sTarget,iType,sRef,sTag,iAnim,iStack,bCreateOn,TRUE)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltTagActionCreate(float fDelay, string sActor, object oTarget, int iType, string sRef, string sTag = "", int iAnim = FALSE, int iStack = 0, int bCreateOn = FALSE, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoCreate(sName,iCancel,OBJECT_INVALID,sActor,oTarget,sTarget,iType,sRef,sTag,iAnim,iStack,bCreateOn,TRUE)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltCreate(float fDelay, object oTarget, int iType, string sRef, string sTag = "", int iAnim = FALSE, int iStack = 0, int bCreateOn = FALSE, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoCreate(sName,iCancel,OBJECT_INVALID,"",oTarget,sTarget,iType,sRef,sTag,iAnim,iStack,bCreateOn)); +} + + + +void GestaltDoCopy(string sName, int iCancel, object oSource, object oTarget, string sTarget, string sTag, int bCreateOn) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sTarget != "") { oTarget = GetObjectByTag(sTarget); } + + if (bCreateOn) { CopyObject(oSource,GetLocation(oTarget),oTarget,sTag); } + else { CopyObject(oSource,GetLocation(oTarget),OBJECT_INVALID,sTag); } +} + + + +void GestaltCopy(float fDelay, object oSource, object oTarget, int bCreateOn = FALSE, string sTag = "", string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoCopy(sName,iCancel,oSource,oTarget,sTarget,sTag,bCreateOn)); +} + + + +void GestaltDoClone(string sName, int iCancel, object oPC, object oTarget, string sTarget, string sTag, int bInvisible) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sTarget != "") { oTarget = GetObjectByTag(sTarget); } + CopyObject(oPC,GetLocation(oTarget),OBJECT_INVALID,sTag); + if (bInvisible) { ApplyEffectToObject(PERMANENT,EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY),oPC); } +} + + + +void GestaltClonePC(float fDelay, object oPC, object oTarget, string sTag = "cloned_pc", string sTarget = "", int bInvisible = TRUE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoClone(sName,iCancel,oPC,oTarget,sTarget,sTag,bInvisible)); +} + + + +void GestaltDoPickUp(string sName, int iCancel, object oActor, string sActor, object oItem, string sItem) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") { oActor = GetObjectByTag(sActor); } + if (sItem != "") { oItem = GetNearestObjectByTag(sItem,oActor); } + + AssignCommand(oActor,ActionPickUpItem(oItem)); +} + + + +void GestaltTagActionPickUp(float fDelay, string sActor, object oItem, string sItem = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoPickUp(sName,iCancel,OBJECT_INVALID,sActor,oItem,sItem)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltActionPickUp(float fDelay, object oActor, object oItem, string sItem = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoPickUp(sName,iCancel,oActor,"",oItem,sItem)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoSit(string sName, int iCancel, object oActor, string sActor, object oChair, string sChair) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") { oActor = GetObjectByTag(sActor); } + if (sChair != "") { oChair = GetNearestObjectByTag(sChair,oActor); } + + AssignCommand(oActor,ActionSit(oChair)); +} + + + +void GestaltTagActionSit(float fDelay, string sActor, object oChair, string sChair = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoSit(sName,iCancel,OBJECT_INVALID,sActor,oChair,sChair)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltActionSit(float fDelay, object oActor, object oChair, string sChair = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoSit(sName,iCancel,oActor,"",oChair,sChair)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoPlaySound(string sName, int iCancel, object oActor, string sActor, string sSound, int bAction) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") { oActor = GetObjectByTag(sActor); } + if (bAction) { AssignCommand(oActor,ActionDoCommand(PlaySound(sSound))); } + else { AssignCommand(oActor,PlaySound(sSound)); } +} + + + +void GestaltPlaySound(float fDelay, object oActor, string sSound, string sActor = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoPlaySound(sName,iCancel,oActor,sActor,sSound,FALSE)); + + if (sActor != "") { GestaltRegisterActor(sName,OBJECT_INVALID,sActor); } + else if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltActionPlaySound(float fDelay, object oActor, string sSound, string sActor = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoPlaySound(sName,iCancel,oActor,sActor,sSound,TRUE)); + + if (sActor != "") { GestaltRegisterActor(sName,OBJECT_INVALID,sActor); } + else if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoSoundObject(string sName, int iCancel, object oSound, int bOn, float fDuration, int iVolume, object oPosition) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (bOn) { SoundObjectPlay(oSound); } + else { SoundObjectStop(oSound); } + + if (fDuration > 0.0) { DelayCommand(fDuration,GestaltDoSoundObject(sName,iCancel,oSound,!bOn,0.0,128,OBJECT_INVALID)); } + if (iVolume < 128) { SoundObjectSetVolume(oSound,iVolume); } + if (GetIsObjectValid(oPosition)) { SoundObjectSetPosition(oSound,GetPosition(oPosition)); } +} + + + +void GestaltSoundObject(float fDelay, object oSound, int bOn = TRUE, float fDuration = 0.0, int iVolume = 128, object oPosition = OBJECT_INVALID) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoSoundObject(sName,iCancel,oSound,bOn,fDuration,iVolume,oPosition)); +} + + + +void GestaltDoAmbientSound(string sName, int iCancel, object oArea, int bOn, float fDuration, int iVolume) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (bOn) { AmbientSoundPlay(oArea); } + else { AmbientSoundStop(oArea); } + + if (fDuration > 0.0) { DelayCommand(fDuration,GestaltDoAmbientSound(sName,iCancel,oArea,!bOn,0.0,128)); } + + if (iVolume < 101) + { + AmbientSoundSetDayVolume(oArea,iVolume); + AmbientSoundSetNightVolume(oArea,iVolume); + } +} + + + +void GestaltAmbientSound(float fDelay, object oArea, int bOn = TRUE, float fDuration = 0.0, int iVolume = 128) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoAmbientSound(sName,iCancel,oArea,bOn,fDuration,iVolume)); +} + + + +void GestaltDoMusic(string sName, int iCancel, object oArea, int bOn = TRUE, int iTrack = TRACK_CURRENT, float fDuration = 0.0) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (fDuration > 0.0) { DelayCommand(fDuration,GestaltDoMusic(sName,iCancel,oArea,!bOn,iTrack)); } + + if (GetLocalInt(oArea,"gcss_music_day") == 0) + { + SetLocalInt(oArea,"gcss_music_day",MusicBackgroundGetDayTrack(oArea)); + SetLocalInt(oArea,"gcss_music_night",MusicBackgroundGetNightTrack(oArea)); + } + + MusicBackgroundStop(oArea); + MusicBattleStop(oArea); + + if (!bOn) + { return; } + + if (iTrack == TRACK_CURRENT) + { MusicBackgroundPlay(oArea); } + + else if (iTrack == TRACK_ORIGINAL) + { + MusicBackgroundChangeDay(oArea,GetLocalInt(oArea,"gcss_music_day")); + MusicBackgroundChangeNight(oArea,GetLocalInt(oArea,"gcss_music_night")); + } + + else + { + MusicBackgroundChangeDay(oArea,iTrack); + MusicBackgroundChangeNight(oArea,iTrack); + } +} + + + +void GestaltPlayMusic(float fDelay, object oArea, int bOn = TRUE, int iTrack = TRACK_CURRENT, float fDuration = 0.0) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoMusic(sName,iCancel,oArea,bOn,iTrack,fDuration)); +} + + + +void GestaltDoDoor(string sName, int iCancel, object oActor, string sActor, object oDoor, int bLock, int bOpen) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") { oActor = GetObjectByTag(sActor); } + + if (bOpen) + { + if (bLock) { AssignCommand(oActor,ActionDoCommand(SetLocked(oDoor,FALSE))); } + AssignCommand(oActor,ActionOpenDoor(oDoor)); + } + + else + { + AssignCommand(oActor,ActionCloseDoor(oDoor)); + if (bLock) { AssignCommand(oActor,ActionDoCommand(SetLocked(oDoor,TRUE))); } + } +} + + + +void GestaltActionClose(float fDelay, object oActor, object oDoor, int bLock = FALSE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoDoor(sName,iCancel,oActor,"",oDoor,bLock,FALSE)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltActionOpen(float fDelay, object oActor, object oDoor, int bUnlock = TRUE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoDoor(sName,iCancel,oActor,"",oDoor,bUnlock,TRUE)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltTagActionClose(float fDelay, string sActor, object oDoor, int bLock = FALSE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoDoor(sName,iCancel,OBJECT_INVALID,sActor,oDoor,bLock,TRUE)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltTagActionOpen(float fDelay, string sActor, object oDoor, int bUnlock = TRUE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoDoor(sName,iCancel,OBJECT_INVALID,sActor,oDoor,bUnlock,TRUE)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltDoQuest(string sName, int iCancel, object oPC, string sQuest, int iState, int iXP = 0, int iParty = 0, int bRewardAll = TRUE, int bOverride = FALSE) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (iParty == 1) { AddJournalQuestEntry(sQuest,iState,oPC,TRUE,FALSE,bOverride); } + else if (iParty == 2) { AddJournalQuestEntry(sQuest,iState,oPC,FALSE,TRUE,bOverride); } + else { AddJournalQuestEntry(sQuest,iState,oPC,FALSE,FALSE,bOverride); } + + if (iXP == 0) { return; } + else if (iXP == 1) { iXP = GetJournalQuestExperience(sQuest); } + + object oParty; + + if (bRewardAll) { iParty = 0; } + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + GiveXPToCreature(oParty,iXP); + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltJournalEntry(float fDelay, object oPC, string sQuest, int iState, int iXP = 0, int iParty = 0, int bRewardAll = TRUE, int bOverride = FALSE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoQuest(sName,iCancel,oPC,sQuest,iState,iXP,iParty,bRewardAll,bOverride)); +} + + + +void GestaltDoWait(string sName, int iCancel, object oActor, string sActor, float fPause) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") { oActor = GetObjectByTag(sActor); } + + AssignCommand(oActor,ActionWait(fPause)); +} + + + +void GestaltTagActionWait(float fDelay, string sActor, float fPause) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoWait(sName,iCancel,OBJECT_INVALID,sActor,fPause)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltActionWait(float fDelay, object oActor, float fPause) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoWait(sName,iCancel,oActor,"",fPause)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoClear(string sName, int iCancel, object oActor, string sActor) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sActor != "") { oActor = GetObjectByTag(sActor); } + + AssignCommand(oActor,ClearAllActions(TRUE)); +} + + + +void GestaltClearActions(float fDelay, object oActor, string sActor="") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoClear(sName,iCancel,oActor,sActor)); +} + + + +void GestaltDoFloatingText(string sName, int iCancel, object oActor, string sMessage, int bFaction = TRUE) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + FloatingTextStringOnCreature(sMessage,oActor,bFaction); +} + + + +void GestaltFloatingText(float fDelay, object oActor, string sMessage, int bFaction = TRUE) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoFloatingText(sName,iCancel,oActor,sMessage,bFaction)); +} + + + +void GestaltDoExecute(string sName, int iCancel, object oTarget, string sScript, string sTarget) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sTarget != "") { oTarget = GetObjectByTag(sTarget); } + + ExecuteScript(sScript,oTarget); +} + + + +void GestaltExecuteScript(float fDelay, object oTarget, string sScript, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoExecute(sName,iCancel,oTarget,sScript,sTarget)); +} + + + +void GestaltActionExecute(float fDelay, object oActor, object oTarget, string sScript, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,AssignCommand(oActor,ActionDoCommand(GestaltDoExecute(sName,iCancel,oTarget,sScript,sTarget)))); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltDoDestroy(string sName, int iCancel, object oActor, string sActor, object oTarget, string sTarget, int bAction) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (sTarget != "") { oTarget = GetObjectByTag(sTarget); } + + if (bAction) + { + AssignCommand(oActor,ActionDoCommand(AssignCommand(oTarget,SetIsDestroyable(TRUE)))); + AssignCommand(oActor,ActionDoCommand(DestroyObject(oTarget))); + } + + else + { + AssignCommand(oTarget,SetIsDestroyable(TRUE)); + DestroyObject(oTarget); + } +} + + + +void GestaltActionDestroy(float fDelay, object oActor, object oTarget, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoDestroy(sName,iCancel,oActor,"",oTarget,sTarget,TRUE)); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltTagActionDestroy(float fDelay, string sActor, object oTarget, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoDestroy(sName,iCancel,OBJECT_INVALID,sActor,oTarget,sTarget,TRUE)); + GestaltRegisterActor(sName,OBJECT_INVALID,sActor); +} + + + +void GestaltDestroy(float fDelay, object oTarget, string sTarget = "") +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoDestroy(sName,iCancel,OBJECT_INVALID,"",oTarget,sTarget,FALSE)); +} + + + + + + + + + + +// Camera functions + +void GestaltStopCameraMoves(object oPC, int iParty = 0, int bAuto = TRUE, int iCamID = 0) +{ + object oParty; + string sCam; + int iCount; + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + if (bAuto) + { iCamID = GetLocalInt(oParty,"iCamCount"); } + + iCount = iCamID; + + while (iCount > 0) + { + // Find the camera movement + sCam = "iCamStop" + IntToString(iCount); + SetLocalInt(oParty,sCam,1); + iCount--; + + // Uncomment the line below to get a message in the game confirming each id which is cancelled + // AssignCommand(oParty,SpeakString("Camera movement id " + IntToString(iCount) + "has been stopped")); + } + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +vector GetVectorAB(object oA, object oB) +{ + vector vA = GetPosition(oA); + vector vB = GetPosition(oB); + vector vDelta = (vA - vB); + return vDelta; +} + + + +float GetHorizontalDistanceBetween(object oA, object oB) +{ + vector vHorizontal = GetVectorAB(oA,oB); + float fDistance = sqrt(pow(vHorizontal.x,2.0) + pow(vHorizontal.y,2.0)); + return fDistance; +} + + + +float GestaltGetDirection(object oTarget, object oPC) +{ + vector vdTarget = GetVectorAB(oTarget,oPC); + float fDirection = VectorToAngle(vdTarget); + return fDirection; +} + + + +void GestaltDoCameraMode(string sName, int iCancel, object oPC, int iMode) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + SetCameraMode(oPC,iMode); +} + + + +void GestaltCameraMode(float fDelay, object oPC, int iMode) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoCameraMode(sName,iCancel,oPC,iMode)); +} + + + +void GestaltDoCameraFacing(string sName, int iCancel, float fDirection, float fRange, float fPitch, object oPC, int iTransition) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + AssignCommand(oPC,SetCameraFacing(fDirection,fRange,fPitch,iTransition)); +} + + + +void GestaltCameraFacing(float fDelay, float fDirection, float fRange, float fPitch, object oPC, int iTransition = CAMERA_TRANSITION_TYPE_SNAP) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoCameraFacing(sName,iCancel,fDirection,fRange,fPitch,oPC,iTransition)); +} + + + +void GestaltCameraPoint(float fDirection, float fRange, float fPitch, float fdDirection, float fdRange, float fdPitch, float fd2Direction, float fd2Range, float fd2Pitch, float fCount, object oPC, int iCamID, int iFace = 0) +{ + // Check whether this camera movement has been stopped or ended + string sCam = "iCamStop" + IntToString(iCamID); + if (GetLocalInt(oPC,sCam) == 1) + { return; } + + // Work out where to point the camera + fDirection = fDirection + ((fd2Direction * pow(fCount,2.0)) / 2) + (fdDirection * fCount); + fRange = fRange + ((fd2Range * pow(fCount,2.0)) / 2) + (fdRange * fCount); + fPitch = fPitch + ((fd2Pitch * pow(fCount,2.0)) / 2) + (fdPitch * fCount); + + // Reset fDirectionNew if it's gone past 0 or 360 degrees + while (fDirection < 0.0) { fDirection = (fDirection + 360.0); } + while (fDirection > 360.0) { fDirection = (fDirection - 360.0); } + + // Set the camera and/or player facing, according to iFace + if (iFace < 2) { AssignCommand(oPC,SetCameraFacing(fDirection,fRange,fPitch)); } + if (iFace > 0) { AssignCommand(oPC,SetFacing(fDirection)); } + + // Store the current position of the camera + SetLocalFloat(oPC,"fCameraDirection",fDirection); + SetLocalFloat(oPC,"fCameraRange",fRange); + SetLocalFloat(oPC,"fCameraPitch",fPitch); +} + + + +void GestaltCameraPosition(float fDirection, float fRange, float fPitch, float fHeight, float fdDirection, float fdRange, float fdPitch, float fdHeight, float fd2Direction, float fd2Range, float fd2Pitch, float fd2Height, float fCount, object oPC, int iCamID, int iFace = 0) +{ + // Check whether this camera movement has been stopped or ended + string sCam = "iCamStop" + IntToString(iCamID); + if (GetLocalInt(oPC,sCam) == 1) + { return; } + + // Work out where to point the camera + fDirection = fDirection + ((fd2Direction * pow(fCount,2.0)) / 2) + (fdDirection * fCount); + fRange = fRange + ((fd2Range * pow(fCount,2.0)) / 2) + (fdRange * fCount); + fPitch = fPitch + ((fd2Pitch * pow(fCount,2.0)) / 2) + (fdPitch * fCount); + fHeight = fHeight + ((fd2Height * pow(fCount,2.0)) / 2) + (fdHeight * fCount); + + // Reset fDirectionNew if it's gone past 0 or 360 degrees + while (fDirection < 0.0) { fDirection = (fDirection + 360.0); } + while (fDirection > 360.0) { fDirection = (fDirection - 360.0); } + + // Set the camera and/or player facing, according to iFace + if (iFace < 2) { AssignCommand(oPC,SetCameraFacing(fDirection,fRange,fPitch)); } + if (iFace > 0) { AssignCommand(oPC,SetFacing(fDirection)); } + + // Adjust camera height + SetCameraHeight(oPC,fHeight); + + // Store the current position of the camera + SetLocalFloat(oPC,"fCameraDirection",fDirection); + SetLocalFloat(oPC,"fCameraRange",fRange); + SetLocalFloat(oPC,"fCameraPitch",fPitch); + SetLocalFloat(oPC,"fCameraHeight",fHeight); +} + + + +void GestaltCameraFaceTarget(object oTarget, float fRange, float fPitch, object oPC, int iFace, int iParty = 0, int iCamID = 0) +{ + // Check whether this camera movement has been stopped + string sCam = "iCamStop" + IntToString(iCamID); + if (iCamID > 0 && GetLocalInt(oPC,sCam) == 1) + { return; } + + float fDirection; + object oParty; + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + fDirection = GestaltGetDirection(oTarget,oParty); + + if (iFace < 2) { AssignCommand(oParty,SetCameraFacing(fDirection,fRange,fPitch)); } + if (iFace > 0) { AssignCommand(oParty,SetFacing(fDirection)); } + + // Store the current position of the camera + SetLocalFloat(oParty,"fCameraDirection",fDirection); + SetLocalFloat(oParty,"fCameraRange",fRange); + SetLocalFloat(oParty,"fCameraPitch",fPitch); + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +float GestaltGetPanRate(float fDirection, float fDirection2, float fTicks, int iClockwise) +{ + // Calculates how far the camera needs to move each to tick to go from fDirection to fDirection2 + // in fTicks steps, correcting as necessary to account for clockwise or anti-clockwise movement + + float fdDirection; + + if (iClockwise == 0) + { + if (fDirection > fDirection2) { fdDirection = ((fDirection2 + 360.0 - fDirection) / fTicks); } + else { fdDirection = ((fDirection2 - fDirection) / fTicks); } + } + + if (iClockwise == 1) + { + if (fDirection2 > fDirection) { fdDirection = ((fDirection2 - fDirection - 360.0) / fTicks); } + else { fdDirection = ((fDirection2 - fDirection) / fTicks); } + } + + if (iClockwise == 2) + { + float fCheck = fDirection2 - fDirection; + if (fCheck > 180.0) { fdDirection = ((fDirection2 - fDirection - 360.0) / fTicks); } + else if (fCheck < -180.0) { fdDirection = ((fDirection2 + 360.0 - fDirection) / fTicks); } + else { fdDirection = ((fDirection2 - fDirection) / fTicks); } + } + + return fdDirection; +} + + + +void GestaltCameraMove(float fDelay, float fDirection, float fRange, float fPitch, float fDirection2, float fRange2, float fPitch2, float fTime, float fFrameRate, object oPC, int iClockwise = 0, int iFace = 0, int iParty = 0) +{ + // Get timing information + float fTicks = (fTime * fFrameRate); + float fdTime = (fTime / fTicks); + float fStart = fDelay; + float fCount; + + float fdDirection = GestaltGetPanRate(fDirection,fDirection2,fTicks,iClockwise); + float fdRange = ((fRange2 - fRange) / fTicks); + float fdPitch = ((fPitch2 - fPitch) / fTicks); + + int iCamID; + object oParty; + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + // Set the camera to top down mode + GestaltCameraMode(fDelay,oParty,CAMERA_MODE_TOP_DOWN); + + // Give the camera movement a unique id code so that it can be stopped + iCamID = GetLocalInt(oParty,"iCamCount") + 1; + SetLocalInt(oParty,"iCamCount",iCamID); + + // reset variables + fCount = 0.0; + fDelay = fStart; + + // Uncomment the line below to get a message in the game telling you the id of this camera movement + // AssignCommand(oParty,SpeakString("Camera id - " + IntToString(iCamID))); + + // After delay, stop any older camera movements and start this one + DelayCommand(fStart,GestaltStopCameraMoves(oParty,0,FALSE,iCamID - 1)); + + while (fCount <= fTicks) + { + DelayCommand(fDelay,GestaltCameraPoint(fDirection,fRange,fPitch,fdDirection,fdRange,fdPitch,0.0,0.0,0.0,fCount,oParty,iCamID,iFace)); + fCount = (fCount + 1.0); + fDelay = fStart + (fCount * fdTime); + } + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltCameraCrane(float fDelay, float fDirection, float fRange, float fPitch, float fHeight, float fDirection2, float fRange2, float fPitch2, float fHeight2, float fTime, float fFrameRate, object oPC, int iClockwise = 0, int iFace = 0, int iParty = 0) +{ + // Get timing information + float fTicks = (fTime * fFrameRate); + float fdTime = (fTime / fTicks); + float fStart = fDelay; + float fCount; + + float fdDirection = GestaltGetPanRate(fDirection,fDirection2,fTicks,iClockwise); + float fdRange = ((fRange2 - fRange) / fTicks); + float fdPitch = ((fPitch2 - fPitch) / fTicks); + float fdHeight = ((fHeight2 - fHeight) / fTicks); + + int iCamID; + object oParty; + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + // Set the camera to top down mode + GestaltCameraMode(fDelay,oParty,CAMERA_MODE_TOP_DOWN); + + // Give the camera movement a unique id code so that it can be stopped + iCamID = GetLocalInt(oParty,"iCamCount") + 1; + SetLocalInt(oParty,"iCamCount",iCamID); + + // reset variables + fCount = 0.0; + fDelay = fStart; + + // Uncomment the line below to get a message in the game telling you the id of this camera movement + // AssignCommand(oParty,SpeakString("Camera id - " + IntToString(iCamID))); + + // After delay, stop any older camera movements and start this one + DelayCommand(fStart,GestaltStopCameraMoves(oParty,0,FALSE,iCamID - 1)); + + while (fCount <= fTicks) + { + DelayCommand(fDelay,GestaltCameraPosition(fDirection,fRange,fPitch,fHeight,fdDirection,fdRange,fdPitch,fdHeight,0.0,0.0,0.0,0.0,fCount,oParty,iCamID,iFace)); + fCount = (fCount + 1.0); + fDelay = fStart + (fCount * fdTime); + } + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltCameraSmoothStart(float fdDirection1, float fdRange1, float fdPitch1, float fdDirection2, float fdRange2, float fdPitch2, float fTime, float fFrameRate, object oParty, object oSync, int iCamID) +{ + // Get starting position for camera + float fDirection = GetLocalFloat(oSync,"fCameraDirection"); + float fRange = GetLocalFloat(oSync,"fCameraRange"); + float fPitch = GetLocalFloat(oSync,"fCameraPitch"); + + // Get timing information + float fTicks = (fTime * fFrameRate); + float fdTime = (fTime / fTicks); + float fDelay = 0.0; + float fCount = 0.0; + + // Get camera speed and acceleration + float fdDirection = fdDirection1 / fFrameRate; + float fdRange = fdRange1 / fFrameRate; + float fdPitch = fdPitch1 / fFrameRate; + + float fd2Direction = (fdDirection2 - fdDirection1) / ((fTicks - 1) * fFrameRate); + float fd2Range = (fdRange2 - fdRange1) / ((fTicks - 1) * fFrameRate); + float fd2Pitch = (fdPitch2 - fdPitch1) / ((fTicks - 1) * fFrameRate); + + // Start camera movement + while (fCount < fTicks) + { + DelayCommand(fDelay,GestaltCameraPoint(fDirection,fRange,fPitch,fdDirection,fdRange,fdPitch,fd2Direction,fd2Range,fd2Pitch,fCount,oParty,iCamID)); + fCount = (fCount + 1.0); + fDelay = (fCount * fdTime); + } + + // Uncomment the line below to display the starting position of the camera movement + // GestaltDebugOutput(oSync); + + // Uncomment the line below to display the finishing position of the camera movement + // DelayCommand(fDelay,GestaltDebugOutput(oSync)); +} + + + +void GestaltCameraSmooth(float fDelay, float fdDirection1, float fdRange1, float fdPitch1, float fdDirection2, float fdRange2, float fdPitch2, float fTime, float fFrameRate, object oPC, int iParty = 0, int iSync = 1) +{ + object oParty; + object oSync; + int iCamID; + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + // Work out whose camera position to use as the starting position + if (iSync == 1) { oSync = oPC; } + else { oSync = oParty; } + + // Set the camera to top down mode + GestaltCameraMode(fDelay,oParty,CAMERA_MODE_TOP_DOWN); + + // Give the camera movement a unique id code so that it can be stopped + iCamID = GetLocalInt(oParty,"iCamCount") + 1; + SetLocalInt(oParty,"iCamCount",iCamID); + + // Uncomment the line below to get a message in the game telling you the id of this camera movement + // AssignCommand(oParty,SpeakString("Camera id - " + IntToString(iCamID))); + + // After delay, stop any older camera movements and start this one + DelayCommand(fDelay,GestaltStopCameraMoves(oParty,0,FALSE,iCamID - 1)); + DelayCommand(fDelay,GestaltCameraSmoothStart(fdDirection1,fdRange1,fdPitch1,fdDirection2,fdRange2,fdPitch2,fTime,fFrameRate,oParty,oSync,iCamID)); + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltCameraCraneSmoothStart(float fdDirection1, float fdRange1, float fdPitch1, float fdHeight1, float fdDirection2, float fdRange2, float fdPitch2, float fdHeight2, float fTime, float fFrameRate, object oParty, object oSync, int iCamID) +{ + // Get starting position for camera + float fDirection = GetLocalFloat(oSync,"fCameraDirection"); + float fRange = GetLocalFloat(oSync,"fCameraRange"); + float fPitch = GetLocalFloat(oSync,"fCameraPitch"); + float fHeight = GetLocalFloat(oSync,"fCameraHeight"); + + // Get timing information + float fTicks = (fTime * fFrameRate); + float fdTime = (fTime / fTicks); + float fDelay = 0.0; + float fCount = 0.0; + + // Get camera speed and acceleration + float fdDirection = fdDirection1 / fFrameRate; + float fdRange = fdRange1 / fFrameRate; + float fdPitch = fdPitch1 / fFrameRate; + float fdHeight = fdHeight1 / fFrameRate; + + float fd2Direction = (fdDirection2 - fdDirection1) / ((fTicks - 1) * fFrameRate); + float fd2Range = (fdRange2 - fdRange1) / ((fTicks - 1) * fFrameRate); + float fd2Pitch = (fdPitch2 - fdPitch1) / ((fTicks - 1) * fFrameRate); + float fd2Height = (fdHeight2 - fdHeight1) / ((fTicks - 1) * fFrameRate); + + // Start camera movement + while (fCount < fTicks) + { + DelayCommand(fDelay,GestaltCameraPosition(fDirection,fRange,fPitch,fHeight,fdDirection,fdRange,fdPitch,fdHeight,fd2Direction,fd2Range,fd2Pitch,fd2Height,fCount,oParty,iCamID)); + fCount = (fCount + 1.0); + fDelay = (fCount * fdTime); + } + + // Uncomment the line below to display the starting position of the camera movement + // GestaltDebugOutput(oSync); + + // Uncomment the line below to display the finishing position of the camera movement + // DelayCommand(fDelay,GestaltDebugOutput(oSync)); +} + + + +void GestaltCameraCraneSmooth(float fDelay, float fdDirection1, float fdRange1, float fdPitch1, float fdHeight1, float fdDirection2, float fdRange2, float fdPitch2, float fdHeight2, float fTime, float fFrameRate, object oPC, int iParty = 0, int iSync = 1) +{ + object oParty; + object oSync; + int iCamID; + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + // Work out whose camera position to use as the starting position + if (iSync == 1) { oSync = oPC; } + else { oSync = oParty; } + + // Set the camera to top down mode + GestaltCameraMode(fDelay,oParty,CAMERA_MODE_TOP_DOWN); + + // Give the camera movement a unique id code so that it can be stopped + iCamID = GetLocalInt(oParty,"iCamCount") + 1; + SetLocalInt(oParty,"iCamCount",iCamID); + + // Uncomment the line below to get a message in the game telling you the id of this camera movement + // AssignCommand(oParty,SpeakString("Camera id - " + IntToString(iCamID))); + + // After delay, stop any older camera movements and start this one + DelayCommand(fDelay,GestaltStopCameraMoves(oParty,0,FALSE,iCamID - 1)); + DelayCommand(fDelay,GestaltCameraCraneSmoothStart(fdDirection1,fdRange1,fdPitch1,fdHeight1,fdDirection2,fdRange2,fdPitch2,fdHeight2,fTime,fFrameRate,oParty,oSync,iCamID)); + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltDoCameraSetup(string sName, int iCancel, object oPC, float fDirection, float fRange, float fPitch, float fHeight) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + SetLocalFloat(oPC,"fCameraDirection",fDirection); + SetLocalFloat(oPC,"fCameraRange",fRange); + SetLocalFloat(oPC,"fCameraPitch",fPitch); + SetLocalFloat(oPC,"fCameraHeight",fHeight); +} + + + +void GestaltCameraSetup(float fDelay, object oPC, float fDirection, float fRange, float fPitch, float fHeight = 0.0) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + if (fDelay == 0.0) { GestaltDoCameraSetup(sName,iCancel,oPC,fDirection,fRange,fPitch,fHeight); } + else { DelayCommand(fDelay,GestaltDoCameraSetup(sName,iCancel,oPC,fDirection,fRange,fPitch,fHeight)); } +} + + + +void GestaltCameraFace(float fDelay, object oStart, float fRange, float fPitch, object oEnd, float fRange2, float fPitch2, float fTime, float fFrameRate, object oPC, int iClockwise = 0, int iFace = 0, int iParty = 0) +{ + // Get timing information + float fCount = 0.0; + float fStart = fDelay; + float fTicks = (fTime * fFrameRate); + float fdTime = (fTime / fTicks); + + float fDirection; + float fDirection2; + + float fdDirection; + float fdRange = ((fRange2 - fRange) / fTicks); + float fdPitch = ((fPitch2 - fPitch) / fTicks); + + object oParty; + int iCamID; + + // Get first player + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + // Set the camera to top down mode + GestaltCameraMode(fDelay,oParty,CAMERA_MODE_TOP_DOWN); + + // Give the camera movement a unique id code so that it can be stopped + iCamID = GetLocalInt(oParty,"iCamCount") + 1; + SetLocalInt(oParty,"iCamCount",iCamID); + + // reset variables + fCount = 0.0; + fDelay = fStart; + + // Work out rotation rate for this player + fDirection = GestaltGetDirection(oStart,oParty); + fDirection2 = GestaltGetDirection(oEnd,oParty); + fdDirection = GestaltGetPanRate(fDirection,fDirection2,fTicks,iClockwise); + + // After delay, stop any older camera movements and start this one + DelayCommand(fStart,GestaltStopCameraMoves(oParty,0,FALSE,iCamID - 1)); + + while (fCount <= fTicks) + { + DelayCommand(fDelay,GestaltCameraPoint(fDirection,fRange,fPitch,fdDirection,fdRange,fdPitch,0.0,0.0,0.0,fCount,oParty,iCamID,iFace)); + fCount = (fCount + 1.0); + fDelay = fStart + (fCount * fdTime); + } + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltCameraTrack(float fDelay, object oTrack, float fRange, float fPitch, float fRange2, float fPitch2, float fTime, float fFrameRate, object oPC, int iFace = 0, int iParty = 0) +{ + // Get timing information + float fCount; + float fStart = fDelay; + float fTicks = (fTime * fFrameRate); + float fdTime = (fTime / fTicks); + + float fSRange = fRange; + float fSPitch = fPitch; + + float fdRange = ((fRange2 - fRange) / fTicks); + float fdPitch = ((fPitch2 - fPitch) / fTicks); + + object oParty; + int iCamID; + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + // Set the camera to top down mode + GestaltCameraMode(fDelay,oParty,CAMERA_MODE_TOP_DOWN); + + // Give the camera movement a unique id code so that it can be stopped + iCamID = GetLocalInt(oParty,"iCamCount") + 1; + SetLocalInt(oParty,"iCamCount",iCamID); + + // reset variables + fCount = 0.0; + fDelay = fStart; + fRange = fSRange; + fPitch = fSPitch; + + // After delay, stop any older camera movements and start this one + DelayCommand(fStart,GestaltStopCameraMoves(oParty,0,FALSE,iCamID - 1)); + + while (fCount <= fTicks) + { + DelayCommand(fDelay,GestaltCameraFaceTarget(oTrack,fRange,fPitch,oParty,iFace,0,iCamID)); + fPitch = (fPitch + fdPitch); + fRange = (fRange + fdRange); + fCount = (fCount + 1.0); + fDelay = fStart + (fCount * fdTime); + } + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltDoFadeOut(string sName, int iCancel, object oPC, float fSpeed, int iParty) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + object oParty; + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + FadeToBlack(oParty,fSpeed); + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltDoFadeIn(string sName, int iCancel, object oPC, float fSpeed, int iParty) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + object oParty; + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + FadeFromBlack(oParty,fSpeed); + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltDoBlack(string sName, int iCancel, object oPC, int iParty) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + object oParty; + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + BlackScreen(oParty); + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltDoStopFade(string sName, int iCancel, object oPC, int iParty) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + object oParty; + + if (iParty == 1) { oParty = GetFirstFactionMember(oPC); } + else if (iParty == 2) { oParty = GetFirstPC(); } + else { oParty = oPC; } + + while (GetIsObjectValid(oParty)) + { + StopFade(oParty); + + if (iParty == 1) { oParty = GetNextFactionMember(oParty,TRUE); } + else if (iParty == 2) { oParty = GetNextPC(); } + else { return; } + } +} + + + +void GestaltDoFade(string sName, int iCancel, object oPC, int iFade, float fSpeed, float fDuration, int iParty) +{ + if (GetLocalInt(GetModule(),sName) >= iCancel && iCancel > 0) + { return; } + + if (iFade == FADE_IN) + { + if (fDuration > 0.0) + { GestaltDoBlack(sName,iCancel,oPC,iParty); } + DelayCommand(fDuration,GestaltDoFadeIn(sName,iCancel,oPC,fSpeed,iParty)); + } + + else if (iFade == FADE_OUT) + { + GestaltDoFadeOut(sName,iCancel,oPC,fSpeed,iParty); + if (fDuration > 0.0) + { DelayCommand(fDuration,GestaltDoStopFade(sName,iCancel,oPC,iParty)); } + } + + else + { + GestaltDoFadeOut(sName,iCancel,oPC,fSpeed,iParty); + DelayCommand(fDuration,GestaltDoFadeIn(sName,iCancel,oPC,fSpeed,iParty)); + } +} + + + +void GestaltActionCameraFade(float fDelay, object oActor, object oPC, int iFade, float fSpeed = FADE_SPEED_MEDIUM, float fDuration = 0.0, int iParty = 0) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,AssignCommand(oActor,ActionDoCommand(GestaltDoFade(sName,iCancel,oPC,iFade,fSpeed,fDuration,iParty)))); + if (!GetIsPC(oActor)) { GestaltRegisterActor(sName,oActor); } +} + + + +void GestaltCameraFade(float fDelay, object oPC, int iFade, float fSpeed = FADE_SPEED_MEDIUM, float fDuration = 0.0, int iParty = 0) +{ + string sName = GetLocalString(GetModule(),"cutscene"); + int iCancel = GetLocalInt(GetModule(),sName + "time"); + + DelayCommand(fDelay,GestaltDoFade(sName,iCancel,oPC,iFade,fSpeed,fDuration,iParty)); +} + + + +void GestaltFixedCamera(object oPC, float fFrameRate = 50.0) +{ + // Thanks to Tenchi Masaki for the idea for this function + string sCamera = GetLocalString(oPC,"sGestaltFixedCamera"); // Gets the camera position to use + if (sCamera == "STOP") // Camera tracking is turned off, stop script and don't recheck + { return; } + if (sCamera == "") // Camera tracking is inactive, stop script but recheck in a second + { + DelayCommand(1.0,GestaltFixedCamera(oPC,fFrameRate)); + return; + } + + float fHeight = GetLocalFloat(oPC,"fGestaltFixedCamera"); // Gets the camera height to use + if (fHeight == 0.0) { fHeight = 10.0; } // Defaults camera height to 10.0 if none has been set yet + + object oCamera = GetObjectByTag(sCamera); + float fDelay = 1.0 / fFrameRate; + float fRange = GetHorizontalDistanceBetween(oPC,oCamera); + + float fAngle = GestaltGetDirection(oPC,oCamera); // Works out angle between camera and player + float fPitch = atan(fRange/fHeight); // Works out vertical tilt + float fDistance = sqrt(pow(fHeight,2.0) + pow(fRange,2.0)); // Works out camera distance from player + if (fDistance > 30.0) { fDistance = 30.0; } // Sets distance to 30.0 if player is too far away + if (fDistance < 5.0) { fDistance = 5.0; } // Sets distance to 5.0 if player is too close + + AssignCommand(oPC,SetCameraFacing(fAngle,fDistance,fPitch)); + DelayCommand(fDelay,GestaltFixedCamera(oPC,fFrameRate)); +} + +//void main() {} diff --git a/_module/nss/instant_rest.nss b/_module/nss/instant_rest.nss new file mode 100644 index 0000000..99fbd25 --- /dev/null +++ b/_module/nss/instant_rest.nss @@ -0,0 +1,41 @@ +#include "x0_i0_petrify" +#include "prc_inc_util" + +void DeathCheck (object oPC) +{ + if (GetIsDead(oPC)==TRUE) + { + ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectResurrection(),oPC); + } +} + + +void main() +{ +object oPC = GetLastUsedBy(); +object oMod = GetModule(); +object oCaster; +oCaster = OBJECT_SELF; +object oTarget; +oTarget = oPC; +int nInt = GetObjectType(oTarget); +int oState = GetLocalInt(oMod, "pool_state"); +int iCurrent = GetCurrentHitPoints(oPC); +int iMax = GetMaxHitPoints(oPC); +int iHeal = iMax - iCurrent; +if (oState !=1) +{ +ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_DUR_PIXIEDUST), oTarget); +ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_NATURES_BALANCE), oTarget); +ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectHeal(iMax), oTarget); +//AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_GREATER_RESTORATION, oTarget, METAMAGIC_ANY, TRUE, 20, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); +DelayCommand(0.2, PRCForceRest(oPC)); +//DelayCommand(2.0, DeathCheck(oPC)); +DelayCommand(1.0, FloatingTextStringOnCreature("You feel rested", oPC)); +} +else +{ +PlaySound("sim_cntresist"); +//FloatingTextStringOnCreature("You can't reach the pool", oPC); +} +} diff --git a/_module/nss/insurance_refund.nss b/_module/nss/insurance_refund.nss new file mode 100644 index 0000000..7257a6a --- /dev/null +++ b/_module/nss/insurance_refund.nss @@ -0,0 +1,16 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iRefund = GetLocalInt(oPC, "refund"); +//SetLocalInt(oPC, "haggle", 0); +GiveGoldToCreature(oPC, iRefund); +SetLocalInt(oPC, "refund", 0); +PlaySound("it_coins"); +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (oItem==GetObjectByTag("insurance")) + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(oPC); + } +} diff --git a/_module/nss/int_imbue.nss b/_module/nss/int_imbue.nss new file mode 100644 index 0000000..856324d --- /dev/null +++ b/_module/nss/int_imbue.nss @@ -0,0 +1,6 @@ +#include "ability_imbue" + +void main() +{ +AbilityImbue(IP_CONST_ABILITY_INT); +} diff --git a/_module/nss/inv_open.nss b/_module/nss/inv_open.nss new file mode 100644 index 0000000..dd041c8 --- /dev/null +++ b/_module/nss/inv_open.nss @@ -0,0 +1,4 @@ +void main() +{ +OpenInventory(GetPCSpeaker(), GetPCSpeaker()); +} diff --git a/_module/nss/invalid.nss b/_module/nss/invalid.nss new file mode 100644 index 0000000..8e44f57 --- /dev/null +++ b/_module/nss/invalid.nss @@ -0,0 +1,61 @@ +void main() +{ +object oPC = GetPCSpeaker(); +string sThousand = GetLocalString(oPC, "THOUSAND"); +string sHundred = GetLocalString(oPC, "HUNDRED"); +string sTen = GetLocalString(oPC, "TEN"); +string sOne = GetLocalString(oPC, "ONE"); +string sType = sThousand + sHundred + sTen + sOne; +int iType = StringToInt(sType); +if ( + 311504 + ) + { + SetLocalInt(oPC, "INVALID_APP", 1); + } +} diff --git a/_module/nss/invalid_app.nss b/_module/nss/invalid_app.nss new file mode 100644 index 0000000..7eff5b5 --- /dev/null +++ b/_module/nss/invalid_app.nss @@ -0,0 +1,7 @@ +int StartingConditional() +{ + int iResult; + + iResult = (GetLocalInt(GetPCSpeaker(), "INVALID_APP") == 1); + return iResult; +} diff --git a/_module/nss/invis_imbue.nss b/_module/nss/invis_imbue.nss new file mode 100644 index 0000000..8bd98c5 --- /dev/null +++ b/_module/nss/invis_imbue.nss @@ -0,0 +1,35 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Invis(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyCastSpell +(IP_CONST_CASTSPELL_IMPROVED_INVISIBILITY_7, +IP_CONST_CASTSPELL_NUMUSES_2_USES_PER_DAY); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main() +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_DUR_ETHEREAL_VISAGE, OBJECT_SELF); +PCEffect(1.5,VFX_DUR_INVISIBILITY, OBJECT_SELF); +PCEffect(2.0,VFX_IMP_DUST_EXPLOSION, OBJECT_SELF); +DelayCommand(1.0, Invis(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/is_dwarf.nss b/_module/nss/is_dwarf.nss new file mode 100644 index 0000000..90b6fe3 --- /dev/null +++ b/_module/nss/is_dwarf.nss @@ -0,0 +1,16 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ +#include "prc_inc_racial" + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (MyPRCGetRacialType(oPC) != RACIAL_TYPE_DWARF) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/is_elf.nss b/_module/nss/is_elf.nss new file mode 100644 index 0000000..c414d34 --- /dev/null +++ b/_module/nss/is_elf.nss @@ -0,0 +1,16 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ +#include "prc_inc_racial" + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (MyPRCGetRacialType(oPC) != RACIAL_TYPE_ELF) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/is_gnome.nss b/_module/nss/is_gnome.nss new file mode 100644 index 0000000..1121c4b --- /dev/null +++ b/_module/nss/is_gnome.nss @@ -0,0 +1,16 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ +#include "prc_inc_racial" + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (MyPRCGetRacialType(oPC) != RACIAL_TYPE_GNOME) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/is_halfelf.nss b/_module/nss/is_halfelf.nss new file mode 100644 index 0000000..d888e21 --- /dev/null +++ b/_module/nss/is_halfelf.nss @@ -0,0 +1,16 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ +#include "prc_inc_racial" + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (MyPRCGetRacialType(oPC) != RACIAL_TYPE_HALFELF) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/is_halforc.nss b/_module/nss/is_halforc.nss new file mode 100644 index 0000000..6f75c13 --- /dev/null +++ b/_module/nss/is_halforc.nss @@ -0,0 +1,16 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ +#include "prc_inc_racial" + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (MyPRCGetRacialType(oPC) != RACIAL_TYPE_HALFORC) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/is_human.nss b/_module/nss/is_human.nss new file mode 100644 index 0000000..435369f --- /dev/null +++ b/_module/nss/is_human.nss @@ -0,0 +1,16 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ +#include "prc_inc_racial" + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (MyPRCGetRacialType(oPC) != RACIAL_TYPE_HUMAN) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/item_exprmnt.nss b/_module/nss/item_exprmnt.nss new file mode 100644 index 0000000..294f0b7 --- /dev/null +++ b/_module/nss/item_exprmnt.nss @@ -0,0 +1,68 @@ +void GetProp(int oBase, int oType, int oSubType, object oPC) +{ +int oItem; +int oProp; +int oSub; +int oDamType; +int oDamAmt; + +switch (oBase) + { + case BASE_ITEM_CBLUDGWEAPON: {oItem = 1;} + case BASE_ITEM_CSLASHWEAPON: {oItem = 1;} + case BASE_ITEM_CSLSHPRCWEAP: {oItem = 1;} + case BASE_ITEM_BOOTS: {oItem = 2;} + case BASE_ITEM_BRACER: {oItem = 3;} + case BASE_ITEM_GLOVES: {oItem = 4;} + case BASE_ITEM_CLOAK: {oItem = 5;} + case BASE_ITEM_ARMOR: {oItem = 6;} + case BASE_ITEM_HELMET: {oItem = 7;} + case BASE_ITEM_RING: {oItem = 8;} + case BASE_ITEM_AMULET: {oItem = 9;} + case BASE_ITEM_BELT: {oItem = 10;} + case BASE_ITEM_TOWERSHIELD: {oItem = 11;} + } +switch (oType) + { + case IP_CONST_DAMAGETYPE_ACID: {oDamType = 2;} + } +switch (oSubType) + { + case DAMAGE_BONUS_1d8: {oDamAmt = 2;} + } + +if ((oItem==1)&&(oDamType==2)&&(oDamAmt==2)) + { + FloatingTextStringOnCreature("Acid Damage 1d8", oPC); + } + else + { + FloatingTextStringOnCreature("Oh crap!", oPC); + } +} + + + + + + + +void main() +{ +object oPC=GetLastUsedBy(); +object oOnHand=GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); +int oType; +int oSubType; +int oBase; + +itemproperty ipLoop=GetFirstItemProperty(oOnHand); +while (GetIsItemPropertyValid(ipLoop)) + { + oBase = GetBaseItemType(oOnHand); + oType = GetItemPropertyType(ipLoop); + oSubType = GetItemPropertySubType(ipLoop); + GetProp(oBase, oType, oSubType, oPC); + ipLoop=GetNextItemProperty(oOnHand); + } +} + diff --git a/_module/nss/item_modder.nss b/_module/nss/item_modder.nss new file mode 100644 index 0000000..a42aebf --- /dev/null +++ b/_module/nss/item_modder.nss @@ -0,0 +1,235 @@ +#include "moditem2" +object oItem; +object oTarget; +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ +object oPC = GetLastUsedBy(); +object oTarget = OBJECT_SELF; +int oCount=0; +int oPearl=0; +int oPcount=0; +int oCoin=0; +int oCloak = 0; +int oNcount= 0; +int oAmmo; +int oDaxe = BASE_ITEM_DWARVENWARAXE; +int oRapier = BASE_ITEM_RAPIER; +int oLongsword = BASE_ITEM_LONGSWORD; +int oBastardsword = BASE_ITEM_BASTARDSWORD; +int oBattleaxe = BASE_ITEM_BATTLEAXE; +int oKukri = BASE_ITEM_KUKRI; +int oWarhammer = BASE_ITEM_WARHAMMER; +int oShortsword = BASE_ITEM_SHORTSWORD; +int oKama = BASE_ITEM_KAMA; +int oGreatsword = BASE_ITEM_GREATSWORD; +int oLbow = BASE_ITEM_LONGBOW; +int oHcrossbow = BASE_ITEM_HEAVYCROSSBOW; +int oSbow = BASE_ITEM_SHORTBOW; +int oLcrossbow = BASE_ITEM_LIGHTCROSSBOW; +int oDbaxe = BASE_ITEM_DOUBLEAXE; +int oDsword = BASE_ITEM_TWOBLADEDSWORD; +int oWhip = BASE_ITEM_WHIP; +int oSickle = BASE_ITEM_SICKLE; +int oScythe = BASE_ITEM_SCYTHE; +int oMstar = BASE_ITEM_MORNINGSTAR; +int oQstaff = BASE_ITEM_QUARTERSTAFF; +int oScim = BASE_ITEM_SCIMITAR; +int oSpear = BASE_ITEM_SHORTSPEAR; +int oLflail = BASE_ITEM_LIGHTFLAIL; +int oHflail = BASE_ITEM_HEAVYFLAIL; +int oHberd = BASE_ITEM_HALBERD; +int oGaxe = BASE_ITEM_GREATAXE; +int oKatana = BASE_ITEM_KATANA; +int oLmace = BASE_ITEM_LIGHTMACE; +int oDmace = BASE_ITEM_DIREMACE; +int oDagg = BASE_ITEM_DAGGER; +int oBolt = BASE_ITEM_BOLT; +int oArrow = BASE_ITEM_ARROW; + + +object oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + ++oCount; + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +if (oCount==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")) + { + FloatingTextStringOnCreature("You need an item as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("You need an Arena Token to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + } +if (oCount==0) + { + return; + } + +if ((oCount>1)&&(oCount<3)) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")) + { + oPearl = 1; + ++oPcount; + } + else + { + ++oNcount; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + + if (oNcount==2) + { + FloatingTextStringOnCreature("You need an arena token and one item to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPcount>1) + { + FloatingTextStringOnCreature("You can not use more than one Arena Token", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPearl==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + { + oCoin=1; + } + if (GetTag(oItem)=="coin1") + { + oCoin=2; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + oItem=GetFirstItemInInventory(OBJECT_SELF); + if (oCoin==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ModNow(oItem, oPC)); + return; + } + else + { + while (GetIsObjectValid(oItem)) + { + if (GetBaseItemType(oItem)== BASE_ITEM_TOWERSHIELD) + { + oCloak = 1; + } + if (GetBaseItemType(oItem)== BASE_ITEM_AMULET) + { + oCloak = 2; + } + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oCloak = 3; + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmmo=1; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "damage_red", TRUE, FALSE)); + return; + } + else if (oCloak==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "amulet_red", TRUE, FALSE)); + return; + } + else if (oCloak==3) + { + if (oAmmo==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh2", TRUE, FALSE)); + return; + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + } + } + } + else + { + FloatingTextStringOnCreature("Too many items!", oPC); + PlaySound("sim_cntresist"); + } +} + diff --git a/_module/nss/item_modder2.nss b/_module/nss/item_modder2.nss new file mode 100644 index 0000000..dccf514 --- /dev/null +++ b/_module/nss/item_modder2.nss @@ -0,0 +1,253 @@ +#include "moditem2" +object oItem; +object oTarget; +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ +object oPC = GetLastUsedBy(); +object oTarget = OBJECT_SELF; +int oCount=0; +int oPearl=0; +int oPcount=0; +int oCoin=0; +int oCloak = 0; +int oNcount= 0; +int oAmmo; +int oDaxe = BASE_ITEM_DWARVENWARAXE; +int oRapier = BASE_ITEM_RAPIER; +int oLongsword = BASE_ITEM_LONGSWORD; +int oBastardsword = BASE_ITEM_BASTARDSWORD; +int oBattleaxe = BASE_ITEM_BATTLEAXE; +int oKukri = BASE_ITEM_KUKRI; +int oWarhammer = BASE_ITEM_WARHAMMER; +int oShortsword = BASE_ITEM_SHORTSWORD; +int oKama = BASE_ITEM_KAMA; +int oGreatsword = BASE_ITEM_GREATSWORD; +int oLbow = BASE_ITEM_LONGBOW; +int oHcrossbow = BASE_ITEM_HEAVYCROSSBOW; +int oSbow = BASE_ITEM_SHORTBOW; +int oLcrossbow = BASE_ITEM_LIGHTCROSSBOW; +int oDbaxe = BASE_ITEM_DOUBLEAXE; +int oDsword = BASE_ITEM_TWOBLADEDSWORD; +int oWhip = BASE_ITEM_WHIP; +int oSickle = BASE_ITEM_SICKLE; +int oScythe = BASE_ITEM_SCYTHE; +int oMstar = BASE_ITEM_MORNINGSTAR; +int oQstaff = BASE_ITEM_QUARTERSTAFF; +int oScim = BASE_ITEM_SCIMITAR; +int oSpear = BASE_ITEM_SHORTSPEAR; +int oLflail = BASE_ITEM_LIGHTFLAIL; +int oHflail = BASE_ITEM_HEAVYFLAIL; +int oHberd = BASE_ITEM_HALBERD; +int oGaxe = BASE_ITEM_GREATAXE; +int oKatana = BASE_ITEM_KATANA; +int oLmace = BASE_ITEM_LIGHTMACE; +int oDmace = BASE_ITEM_DIREMACE; +int oDagg = BASE_ITEM_DAGGER; +int oBolt = BASE_ITEM_BOLT; +int oArrow = BASE_ITEM_ARROW; + + +object oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + ++oCount; + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +if (oCount==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")||(GetTag(oItem)=="coin2")) + { + FloatingTextStringOnCreature("You need an item as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("You need an Arena Token to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + } +if (oCount==0) + { + return; + } + +if ((oCount>1)&&(oCount<3)) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")|| + (GetTag(oItem)=="coin2")) + { + oPearl = 1; + ++oPcount; + } + else + { + ++oNcount; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + + if (oNcount==2) + { + FloatingTextStringOnCreature("You need an arena token and one item to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPcount>1) + { + FloatingTextStringOnCreature("You can not use more than one Arena Token", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPearl==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + { + oCoin=1; + } + if (GetTag(oItem)=="coin1") + { + oCoin=2; + } + if (GetTag(oItem)=="coin2") + { + oCoin=3; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + oItem=GetFirstItemInInventory(OBJECT_SELF); + if (oCoin==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ModNow(oItem, oPC)); + return; + } + else if (oCoin==3) + { + while (GetIsObjectValid(oItem)) + { + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oCloak = 3; + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmmo=1; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==3) + { + if (oAmmo==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh2", TRUE, FALSE)); + return; + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a Silver arena token on this item", oPC); + } + } + else + { + while (GetIsObjectValid(oItem)) + { + if (GetBaseItemType(oItem)== BASE_ITEM_TOWERSHIELD) + { + oCloak = 1; + } + if (GetBaseItemType(oItem)== BASE_ITEM_AMULET) + { + oCloak = 2; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "damage_red", TRUE, FALSE)); + return; + } + else if (oCloak==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "amulet_red", TRUE, FALSE)); + return; + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + } + } + } + else + { + FloatingTextStringOnCreature("Too many items!", oPC); + PlaySound("sim_cntresist"); + } +} + diff --git a/_module/nss/item_modder3.nss b/_module/nss/item_modder3.nss new file mode 100644 index 0000000..fdb29bb --- /dev/null +++ b/_module/nss/item_modder3.nss @@ -0,0 +1,328 @@ +#include "moditem2" +object oItem; +object oTarget; +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ +object oPC = GetLastUsedBy(); +object oTarget = OBJECT_SELF; +int oCount=0; +int oPearl=0; +int oPcount=0; +int oCoin=0; +int oCloak = 0; +int oNcount= 0; +int oAmmo; + + +int oLbow = BASE_ITEM_LONGBOW; +int oHcrossbow = BASE_ITEM_HEAVYCROSSBOW; +int oSbow = BASE_ITEM_SHORTBOW; +int oLcrossbow = BASE_ITEM_LIGHTCROSSBOW; +int oDaxe = BASE_ITEM_DWARVENWARAXE; +int oRapier = BASE_ITEM_RAPIER; +int oLongsword = BASE_ITEM_LONGSWORD; +int oBastardsword = BASE_ITEM_BASTARDSWORD; +int oBattleaxe = BASE_ITEM_BATTLEAXE; +int oKukri = BASE_ITEM_KUKRI; +int oWarhammer = BASE_ITEM_WARHAMMER; +int oShortsword = BASE_ITEM_SHORTSWORD; +int oKama = BASE_ITEM_KAMA; +int oGreatsword = BASE_ITEM_GREATSWORD; +int oDbaxe = BASE_ITEM_DOUBLEAXE; +int oDsword = BASE_ITEM_TWOBLADEDSWORD; +int oWhip = BASE_ITEM_WHIP; +int oSickle = BASE_ITEM_SICKLE; +int oScythe = BASE_ITEM_SCYTHE; +int oMstar = BASE_ITEM_MORNINGSTAR; +int oQstaff = BASE_ITEM_QUARTERSTAFF; +int oScim = BASE_ITEM_SCIMITAR; +int oSpear = BASE_ITEM_SHORTSPEAR; +int oLflail = BASE_ITEM_LIGHTFLAIL; +int oHflail = BASE_ITEM_HEAVYFLAIL; +int oHberd = BASE_ITEM_HALBERD; +int oGaxe = BASE_ITEM_GREATAXE; +int oKatana = BASE_ITEM_KATANA; +int oLmace = BASE_ITEM_LIGHTMACE; +int oDmace = BASE_ITEM_DIREMACE; +int oDagg = BASE_ITEM_DAGGER; +int oBolt = BASE_ITEM_BOLT; +int oArrow = BASE_ITEM_ARROW; + + +object oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + ++oCount; + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +if (oCount==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")||(GetTag(oItem)=="coin2")) + { + FloatingTextStringOnCreature("You need an item as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("You need an Arena Token to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + } +if (oCount==0) + { + return; + } + +if ((oCount>1)&&(oCount<3)) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")|| + (GetTag(oItem)=="coin2")) + { + oPearl = 1; + ++oPcount; + } + else + { + ++oNcount; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + + if (oNcount==2) + { + FloatingTextStringOnCreature("You need an arena token and one item to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPcount>1) + { + FloatingTextStringOnCreature("You can not use more than one Arena Token", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPearl==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + { + oCoin=1; + } + if (GetTag(oItem)=="coin1") + { + oCoin=2; + } + if (GetTag(oItem)=="coin2") + { + oCoin=3; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + oItem=GetFirstItemInInventory(OBJECT_SELF); + if (oCoin==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ModNow(oItem, oPC)); + return; + } + else if (oCoin==3) + { + while (GetIsObjectValid(oItem)) + { + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oCloak = 3; + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmmo=1; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==3) + { + if (oAmmo==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh2", TRUE, FALSE)); + return; + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a Silver arena token on this item", oPC); + } + } + else + { + while (GetIsObjectValid(oItem)) + { + if (GetBaseItemType(oItem)== BASE_ITEM_TOWERSHIELD) + { + oCloak = 1; + } + if (GetBaseItemType(oItem)== BASE_ITEM_AMULET) + { + oCloak = 2; + } + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)|| + (GetBaseItemType(oItem)==oArrow)) + { + oCloak = 3; + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmmo=1; + } + if ((GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oAmmo=2; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "damage_red", TRUE, FALSE)); + return; + } + else if (oCloak==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "amulet_red", TRUE, FALSE)); + return; + } + else if (oCloak==3) + { + if (oAmmo==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh2", TRUE, FALSE)); + return; + } + else if (oAmmo==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh_bow", TRUE, FALSE)); + return; + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh3", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + } + } + } + else + { + FloatingTextStringOnCreature("Too many items!", oPC); + PlaySound("sim_cntresist"); + } +} + diff --git a/_module/nss/item_modder4.nss b/_module/nss/item_modder4.nss new file mode 100644 index 0000000..8142b25 --- /dev/null +++ b/_module/nss/item_modder4.nss @@ -0,0 +1,347 @@ +#include "moditem2" +object oItem; +object oTarget; +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ +object oPC = GetLastUsedBy(); +object oTarget = OBJECT_SELF; +int oCount=0; +int oPearl=0; +int oPcount=0; +int oCoin=0; +int oCloak = 0; +int oNcount= 0; +int oAmmo; + + +int oLbow = BASE_ITEM_LONGBOW; +int oHcrossbow = BASE_ITEM_HEAVYCROSSBOW; +int oSbow = BASE_ITEM_SHORTBOW; +int oLcrossbow = BASE_ITEM_LIGHTCROSSBOW; +int oDaxe = BASE_ITEM_DWARVENWARAXE; +int oRapier = BASE_ITEM_RAPIER; +int oLongsword = BASE_ITEM_LONGSWORD; +int oBastardsword = BASE_ITEM_BASTARDSWORD; +int oBattleaxe = BASE_ITEM_BATTLEAXE; +int oKukri = BASE_ITEM_KUKRI; +int oWarhammer = BASE_ITEM_WARHAMMER; +int oShortsword = BASE_ITEM_SHORTSWORD; +int oKama = BASE_ITEM_KAMA; +int oGreatsword = BASE_ITEM_GREATSWORD; +int oDbaxe = BASE_ITEM_DOUBLEAXE; +int oDsword = BASE_ITEM_TWOBLADEDSWORD; +int oWhip = BASE_ITEM_WHIP; +int oSickle = BASE_ITEM_SICKLE; +int oScythe = BASE_ITEM_SCYTHE; +int oMstar = BASE_ITEM_MORNINGSTAR; +int oQstaff = BASE_ITEM_QUARTERSTAFF; +int oScim = BASE_ITEM_SCIMITAR; +int oSpear = BASE_ITEM_SHORTSPEAR; +int oLflail = BASE_ITEM_LIGHTFLAIL; +int oHflail = BASE_ITEM_HEAVYFLAIL; +int oHberd = BASE_ITEM_HALBERD; +int oGaxe = BASE_ITEM_GREATAXE; +int oKatana = BASE_ITEM_KATANA; +int oLmace = BASE_ITEM_LIGHTMACE; +int oDmace = BASE_ITEM_DIREMACE; +int oDagg = BASE_ITEM_DAGGER; +int oBolt = BASE_ITEM_BOLT; +int oArrow = BASE_ITEM_ARROW; + + +object oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + ++oCount; + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +if (oCount==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")||(GetTag(oItem)=="coin2")) + { + FloatingTextStringOnCreature("You need an item as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("You need an Arena Token to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + } +if (oCount==0) + { + return; + } + +if ((oCount>1)&&(oCount<3)) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")|| + (GetTag(oItem)=="coin2")) + { + oPearl = 1; + ++oPcount; + } + else + { + ++oNcount; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + + if (oNcount==2) + { + FloatingTextStringOnCreature("You need an arena token and one item to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPcount>1) + { + FloatingTextStringOnCreature("You can not use more than one Arena Token", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPearl==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + { + oCoin=1; + } + if (GetTag(oItem)=="coin1") + { + oCoin=2; + } + if (GetTag(oItem)=="coin2") + { + oCoin=3; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + oItem=GetFirstItemInInventory(OBJECT_SELF); + if (oCoin==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ModNow(oItem, oPC)); + return; + } + else if (oCoin==3) + { + while (GetIsObjectValid(oItem)) + { + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)|| + (GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oCloak = 3; + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmmo=1; + } + if ((GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oAmmo=2; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==3) + { + if (oAmmo==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh2", TRUE, FALSE)); + return; + } + else if (oAmmo==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "bow", TRUE, FALSE)); + return; + } + + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a Silver arena token on this item", oPC); + } + } + else + { + while (GetIsObjectValid(oItem)) + { + if (GetBaseItemType(oItem)== BASE_ITEM_TOWERSHIELD) + { + oCloak = 1; + } + if (GetBaseItemType(oItem)== BASE_ITEM_AMULET) + { + oCloak = 2; + } + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)|| + (GetBaseItemType(oItem)==oArrow)) + { + oCloak = 3; + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmmo=1; + } + if ((GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oAmmo=2; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "damage_red", TRUE, FALSE)); + return; + } + else if (oCloak==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "amulet_red", TRUE, FALSE)); + return; + } + else if (oCloak==3) + { + if (oAmmo==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh2", TRUE, FALSE)); + return; + } + else if (oAmmo==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh_bow", TRUE, FALSE)); + return; + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh3", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + } + } + } + else + { + FloatingTextStringOnCreature("Too many items!", oPC); + PlaySound("sim_cntresist"); + } +} + diff --git a/_module/nss/item_modder5.nss b/_module/nss/item_modder5.nss new file mode 100644 index 0000000..bab589d --- /dev/null +++ b/_module/nss/item_modder5.nss @@ -0,0 +1,335 @@ +#include "moditem2" +object oItem; +object oTarget; +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ +object oPC = GetLastUsedBy(); +object oTarget = OBJECT_SELF; +int oCount=0; +int oPearl=0; +int oPcount=0; +int oCoin=0; +int oCloak = 0; +int oNcount= 0; +int oAmmo; + + +int oLbow = BASE_ITEM_LONGBOW; +int oHcrossbow = BASE_ITEM_HEAVYCROSSBOW; +int oSbow = BASE_ITEM_SHORTBOW; +int oLcrossbow = BASE_ITEM_LIGHTCROSSBOW; +int oDaxe = BASE_ITEM_DWARVENWARAXE; +int oRapier = BASE_ITEM_RAPIER; +int oLongsword = BASE_ITEM_LONGSWORD; +int oBastardsword = BASE_ITEM_BASTARDSWORD; +int oBattleaxe = BASE_ITEM_BATTLEAXE; +int oKukri = BASE_ITEM_KUKRI; +int oWarhammer = BASE_ITEM_WARHAMMER; +int oShortsword = BASE_ITEM_SHORTSWORD; +int oKama = BASE_ITEM_KAMA; +int oGreatsword = BASE_ITEM_GREATSWORD; +int oDbaxe = BASE_ITEM_DOUBLEAXE; +int oDsword = BASE_ITEM_TWOBLADEDSWORD; +int oWhip = BASE_ITEM_WHIP; +int oSickle = BASE_ITEM_SICKLE; +int oScythe = BASE_ITEM_SCYTHE; +int oMstar = BASE_ITEM_MORNINGSTAR; +int oQstaff = BASE_ITEM_QUARTERSTAFF; +int oScim = BASE_ITEM_SCIMITAR; +int oSpear = BASE_ITEM_SHORTSPEAR; +int oLflail = BASE_ITEM_LIGHTFLAIL; +int oHflail = BASE_ITEM_HEAVYFLAIL; +int oHberd = BASE_ITEM_HALBERD; +int oGaxe = BASE_ITEM_GREATAXE; +int oKatana = BASE_ITEM_KATANA; +int oLmace = BASE_ITEM_LIGHTMACE; +int oDmace = BASE_ITEM_DIREMACE; +int oDagg = BASE_ITEM_DAGGER; +int oBolt = BASE_ITEM_BOLT; +int oArrow = BASE_ITEM_ARROW; + + +object oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + ++oCount; + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +if (oCount==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")||(GetTag(oItem)=="coin2")) + { + FloatingTextStringOnCreature("You need an item as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("You need an Arena Token to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + } +if (oCount==0) + { + return; + } + +if ((oCount>1)&&(oCount<3)) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")|| + (GetTag(oItem)=="coin2")) + { + oPearl = 1; + ++oPcount; + } + else + { + ++oNcount; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + + if (oNcount==2) + { + FloatingTextStringOnCreature("You need an arena token and one item to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPcount>1) + { + FloatingTextStringOnCreature("You can not use more than one Arena Token", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPearl==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + { + oCoin=1; + } + if (GetTag(oItem)=="coin1") + { + oCoin=2; + } + if (GetTag(oItem)=="coin2") + { + oCoin=3; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + oItem=GetFirstItemInInventory(OBJECT_SELF); + if (oCoin==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ModNow(oItem, oPC)); + return; + } + else if (oCoin==3) + { + while (GetIsObjectValid(oItem)) + { + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oCloak = 3; + + if ((GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oAmmo=1; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==3) + { + + if (oAmmo==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "bow", TRUE, FALSE)); + return; + } + + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a Silver arena token on this item", oPC); + } + } + else + { + while (GetIsObjectValid(oItem)) + { + if (GetBaseItemType(oItem)== BASE_ITEM_TOWERSHIELD) + { + oCloak = 1; + } + if (GetBaseItemType(oItem)== BASE_ITEM_AMULET) + { + oCloak = 2; + } + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)|| + (GetBaseItemType(oItem)==oArrow)) + { + oCloak = 3; + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmmo=1; + } + if ((GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oAmmo=2; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "damage_red", TRUE, FALSE)); + return; + } + else if (oCloak==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "amulet_red", TRUE, FALSE)); + return; + } + else if (oCloak==3) + { + if (oAmmo==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh2", TRUE, FALSE)); + return; + } + else if (oAmmo==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh_bow", TRUE, FALSE)); + return; + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh3", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + } + } + } + else + { + FloatingTextStringOnCreature("Too many items!", oPC); + PlaySound("sim_cntresist"); + } +} + diff --git a/_module/nss/item_modder6.nss b/_module/nss/item_modder6.nss new file mode 100644 index 0000000..611c4d5 --- /dev/null +++ b/_module/nss/item_modder6.nss @@ -0,0 +1,349 @@ +#include "moditem2" +object oItem; +object oTarget; +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ +object oPC = GetLastUsedBy(); +object oTarget = OBJECT_SELF; +int oCount=0; +int oPearl=0; +int oPcount=0; +int oCoin=0; +int oCloak = 0; +int oNcount= 0; +int oAmmo; +int oAmm; + +int oLbow = BASE_ITEM_LONGBOW; +int oHcrossbow = BASE_ITEM_HEAVYCROSSBOW; +int oSbow = BASE_ITEM_SHORTBOW; +int oLcrossbow = BASE_ITEM_LIGHTCROSSBOW; +int oDaxe = BASE_ITEM_DWARVENWARAXE; +int oRapier = BASE_ITEM_RAPIER; +int oLongsword = BASE_ITEM_LONGSWORD; +int oBastardsword = BASE_ITEM_BASTARDSWORD; +int oBattleaxe = BASE_ITEM_BATTLEAXE; +int oKukri = BASE_ITEM_KUKRI; +int oWarhammer = BASE_ITEM_WARHAMMER; +int oShortsword = BASE_ITEM_SHORTSWORD; +int oKama = BASE_ITEM_KAMA; +int oGreatsword = BASE_ITEM_GREATSWORD; +int oDbaxe = BASE_ITEM_DOUBLEAXE; +int oDsword = BASE_ITEM_TWOBLADEDSWORD; +int oWhip = BASE_ITEM_WHIP; +int oSickle = BASE_ITEM_SICKLE; +int oScythe = BASE_ITEM_SCYTHE; +int oMstar = BASE_ITEM_MORNINGSTAR; +int oQstaff = BASE_ITEM_QUARTERSTAFF; +int oScim = BASE_ITEM_SCIMITAR; +int oSpear = BASE_ITEM_SHORTSPEAR; +int oLflail = BASE_ITEM_LIGHTFLAIL; +int oHflail = BASE_ITEM_HEAVYFLAIL; +int oHberd = BASE_ITEM_HALBERD; +int oGaxe = BASE_ITEM_GREATAXE; +int oKatana = BASE_ITEM_KATANA; +int oLmace = BASE_ITEM_LIGHTMACE; +int oDmace = BASE_ITEM_DIREMACE; +int oDagg = BASE_ITEM_DAGGER; +int oBolt = BASE_ITEM_BOLT; +int oArrow = BASE_ITEM_ARROW; + + +object oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + ++oCount; + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +if (oCount==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")||(GetTag(oItem)=="coin2")) + { + FloatingTextStringOnCreature("You need an item as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("You need an Arena Token to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + } +if (oCount==0) + { + return; + } + +if ((oCount>1)&&(oCount<3)) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")|| + (GetTag(oItem)=="coin2")) + { + oPearl = 1; + ++oPcount; + } + else + { + ++oNcount; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + + if (oNcount==2) + { + FloatingTextStringOnCreature("You need an arena token and one item to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPcount>1) + { + FloatingTextStringOnCreature("You can not use more than one Arena Token", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPearl==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + { + oCoin=1; + } + if (GetTag(oItem)=="coin1") + { + oCoin=2; + } + if (GetTag(oItem)=="coin2") + { + oCoin=3; + } + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmm=1; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + oItem=GetFirstItemInInventory(OBJECT_SELF); + if (oCoin==1) + { + if (oAmm==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a bronze arena token on this item", oPC); + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ModNow(oItem, oPC)); + return; + } + } + else if (oCoin==3) + { + while (GetIsObjectValid(oItem)) + { + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oCloak = 3; + + if ((GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oAmmo=1; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==3) + { + + if (oAmmo==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "bow", TRUE, FALSE)); + return; + } + + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a Silver arena token on this item", oPC); + } + } + else + { + while (GetIsObjectValid(oItem)) + { + if (GetBaseItemType(oItem)== BASE_ITEM_TOWERSHIELD) + { + oCloak = 1; + } + if (GetBaseItemType(oItem)== BASE_ITEM_AMULET) + { + oCloak = 2; + } + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)|| + (GetBaseItemType(oItem)==oArrow)) + { + oCloak = 3; + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmmo=1; + } + if ((GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oAmmo=2; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "damage_red", TRUE, FALSE)); + return; + } + else if (oCloak==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "amulet_red", TRUE, FALSE)); + return; + } + else if (oCloak==3) + { + if (oAmmo==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh2", TRUE, FALSE)); + return; + } + else if (oAmmo==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh_bow", TRUE, FALSE)); + return; + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh3", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + } + } + } + else + { + FloatingTextStringOnCreature("Too many items!", oPC); + PlaySound("sim_cntresist"); + } +} + diff --git a/_module/nss/item_modder7.nss b/_module/nss/item_modder7.nss new file mode 100644 index 0000000..0defade --- /dev/null +++ b/_module/nss/item_modder7.nss @@ -0,0 +1,329 @@ +#include "moditem2" +object oItem; +object oTarget; +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ +object oPC = GetLastUsedBy(); +object oTarget = OBJECT_SELF; +int oCount=0; +int oPearl=0; +int oPcount=0; +int oCoin=0; +int oCloak = 0; +int oNcount= 0; +int oAmmo = 0; +int oAmm = 0; + +int oLbow = BASE_ITEM_LONGBOW; +int oHcrossbow = BASE_ITEM_HEAVYCROSSBOW; +int oSbow = BASE_ITEM_SHORTBOW; +int oLcrossbow = BASE_ITEM_LIGHTCROSSBOW; +int oDaxe = BASE_ITEM_DWARVENWARAXE; +int oRapier = BASE_ITEM_RAPIER; +int oLongsword = BASE_ITEM_LONGSWORD; +int oBastardsword = BASE_ITEM_BASTARDSWORD; +int oBattleaxe = BASE_ITEM_BATTLEAXE; +int oKukri = BASE_ITEM_KUKRI; +int oWarhammer = BASE_ITEM_WARHAMMER; +int oShortsword = BASE_ITEM_SHORTSWORD; +int oKama = BASE_ITEM_KAMA; +int oGreatsword = BASE_ITEM_GREATSWORD; +int oDbaxe = BASE_ITEM_DOUBLEAXE; +int oDsword = BASE_ITEM_TWOBLADEDSWORD; +int oWhip = BASE_ITEM_WHIP; +int oSickle = BASE_ITEM_SICKLE; +int oScythe = BASE_ITEM_SCYTHE; +int oMstar = BASE_ITEM_MORNINGSTAR; +int oQstaff = BASE_ITEM_QUARTERSTAFF; +int oScim = BASE_ITEM_SCIMITAR; +int oSpear = BASE_ITEM_SHORTSPEAR; +int oLflail = BASE_ITEM_LIGHTFLAIL; +int oHflail = BASE_ITEM_HEAVYFLAIL; +int oHberd = BASE_ITEM_HALBERD; +int oGaxe = BASE_ITEM_GREATAXE; +int oKatana = BASE_ITEM_KATANA; +int oLmace = BASE_ITEM_LIGHTMACE; +int oDmace = BASE_ITEM_DIREMACE; +int oDagg = BASE_ITEM_DAGGER; +int oBolt = BASE_ITEM_BOLT; +int oArrow = BASE_ITEM_ARROW; + + +object oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + ++oCount; + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +if (oCount==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")||(GetTag(oItem)=="coin2")) + { + FloatingTextStringOnCreature("You need an item as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("You need an Arena Token to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + } +if (oCount==0) + { + return; + } + +if ((oCount>1)&&(oCount<3)) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")|| + (GetTag(oItem)=="coin2")) + { + oPearl = 1; + ++oPcount; + } + else + { + ++oNcount; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + + if (oNcount==2) + { + FloatingTextStringOnCreature("You need an arena token and one item to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPcount>1) + { + FloatingTextStringOnCreature("You can not use more than one Arena Token", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPearl==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + { + oCoin=1; + } + if (GetTag(oItem)=="coin1") + { + oCoin=2; + } + if (GetTag(oItem)=="coin2") + { + oCoin=3; + } + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmm=1; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + oItem=GetFirstItemInInventory(OBJECT_SELF); + if (oCoin==1) + { + if (oAmm==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a bronze arena token on this item", oPC); + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ModNow(oItem, oPC)); + return; + } + } + else if (oCoin==3) + { + while (GetIsObjectValid(oItem)) + { + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oCloak = 3; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==3) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh", TRUE, FALSE)); + return; + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a Silver arena token on this item", oPC); + } + } + else + { + while (GetIsObjectValid(oItem)) + { + if (GetBaseItemType(oItem)== BASE_ITEM_TOWERSHIELD) + { + oCloak = 1; + } + if (GetBaseItemType(oItem)== BASE_ITEM_AMULET) + { + oCloak = 2; + } + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)|| + (GetBaseItemType(oItem)==oArrow)) + { + oCloak = 3; + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmmo=1; + } + if ((GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oAmmo=2; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "damage_red", TRUE, FALSE)); + return; + } + else if (oCloak==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "amulet_red", TRUE, FALSE)); + return; + } + else if (oCloak==3) + { + if (oAmmo==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh2", TRUE, FALSE)); + return; + } + else if (oAmmo==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh_bow", TRUE, FALSE)); + return; + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh3", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + } + } + } + else + { + FloatingTextStringOnCreature("Too many items!", oPC); + PlaySound("sim_cntresist"); + } +} + diff --git a/_module/nss/item_modder8.nss b/_module/nss/item_modder8.nss new file mode 100644 index 0000000..a118b3d --- /dev/null +++ b/_module/nss/item_modder8.nss @@ -0,0 +1,369 @@ +#include "moditem2" +object oItem; +object oTarget; + + +void main() +{ +object oPC = GetLastUsedBy(); +object oMod = GetModule(); +object oTarget = OBJECT_SELF; +int oCount=0; +int oPearl=0; +int oPcount=0; +int oCoin=0; +int oCloak = 0; +int oNcount= 0; +int oAmmo = 0; +int oAmmo2 = 0; +int oAmm = 0; + +int oLbow = BASE_ITEM_LONGBOW; +int oHcrossbow = BASE_ITEM_HEAVYCROSSBOW; +int oSbow = BASE_ITEM_SHORTBOW; +int oLcrossbow = BASE_ITEM_LIGHTCROSSBOW; +int oDaxe = BASE_ITEM_DWARVENWARAXE; +int oRapier = BASE_ITEM_RAPIER; +int oLongsword = BASE_ITEM_LONGSWORD; +int oBastardsword = BASE_ITEM_BASTARDSWORD; +int oBattleaxe = BASE_ITEM_BATTLEAXE; +int oKukri = BASE_ITEM_KUKRI; +int oWarhammer = BASE_ITEM_WARHAMMER; +int oShortsword = BASE_ITEM_SHORTSWORD; +int oKama = BASE_ITEM_KAMA; +int oGreatsword = BASE_ITEM_GREATSWORD; +int oDbaxe = BASE_ITEM_DOUBLEAXE; +int oDsword = BASE_ITEM_TWOBLADEDSWORD; +int oWhip = BASE_ITEM_WHIP; +int oSickle = BASE_ITEM_SICKLE; +int oScythe = BASE_ITEM_SCYTHE; +int oMstar = BASE_ITEM_MORNINGSTAR; +int oQstaff = BASE_ITEM_QUARTERSTAFF; +int oScim = BASE_ITEM_SCIMITAR; +int oSpear = BASE_ITEM_SHORTSPEAR; +int oLflail = BASE_ITEM_LIGHTFLAIL; +int oHflail = BASE_ITEM_HEAVYFLAIL; +int oHberd = BASE_ITEM_HALBERD; +int oGaxe = BASE_ITEM_GREATAXE; +int oKatana = BASE_ITEM_KATANA; +int oLmace = BASE_ITEM_LIGHTMACE; +int oDmace = BASE_ITEM_DIREMACE; +int oDagg = BASE_ITEM_DAGGER; +int oBolt = BASE_ITEM_BOLT; +int oArrow = BASE_ITEM_ARROW; +int oStaff = BASE_ITEM_MAGICSTAFF; +int oHaxe = BASE_ITEM_HANDAXE; + +SetLocalInt(oMod, "staff", 0); + +object oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + ++oCount; + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +if (oCount==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")||(GetTag(oItem)=="coin2")) + { + FloatingTextStringOnCreature("You need an item as well.", oPC); + PlaySound("sim_cntresist"); + return; + } + else + { + FloatingTextStringOnCreature("You need an Arena Token to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + } +if (oCount==0) + { + return; + } + +if ((oCount>1)&&(oCount<3)) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")|| + (GetTag(oItem)=="coin2")) + { + oPearl = 1; + ++oPcount; + } + else + { + ++oNcount; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + + if (oNcount==2) + { + FloatingTextStringOnCreature("You need an arena token and one item to invoke Amaterasu's power", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPcount>1) + { + FloatingTextStringOnCreature("You can not use more than one Arena Token", oPC); + PlaySound("sim_cntresist"); + return; + } + if (oPearl==1) + { + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + { + oCoin=1; + } + if (GetTag(oItem)=="coin1") + { + oCoin=2; + } + if (GetTag(oItem)=="coin2") + { + oCoin=3; + } + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmm=1; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + oItem=GetFirstItemInInventory(OBJECT_SELF); + if (oCoin==1) + { + if (oAmm==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a bronze arena token on this item", oPC); + return; + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ModNow(oItem, oPC)); + return; + } + } + else if (oCoin==3) + { + while (GetIsObjectValid(oItem)) + { + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oArrow)|| + (GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)|| + (GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oStaff)|| + (GetBaseItemType(oItem)==oHaxe)) + { + oCloak = 3; + + if (GetBaseItemType(oItem)==oStaff) + {SetLocalInt(oMod, "staff", 1);} + if ((GetBaseItemType(oItem)==oBolt)|| + (GetBaseItemType(oItem)==oArrow)) + { + oAmm=1; + } + if ((GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)) + { + oAmm=2; + } + if ((GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oAmm=3; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==3) + { + if (oAmm==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh2", TRUE, FALSE)); + return; + } + else if (oAmm==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "bow3", TRUE, FALSE)); + return; + } + else if (oAmm==3) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "bow4", TRUE, FALSE)); + return; + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a Silver arena token on this item", oPC); + return; + } + } + else + { + while (GetIsObjectValid(oItem)) + { + if (GetBaseItemType(oItem)== BASE_ITEM_ARMOR) + { + oCloak = 1; + } + if (GetBaseItemType(oItem)== BASE_ITEM_AMULET) + { + oCloak = 2; + } + if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oScythe)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)|| + (GetBaseItemType(oItem)==oStaff)|| + (GetBaseItemType(oItem)==oHaxe)) + { + if (GetBaseItemType(oItem)==oStaff) + {SetLocalInt(oMod, "staff", 1);} + oCloak = 3; + if ((GetBaseItemType(oItem)==oLbow)|| + (GetBaseItemType(oItem)==oSbow)|| + (GetBaseItemType(oItem)==oLcrossbow)|| + (GetBaseItemType(oItem)==oHcrossbow)) + { + oAmmo=1; + } + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + if (oCloak==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "armour_silver", TRUE, FALSE)); + return; + } + else if (oCloak==2) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "amulet_red", TRUE, FALSE)); + return; + } + else if (oCloak==3) + { + if (oAmmo==1) + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh_bow", TRUE, FALSE)); + return; + } + else + { + AssignCommand(oPC, PlaySound("as_mg_telepin1")); + AssignCommand(oPC, PlaySound("sce_positive")); + DelayCommand(0.5, ActionStartConversation(oPC, "weap_enh3", TRUE, FALSE)); + return; + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + return; + } + } + } + } + else + { + FloatingTextStringOnCreature("Too many items!", oPC); + PlaySound("sim_cntresist"); + return; + } +} + diff --git a/_module/nss/kd_imbue.nss b/_module/nss/kd_imbue.nss new file mode 100644 index 0000000..793c7b8 --- /dev/null +++ b/_module/nss/kd_imbue.nss @@ -0,0 +1,6 @@ +#include "immune_imbue" + +void main() +{ +ImmuneImbue(IP_CONST_IMMUNITYMISC_KNOCKDOWN); +} diff --git a/_module/nss/keen_check.nss b/_module/nss/keen_check.nss new file mode 100644 index 0000000..5b6de0a --- /dev/null +++ b/_module/nss/keen_check.nss @@ -0,0 +1,17 @@ +int StartingConditional() +{ + int oFlag = 0; + object oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetLocalInt(oItem, "keen_done")==1) + {oFlag=1;} + + oItem = GetNextItemInInventory(OBJECT_SELF); + } + // Inspect local variables + + if(!(oFlag == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/keen_imbue.nss b/_module/nss/keen_imbue.nss new file mode 100644 index 0000000..a38f22a --- /dev/null +++ b/_module/nss/keen_imbue.nss @@ -0,0 +1,37 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Keen(object oItem) +{ +int oDamage; +itemproperty ipAdd; +SetLocalInt(oItem, "keen_done", 1); +ipAdd = ItemPropertyKeen(); +IPSafeAddItemProperty(oItem, ipAdd); + + +} + + +void KeenImbue () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_SUMMON_EPIC_UNDEAD, OBJECT_SELF); +PCEffect(1.5,VFX_DUR_STONEHOLD, OBJECT_SELF); +PCEffect(2.0,VFX_IMP_SUPER_HEROISM, OBJECT_SELF); +PCEffect(2.5,VFX_DUR_PROTECTION_EVIL_MAJOR, OBJECT_SELF); +DelayCommand(1.0, Keen(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} +//void main (){} diff --git a/_module/nss/keenweap_imbue.nss b/_module/nss/keenweap_imbue.nss new file mode 100644 index 0000000..daf1995 --- /dev/null +++ b/_module/nss/keenweap_imbue.nss @@ -0,0 +1,6 @@ +#include "keen_imbue" + +void main() +{ +KeenImbue(); +} diff --git a/_module/nss/knockdown_imbue.nss b/_module/nss/knockdown_imbue.nss new file mode 100644 index 0000000..9150ce9 --- /dev/null +++ b/_module/nss/knockdown_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_KNOCKDOWN); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/ladder_out.nss b/_module/nss/ladder_out.nss new file mode 100644 index 0000000..44c90c2 --- /dev/null +++ b/_module/nss/ladder_out.nss @@ -0,0 +1,14 @@ +void main() +{ +object oPC = GetLastUsedBy(); +object oTarget = GetWaypointByTag("trap_wp"); +location lLocation = GetLocation(oTarget); +PlaySound("fs_carpt_hard1"); +DelayCommand(0.3, PlaySound("fs_carpt_hard2")); +DelayCommand(0.6, PlaySound("fs_carpt_hard1")); +DelayCommand(0.9, PlaySound("fs_carpt_hard2")); +DelayCommand(1.2, PlaySound("fs_carpt_hard1")); + +DelayCommand(1.5, AssignCommand(oPC, JumpToLocation(lLocation))); +DelayCommand(9.0, AssignCommand(GetObjectByTag("aoc_grate"), ActionPlayAnimation(ANIMATION_PLACEABLE_CLOSE))); +} diff --git a/_module/nss/law_evi_align.nss b/_module/nss/law_evi_align.nss new file mode 100644 index 0000000..4037e69 --- /dev/null +++ b/_module/nss/law_evi_align.nss @@ -0,0 +1,10 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + + if (!(GetAlignmentGoodEvil(oPC) == ALIGNMENT_EVIL && + GetAlignmentLawChaos(oPC) == ALIGNMENT_LAWFUL)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/law_goo_align.nss b/_module/nss/law_goo_align.nss new file mode 100644 index 0000000..5cf7b8d --- /dev/null +++ b/_module/nss/law_goo_align.nss @@ -0,0 +1,10 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + + if (!(GetAlignmentGoodEvil(oPC) == ALIGNMENT_GOOD && + GetAlignmentLawChaos(oPC) == ALIGNMENT_LAWFUL)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ld_imbue.nss b/_module/nss/ld_imbue.nss new file mode 100644 index 0000000..bc124c3 --- /dev/null +++ b/_module/nss/ld_imbue.nss @@ -0,0 +1,6 @@ +#include "immune_imbue" + +void main() +{ +ImmuneImbue(IP_CONST_IMMUNITYMISC_LEVEL_ABIL_DRAIN); +} diff --git a/_module/nss/lded.nss b/_module/nss/lded.nss new file mode 100644 index 0000000..3e0f4e7 --- /dev/null +++ b/_module/nss/lded.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName lded +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/11/2004 1:24:19 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "lorddead") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/le.nss b/_module/nss/le.nss new file mode 100644 index 0000000..6378e0a --- /dev/null +++ b/_module/nss/le.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC=GetPCSpeaker(); +ActionCastFakeSpellAtObject(SPELL_EVARDS_BLACK_TENTACLES,oPC); +DelayCommand(2.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_PWSTUN),oPC)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_LAWFUL,85)); +DelayCommand(2.7,AdjustAlignment(oPC,ALIGNMENT_LAWFUL,15)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_EVIL,85)); +DelayCommand(2.7,AdjustAlignment(oPC,ALIGNMENT_EVIL,15)); +} diff --git a/_module/nss/lever.nss b/_module/nss/lever.nss new file mode 100644 index 0000000..02bb725 --- /dev/null +++ b/_module/nss/lever.nss @@ -0,0 +1,35 @@ +void main() +{ + object oPC = GetLastUsedBy(); + object oDummy = GetNearestObjectByTag("ArmorStand"); + int nActive = GetLocalInt (OBJECT_SELF,"X2_L_PLC_ACTIVATED_STATE"); + int iSetting; + + if (GetReputation(oDummy, oPC) > 10) + { + iSetting = 0; + } + else + { + iSetting = 50; + } + + if (!nActive) + { + ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); + SetStandardFactionReputation(STANDARD_FACTION_COMMONER, iSetting, oPC); + ClearPersonalReputation(oPC, oDummy); + AssignCommand(oDummy, ClearAllActions()); + } + else + { + ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); + SetStandardFactionReputation(STANDARD_FACTION_COMMONER, iSetting, oPC); + ClearPersonalReputation(oPC, oDummy); + AssignCommand(oDummy, ClearAllActions()); + } + // Store New State + SetLocalInt(OBJECT_SELF,"X2_L_PLC_ACTIVATED_STATE",!nActive); + + +} diff --git a/_module/nss/lg.nss b/_module/nss/lg.nss new file mode 100644 index 0000000..39da4d3 --- /dev/null +++ b/_module/nss/lg.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC=GetPCSpeaker(); +ActionCastFakeSpellAtObject(SPELL_HEAL,oPC); +DelayCommand(2.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_PWSTUN),oPC)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_LAWFUL,85)); +DelayCommand(2.7,AdjustAlignment(oPC,ALIGNMENT_LAWFUL,15)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_GOOD,85)); +DelayCommand(2.7,AdjustAlignment(oPC,ALIGNMENT_GOOD,15)); +} diff --git a/_module/nss/light_bet.nss b/_module/nss/light_bet.nss new file mode 100644 index 0000000..57e16e3 --- /dev/null +++ b/_module/nss/light_bet.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "team_bet", 1); +} diff --git a/_module/nss/light_shop.nss b/_module/nss/light_shop.nss new file mode 100644 index 0000000..8265e14 --- /dev/null +++ b/_module/nss/light_shop.nss @@ -0,0 +1,24 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +if (GetItemPossessedBy(oPC, "nordock_token")!=OBJECT_INVALID) +oTarget = GetObjectByTag("n_light"); +else +oTarget = GetObjectByTag("light_shop"); +PlaySound("it_bladesmall"); +OpenStore(oTarget, oPC, 0, 0); + +} + diff --git a/_module/nss/ln.nss b/_module/nss/ln.nss new file mode 100644 index 0000000..325fbbc --- /dev/null +++ b/_module/nss/ln.nss @@ -0,0 +1,9 @@ +void main() +{ +object oPC=GetPCSpeaker(); +ActionCastFakeSpellAtObject(SPELL_STORM_OF_VENGEANCE,oPC); +DelayCommand(2.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_PWSTUN),oPC)); +DelayCommand(2.5,AdjustAlignment(oPC,ALIGNMENT_NEUTRAL,50)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_LAWFUL,35)); +DelayCommand(2.7,AdjustAlignment(oPC,ALIGNMENT_LAWFUL,15)); +} diff --git a/_module/nss/loot.nss b/_module/nss/loot.nss new file mode 100644 index 0000000..396817a --- /dev/null +++ b/_module/nss/loot.nss @@ -0,0 +1,410 @@ +void GoodTomb(int nRoll, object oTarget, object oPC) +{ +string sTomb; +string ResRef; +object oTombChest = GetObjectByTag("tomb_chest"); +object oTombChest2 = GetObjectByTag("tomb_chest2"); +object oTombChest3 = GetObjectByTag("tomb_chest3"); +object oItem; +int oFlag = 0; +int oFlag2 = 0; +int nDice; +switch(nRoll) +{ +case 1: sTomb = "deathwurm"; break; +case 2: sTomb = "deathwurm2"; break; +case 3: sTomb = "balroglord"; break; +case 4: sTomb = "balroglord2"; break; +case 5: sTomb = "darkreaver"; break; +case 6: sTomb = "darkreaver2"; break; +case 7: sTomb = "wardemon"; break; +case 8: sTomb = "wardemon2"; break; +case 9: sTomb = "thevaldar"; break; +case 10: sTomb = "thevaldar2"; break; +case 11: sTomb = "bardheratic"; break; +case 12: sTomb = "bardheratic2"; break; +case 13: sTomb = "kamaji"; break; +case 14: sTomb = "kamaji2"; break; +case 15: sTomb = "mistress"; break; +case 16: sTomb = "mistress2"; break; +case 17: sTomb = "baal1"; break; +case 18: sTomb = "baal2"; break; +case 19: sTomb = "lucifer1"; break; +case 20: sTomb = "lucifer2"; break; +} + +// Check player's inventory for the tomb. If its already there, flag it + +oItem = GetFirstItemInInventory(oPC); +while (oItem!=OBJECT_INVALID) +{ + ResRef = GetResRef(oItem); + if (ResRef==sTomb) + { + oFlag=1; + } + if (ResRef=="phoenix_tome") + { + oFlag2=1; + } + oItem = GetNextItemInInventory(oPC); +} + +// Check special tomb-storage chest #1. If its already there, flag it. + +oItem = GetFirstItemInInventory(oTombChest); +while (oItem!=OBJECT_INVALID) +{ + ResRef = GetResRef(oItem); + if (ResRef==sTomb) + { + oFlag=1; + } + if (ResRef=="phoenix_tome") + { + oFlag2=1; + } + oItem = GetNextItemInInventory(oTombChest); +} + +// Check special tomb-storage chest #2. If its already there, flag it. + +oItem = GetFirstItemInInventory(oTombChest2); +while (oItem!=OBJECT_INVALID) +{ + ResRef = GetResRef(oItem); + if (ResRef==sTomb) + { + oFlag=1; + } + if (ResRef=="phoenix_tome") + { + oFlag2=1; + } + oItem = GetNextItemInInventory(oTombChest2); +} + +// Check special tomb-storage chest #3. If its already there, flag it. + +oItem = GetFirstItemInInventory(oTombChest3); +while (oItem!=OBJECT_INVALID) +{ + ResRef = GetResRef(oItem); + if (ResRef==sTomb) + { + oFlag=1; + } + if (ResRef=="phoenix_tome") + { + oFlag2=1; + } + oItem = GetNextItemInInventory(oTombChest3); +} + + +// if the player doesn't have the tomb, and its not in his chests, drop it. + +if (oFlag!=1) + { + CreateItemOnObject(sTomb, oTarget); + + } +if ((d20()>=15)&&(oFlag2!=1)) + { + CreateItemOnObject("phoenix_tome", oTarget); + } +} + + void EvilTomb(int nRoll, object oTarget, object oPC) +{ +object oTombChest = GetObjectByTag("tomb_chest"); +object oTombChest2 = GetObjectByTag("tomb_chest2"); +object oTombChest3 = GetObjectByTag("tomb_chest3"); +string sTomb; +string ResRef; +object oItem; +int oFlag = 0; +int oFlag2 = 0; +int nDice; +switch(nRoll) +{ +case 1: sTomb = "gdeathwurm"; break; +case 2: sTomb = "gdeathwurm2"; break; +case 3: sTomb = "gbalroglord"; break; +case 4: sTomb = "gbalroglord2"; break; +case 5: sTomb = "gdarkreaver"; break; +case 6: sTomb = "gdarkreaver2"; break; +case 7: sTomb = "gwardemon"; break; +case 8: sTomb = "gwardemon2"; break; +case 9: sTomb = "gthevaldar"; break; +case 10: sTomb = "gthevaldar2"; break; +case 11: sTomb = "gbardheratic"; break; +case 12: sTomb = "gbardheratic2"; break; +case 13: sTomb = "gkamaji"; break; +case 14: sTomb = "gkamaji2"; break; +case 15: sTomb = "gmistress"; break; +case 16: sTomb = "gmistress2"; break; +case 17: sTomb = "gbaal"; break; +case 18: sTomb = "gbaal2"; break; +case 19: sTomb = "glucifer1"; break; +case 20: sTomb = "glucifer2"; break; +} +oItem = GetFirstItemInInventory(oPC); +while (oItem!=OBJECT_INVALID) +{ + ResRef = GetResRef(oItem); + if (ResRef==sTomb) + { + oFlag=1; + } + if (ResRef=="phoenix_tome") + { + oFlag2=1; + } + oItem = GetNextItemInInventory(oPC); +} + // Check special tomb-storage chest #1. If its already there, flag it. + +oItem = GetFirstItemInInventory(oTombChest); +while (oItem!=OBJECT_INVALID) +{ + ResRef = GetResRef(oItem); + if (ResRef==sTomb) + { + oFlag=1; + } + if (ResRef=="phoenix_tome") + { + oFlag2=1; + } + oItem = GetNextItemInInventory(oTombChest); +} + +// Check special tomb-storage chest #2. If its already there, flag it. + +oItem = GetFirstItemInInventory(oTombChest2); +while (oItem!=OBJECT_INVALID) +{ + ResRef = GetResRef(oItem); + if (ResRef==sTomb) + { + oFlag=1; + } + if (ResRef=="phoenix_tome") + { + oFlag2=1; + } + oItem = GetNextItemInInventory(oTombChest2); +} + +// Check special tomb-storage chest #3. If its already there, flag it. + +oItem = GetFirstItemInInventory(oTombChest3); +while (oItem!=OBJECT_INVALID) +{ + ResRef = GetResRef(oItem); + if (ResRef==sTomb) + { + oFlag=1; + } + if (ResRef=="phoenix_tome") + { + oFlag2=1; + } + oItem = GetNextItemInInventory(oTombChest3); +} + +if (oFlag!=1) + { + + CreateItemOnObject(sTomb, oTarget); + + } +if ((d20()>=15)&&(oFlag2!=1)) + { + CreateItemOnObject("phoenix_tome", oTarget); + } + + +} + + +void TombSpawn(object oTarget, object oPC) +{ +int oMode = GetLocalInt(GetModule(), "gamemode"); +int oDrop; +string oCreature = GetTag(oTarget); +if (oCreature=="dragon1") {oDrop=1;} +if (oCreature=="zep_balrog001") {oDrop=2;} +if (oCreature=="dopple") {oDrop=3;} +if (oCreature=="zep_pitfiend001") {oDrop=4;} +if (oCreature=="zep_halfdrafn001") {oDrop=5;} +if (oCreature=="palewarrior") {oDrop=6;} +if (oCreature=="zep_marilithb001") {oDrop=7;} +if (oCreature=="boss1") {oDrop=8;} +if (oCreature=="lord") {oDrop=9;} +if (oCreature=="lucifer") {oDrop=10;} + +switch(oDrop) +{ +case 1: + { + if (oMode==1) + { + EvilTomb(d4(), oTarget, oPC); + } + else + { + GoodTomb(d4(), oTarget, oPC); + } + } + break; +case 2: + { + if (oMode==1) + { + EvilTomb((d4()+2), oTarget, oPC); + } + else + { + GoodTomb((d4()+2), oTarget, oPC); + } + } + break; +case 3: + { + if (oMode==1) + { + EvilTomb((d4()+4), oTarget, oPC); + } + else + { + GoodTomb((d4()+4), oTarget, oPC); + } + } + break; +case 4: + { + if (oMode==1) + { + EvilTomb((d4()+6), oTarget, oPC); + } + else + { + GoodTomb((d4()+6), oTarget, oPC); + } + } + break; +case 5: + { + if (oMode==1) + { + EvilTomb((d4()+8), oTarget, oPC); + } + else + { + GoodTomb((d4()+8), oTarget, oPC); + } + } + break; +case 6: + { + if (oMode==1) + { + EvilTomb((d4()+10), oTarget, oPC); + } + else + { + GoodTomb((d4()+10), oTarget, oPC); + } + } + break; +case 7: + { + if (oMode==1) + { + EvilTomb((d2()+14), oTarget, oPC); + } + else + { + GoodTomb((d2()+14), oTarget, oPC); + } + } + break; +case 8: + { + if (oMode==1) + { + EvilTomb((d2()+16), oTarget, oPC); + } + else + { + GoodTomb((d2()+16), oTarget, oPC); + } + } + break; +case 9: + { + if (oMode==1) + { + EvilTomb((d2()+18), oTarget, oPC); + } + else + { + GoodTomb((d2()+18), oTarget, oPC); + } + } + break; +case 10: + { + if (oMode==1) + { + //EvilTomb(d4(), oTarget, oPC); + } + else + { + //GoodTomb(d4(), oTarget, oPC); + } + } + break; +} +} + + +void CreateGold(object oTarget, int nStackSize) +{ +object oPC = GetLastKiller(); +object oMod = GetModule(); +int iHwar = GetLocalInt(oMod, "hwar_on"); +if (iHwar!=1) +{ +int oBonus; +int oKbonus; +int oPurse; +string sItemTemplate1 = "nw_it_gold001"; // gold +int oKills = GetLocalInt(oPC, "iKilled"); +int oDeaths = GetLocalInt(oPC, "iDied"); +int oRankMultiplyer = GetLocalInt(oPC, "status"); +oBonus = oRankMultiplyer*200; +oKbonus = (oKills-oDeaths)*50; +oPurse = oBonus+oKbonus; +if (oRankMultiplyer>1) + { + SendMessageToPC(oPC, "Rank Bonus Purse Awarded: "+IntToString(oBonus)+" gold"); + GiveGoldToCreature(oPC, oBonus); + } +if (oKills>0) + { + SendMessageToPC(oPC, "Kill Bonus Purse Awarded: "+IntToString(oKbonus)+" gold"); + GiveGoldToCreature(oPC, oKbonus); + PlaySound("it_coins"); + } +//nStackSize+=(oKills-oDeaths)*50; +//nStackSize+=oRankMultiplyer*200; + +CreateItemOnObject(sItemTemplate1, oTarget, nStackSize); + +} +} +//void main () {} + diff --git a/_module/nss/loot2.nss b/_module/nss/loot2.nss new file mode 100644 index 0000000..8302b9e --- /dev/null +++ b/_module/nss/loot2.nss @@ -0,0 +1,350 @@ +void GoodTomb(int nRoll, object oTarget, object oPC) +{ +string sTomb; +string ResRef; +object oItem; +int oFlag = 0; +int nDice; +switch(nRoll) +{ +case 1: sTomb = "deathwurm"; break; +case 2: sTomb = "deathwurm2"; break; +case 3: sTomb = "blaroglord"; break; +case 4: sTomb = "blaroglord2"; break; +case 5: sTomb = "darkreaver"; break; +case 6: sTomb = "darkreaver2"; break; +case 7: sTomb = "wardemonr"; break; +case 8: sTomb = "wardemon2"; break; +case 9: sTomb = "thevalar"; break; +case 10: sTomb = "thevalar2"; break; +case 11: sTomb = "bardheratic"; break; +case 12: sTomb = "bardheratic2"; break; +case 13: sTomb = "kamaji"; break; +case 14: sTomb = "kamaji2"; break; +case 15: sTomb = "mistress"; break; +case 16: sTomb = "mistress2"; break; +case 17: sTomb = "baal1"; break; +case 18: sTomb = "baal12"; break; +case 19: sTomb = "lucifer1"; break; +case 20: sTomb = "lucifer12"; break; +} +oItem = GetFirstItemInInventory(oPC); +while (oItem!=OBJECT_INVALID) +{ + ResRef = GetResRef(oItem); + if (ResRef==sTomb) + { + oFlag=1; + } + oItem = GetNextItemInInventory(oPC); +} +if (oFlag!=1) + { + CreateItemOnObject(sTomb, oTarget); + } +} + + void EvilTomb(int nRoll, object oTarget, object oPC) +{ +string sTomb; +string ResRef; +object oItem; +int oFlag = 0; +int nDice; +switch(nRoll) +{ +case 1: sTomb = "gdeathwurm"; break; +case 2: sTomb = "gdeathwurm2"; break; +case 3: sTomb = "gblaroglord"; break; +case 4: sTomb = "gblaroglord2"; break; +case 5: sTomb = "gdarkreaver"; break; +case 6: sTomb = "gdarkreaver2"; break; +case 7: sTomb = "gwardemonr"; break; +case 8: sTomb = "gwardemon2"; break; +case 9: sTomb = "gthevalar"; break; +case 10: sTomb = "gthevalar2"; break; +case 11: sTomb = "gbardheratic"; break; +case 12: sTomb = "gbardheratic2"; break; +case 13: sTomb = "gkamaji"; break; +case 14: sTomb = "gkamaji2"; break; +case 15: sTomb = "gmistress"; break; +case 16: sTomb = "gmistress2"; break; +case 17: sTomb = "gbaal1"; break; +case 18: sTomb = "gbaal12"; break; +case 19: sTomb = "glucifer1"; break; +case 20: sTomb = "glucifer12"; break; +} +oItem = GetFirstItemInInventory(oPC); +while (oItem!=OBJECT_INVALID) +{ + ResRef = GetResRef(oItem); + if (ResRef==sTomb) + { + oFlag=1; + } + oItem = GetNextItemInInventory(oPC); +} +if (oFlag!=1) + { + CreateItemOnObject(sTomb, oTarget); + } +} + + +void TombSpawn(object oTarget, object oPC) +{ +int oMode = GetLocalInt(GetModule(), "gamemode"); +int oDrop; +string oCreature = GetTag(oTarget); +if (oCreature=="dragon1") {oDrop=1;} +if (oCreature=="zep_balrog001") {oDrop=2;} +if (oCreature=="dopple") {oDrop=3;} +if (oCreature=="zep_pitfiend001") {oDrop=4;} +if (oCreature=="zep_halfdrafn001") {oDrop=5;} +if (oCreature=="palewarrior") {oDrop=6;} +if (oCreature=="zep_marilithb001") {oDrop=7;} +if (oCreature=="boss1") {oDrop=8;} +if (oCreature=="lord") {oDrop=9;} +if (oCreature=="lucifer") {oDrop=10;} + +switch(oDrop) +{ +case 1: + { + if (oMode==1) + { + EvilTomb(d4(), oTarget, oPC); + } + else + { + GoodTomb(d4(), oTarget, oPC); + } + } + break; +case 2: + { + if (oMode==1) + { + EvilTomb(d6(), oTarget, oPC); + } + else + { + GoodTomb(d6(), oTarget, oPC); + } + } + break; +case 3: + { + if (oMode==1) + { + EvilTomb(d8(), oTarget, oPC); + } + else + { + GoodTomb(d8(), oTarget, oPC); + } + } + break; +case 4: + { + if (oMode==1) + { + EvilTomb(d10(), oTarget, oPC); + } + else + { + GoodTomb(d10(), oTarget, oPC); + } + } + break; +case 5: + { + if (oMode==1) + { + EvilTomb(d12(), oTarget, oPC); + } + else + { + GoodTomb(d12(), oTarget, oPC); + } + } + break; +case 6: + { + if (oMode==1) + { + EvilTomb((d8()+d6()), oTarget, oPC); + } + else + { + GoodTomb((d8()+d6()), oTarget, oPC); + } + } + break; +case 7: + { + if (oMode==1) + { + EvilTomb(d8(2), oTarget, oPC); + } + else + { + GoodTomb(d8(2), oTarget, oPC); + } + } + break; +case 8: + { + if (oMode==1) + { + EvilTomb(d6(3), oTarget, oPC); + } + else + { + GoodTomb(d6(3), oTarget, oPC); + } + } + break; +case 9: + { + if (oMode==1) + { + EvilTomb(d20(), oTarget, oPC); + } + else + { + GoodTomb(d20(), oTarget, oPC); + } + } + break; +case 10: + { + if (oMode==1) + { + EvilTomb(d20(), oTarget, oPC); + } + else + { + GoodTomb(d20(), oTarget, oPC); + } + } + break; +} +} + +void main () {} +/* +nDice = d20(); +if (nDice==1) + { + sTomb = "deathwurm"; + + } +if (nDice==2) + { + sTomb = "blaroglord"; + + } +if (nDice==3) + { + sTomb = "darkreaver"; + + } +if (nDice==4) + { + sTomb = "wardemon"; + } +if (nDice==5) + { + sTomb = "thevalar"; + } +if (nDice==6) + { + sTomb = "deathwurm2"; + } +if (nDice==7) + { + sTomb = "blaroglord2"; + } +if (nDice==8) + { + sTomb = "darkreaver2"; + } +if (nDice==9) + { + sTomb = "wardemon2"; + } +if (nDice==10) + { + sTomb = "thevalar2"; + } +if (nDice==11) + { + sTomb = "baal1"; + + } +if (nDice==12) + { + sTomb = "baal2"; + + } +if (nDice==13) + { + sTomb = "bardheratic"; + + } +if (nDice==14) + { + sTomb = "bardheratic2"; + } +if (nDice==15) + { + sTomb = "kamaji"; + } +if (nDice==16) + { + sTomb = "kamaji2"; + } +if (nDice==17) + { + sTomb = "mistress"; + } +if (nDice==18) + { + sTomb = "mistress2"; + } +if (nDice==19) + { + sTomb = "lucifer1"; + } +if (nDice==20) + { + sTomb = "lucifer2"; + } +oItem = GetFirstItemInInventory(oPC); +while (oItem!=OBJECT_INVALID) +{ + ResRef = GetResRef(oItem); + if (ResRef==sTomb) + { + oFlag=1; + } + oItem = GetNextItemInInventory(oPC); +} +if (oFlag!=1) + { + CreateItemOnObject(sTomb, oTarget); + } +} + +void CreateGold(object oTarget, int nStackSize) +{ +object oPC = GetLastKiller(); +int oKills = GetLocalInt(oPC, "iKilled"); +int oDeaths = GetLocalInt(oPC, "iDied"); +nStackSize+=(oKills-oDeaths)*100; +string sItemTemplate1 = "nw_it_gold001"; // gold +CreateItemOnObject(sItemTemplate1, oTarget, nStackSize); +} + +void main (){} diff --git a/_module/nss/loot_old.nss b/_module/nss/loot_old.nss new file mode 100644 index 0000000..9b26ec4 --- /dev/null +++ b/_module/nss/loot_old.nss @@ -0,0 +1,124 @@ +void TombSpawn(object oTarget, object oPC) +{ +// Use a switch statement, it will simplify adding or changing cases +string sTomb; +string ResRef; +object oItem; +int oFlag = 0; +int nDice; +string oMonst; +oMonst = GetTag(oTarget); +nDice = d20(); +if (nDice==1) + { + sTomb = "deathwurm"; + + } +if (nDice==2) + { + sTomb = "blaroglord"; + + } +if (nDice==3) + { + sTomb = "darkreaver"; + + } +if (nDice==4) + { + sTomb = "wardemon"; + } +if (nDice==5) + { + sTomb = "thevalar"; + } +if (nDice==6) + { + sTomb = "deathwurm2"; + } +if (nDice==7) + { + sTomb = "blaroglord2"; + } +if (nDice==8) + { + sTomb = "darkreaver2"; + } +if (nDice==9) + { + sTomb = "wardemon2"; + } +if (nDice==10) + { + sTomb = "thevalar2"; + } +if (nDice==11) + { + sTomb = "baal1"; + + } +if (nDice==12) + { + sTomb = "baal2"; + + } +if (nDice==13) + { + sTomb = "bardheratic"; + + } +if (nDice==14) + { + sTomb = "bardheratic2"; + } +if (nDice==15) + { + sTomb = "kamaji"; + } +if (nDice==16) + { + sTomb = "kamaji2"; + } +if (nDice==17) + { + sTomb = "mistress"; + } +if (nDice==18) + { + sTomb = "mistress2"; + } +if (nDice==19) + { + sTomb = "lucifer1"; + } +if (nDice==20) + { + sTomb = "lucifer2"; + } +oItem = GetFirstItemInInventory(oPC); +while (oItem!=OBJECT_INVALID) +{ + ResRef = GetResRef(oItem); + if (ResRef==sTomb) + { + oFlag=1; + } + oItem = GetNextItemInInventory(oPC); +} +if (oFlag!=1) + { + CreateItemOnObject(sTomb, oTarget); + } +} + +void CreateGold(object oTarget, int nStackSize) +{ +object oPC = GetLastKiller(); +int oKills = GetLocalInt(oPC, "iKilled"); +int oDeaths = GetLocalInt(oPC, "iDied"); +nStackSize+=(oKills-oDeaths)*100; +string sItemTemplate1 = "nw_it_gold001"; // gold +CreateItemOnObject(sItemTemplate1, oTarget, nStackSize); +} + +//void main (){} diff --git a/_module/nss/luc_dead.nss b/_module/nss/luc_dead.nss new file mode 100644 index 0000000..8b24b7c --- /dev/null +++ b/_module/nss/luc_dead.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName luc_dead +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 12/12/2004 10:32:26 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "luciferdead") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/luc_dead1.nss b/_module/nss/luc_dead1.nss new file mode 100644 index 0000000..abc2025 --- /dev/null +++ b/_module/nss/luc_dead1.nss @@ -0,0 +1,15 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (GetItemPossessedBy(oPC, "duel_pass") == OBJECT_INVALID) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/luciferdeath.nss b/_module/nss/luciferdeath.nss new file mode 100644 index 0000000..b7b1d71 --- /dev/null +++ b/_module/nss/luciferdeath.nss @@ -0,0 +1,144 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//:://///////////////////////////////lucifer death [deathmatch mode] +#include "loot" +#include "spawner" +#include "rank" + + +void main() +{ + // Setup variables + + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oTarget= OBJECT_SELF; + int oDam = GetTotalDamageDealt(); + + int nInt; + int iFBhit; + int iFBdam; + int iFBswing; + + int sw1 = GetLocalInt(oMod, "sw_hw"); + int sw2 = GetLocalInt(oMod, "sw_dr"); + int sw3 = GetLocalInt(oMod, "sw_bl"); + int sw4 = GetLocalInt(oMod, "sw_pf"); + int sw5 = GetLocalInt(oMod, "sw_df"); + int sw6 = GetLocalInt(oMod, "sw_pm"); + int sw7 = GetLocalInt(oMod, "sw_bm"); + int sw8 = GetLocalInt(oMod, "sw_lm"); + int sw9 = GetLocalInt(oMod, "sw_ll"); + int sw10 = GetLocalInt(oMod, "sw_xx"); + int iKilled = GetLocalInt(oPC, "iKilled"); + int iFinalBattle = GetLocalInt(oPC, "final_on"); + int iHolyWar = GetLocalInt(oMod, "hwar_on"); + + if ((iHolyWar!=1)&&((iFinalBattle==1)&&(GetIsPC(oPC)))) + {QuickRestore(oPC);} + + // Re-enable spawner + + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "challenge", 0); + LastHit(); + if (iFinalBattle==1) + { + iFBdam = GetLocalInt(oPC, "pc_FBdam"); + iFBhit = GetLocalInt(oPC, "pc_FBhit"); + iFBdam+=oDam; + ++iFBhit; + SetLocalInt(oPC, "pc_FBhit", iFBhit); + SetLocalInt(oPC, "pc_FBdam", iFBdam); + if (GetName(GetLastWeaponUsed(oPC))=="") + { + iFBswing = GetLocalInt(oPC, "pc_FBswing"); + ++iFBswing; + SetLocalInt(oPC, "pc_FBswing", iFBswing); + } + } + + + // effect *************************************** + + //AssignCommand(oPC, PlaySound("vs_nzeliepm_dead")); + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_FIRESTORM), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_FIRESTORM), GetLocation(oTarget)); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES), GetLocation(oTarget)); + + // If battle terminator wasn't used: Create treasure, adjust kills & + // play victory animation and flag monster as killed by pc + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + + AssignCommand(oPC, PlaySound("bf_huge")); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + DelayCommand(0.5, GetRank(oPC)); // Update the players rank + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + int iLdead = GetLocalInt(oPC, "luciferdead"); + int iHwarFlag = GetLocalInt(oMod, "hwar_on"); + + if (iLdead==1) + { + if (iHwarFlag!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 50000); + } + } + + else if (iLdead!=1) + { + QuickRestore(oPC); + SetLocalInt(oPC, "luciferdead", 1); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oPC, "cutscene_flag", 0); + } + + + + } + + // if there are no monsters in the arena, unlock the gate + +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(sw10==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +ExecuteScript("nw_c2_default7", OBJECT_SELF); +} diff --git a/_module/nss/lv01.nss b/_module/nss/lv01.nss new file mode 100644 index 0000000..9f13d63 --- /dev/null +++ b/_module/nss/lv01.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 0); +} diff --git a/_module/nss/lv02.nss b/_module/nss/lv02.nss new file mode 100644 index 0000000..eb89a8a --- /dev/null +++ b/_module/nss/lv02.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 1000); +} diff --git a/_module/nss/lv03.nss b/_module/nss/lv03.nss new file mode 100644 index 0000000..efa2a01 --- /dev/null +++ b/_module/nss/lv03.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 3000); +} diff --git a/_module/nss/lv04.nss b/_module/nss/lv04.nss new file mode 100644 index 0000000..bd90240 --- /dev/null +++ b/_module/nss/lv04.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 6000); +} diff --git a/_module/nss/lv05.nss b/_module/nss/lv05.nss new file mode 100644 index 0000000..e155db7 --- /dev/null +++ b/_module/nss/lv05.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 10000); +} diff --git a/_module/nss/lv06.nss b/_module/nss/lv06.nss new file mode 100644 index 0000000..59492fe --- /dev/null +++ b/_module/nss/lv06.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 15000); +} diff --git a/_module/nss/lv07.nss b/_module/nss/lv07.nss new file mode 100644 index 0000000..921a574 --- /dev/null +++ b/_module/nss/lv07.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 21000); +} diff --git a/_module/nss/lv08.nss b/_module/nss/lv08.nss new file mode 100644 index 0000000..ba36606 --- /dev/null +++ b/_module/nss/lv08.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 28000); +} diff --git a/_module/nss/lv09.nss b/_module/nss/lv09.nss new file mode 100644 index 0000000..8b0e966 --- /dev/null +++ b/_module/nss/lv09.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 36000); +} diff --git a/_module/nss/lv10.nss b/_module/nss/lv10.nss new file mode 100644 index 0000000..d198e3e --- /dev/null +++ b/_module/nss/lv10.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 45000); +} diff --git a/_module/nss/lv11.nss b/_module/nss/lv11.nss new file mode 100644 index 0000000..0e589a0 --- /dev/null +++ b/_module/nss/lv11.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 55000); +} diff --git a/_module/nss/lv12.nss b/_module/nss/lv12.nss new file mode 100644 index 0000000..d9ff7f0 --- /dev/null +++ b/_module/nss/lv12.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 66000); +} diff --git a/_module/nss/lv13.nss b/_module/nss/lv13.nss new file mode 100644 index 0000000..bbec668 --- /dev/null +++ b/_module/nss/lv13.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 78000); +} diff --git a/_module/nss/lv14.nss b/_module/nss/lv14.nss new file mode 100644 index 0000000..5e06855 --- /dev/null +++ b/_module/nss/lv14.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 91000); +} diff --git a/_module/nss/lv15.nss b/_module/nss/lv15.nss new file mode 100644 index 0000000..a18ede3 --- /dev/null +++ b/_module/nss/lv15.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 105000); +} diff --git a/_module/nss/lv16.nss b/_module/nss/lv16.nss new file mode 100644 index 0000000..118ab6a --- /dev/null +++ b/_module/nss/lv16.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 120000); +} diff --git a/_module/nss/lv17.nss b/_module/nss/lv17.nss new file mode 100644 index 0000000..f6db732 --- /dev/null +++ b/_module/nss/lv17.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 136000); +} diff --git a/_module/nss/lv18.nss b/_module/nss/lv18.nss new file mode 100644 index 0000000..3767639 --- /dev/null +++ b/_module/nss/lv18.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 153000); +} diff --git a/_module/nss/lv19.nss b/_module/nss/lv19.nss new file mode 100644 index 0000000..bbfb88f --- /dev/null +++ b/_module/nss/lv19.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 171000); +} diff --git a/_module/nss/lv20.nss b/_module/nss/lv20.nss new file mode 100644 index 0000000..33a08a0 --- /dev/null +++ b/_module/nss/lv20.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 190000); +} diff --git a/_module/nss/lv21.nss b/_module/nss/lv21.nss new file mode 100644 index 0000000..2e9d6fc --- /dev/null +++ b/_module/nss/lv21.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 210000); +} diff --git a/_module/nss/lv22.nss b/_module/nss/lv22.nss new file mode 100644 index 0000000..1a32cfb --- /dev/null +++ b/_module/nss/lv22.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 231000); +} diff --git a/_module/nss/lv23.nss b/_module/nss/lv23.nss new file mode 100644 index 0000000..1b49b46 --- /dev/null +++ b/_module/nss/lv23.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 253000); +} diff --git a/_module/nss/lv24.nss b/_module/nss/lv24.nss new file mode 100644 index 0000000..74446ac --- /dev/null +++ b/_module/nss/lv24.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 276000); +} diff --git a/_module/nss/lv25.nss b/_module/nss/lv25.nss new file mode 100644 index 0000000..cd2e9b9 --- /dev/null +++ b/_module/nss/lv25.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 300000); +} diff --git a/_module/nss/lv26.nss b/_module/nss/lv26.nss new file mode 100644 index 0000000..e4d882e --- /dev/null +++ b/_module/nss/lv26.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 325000); +} diff --git a/_module/nss/lv27.nss b/_module/nss/lv27.nss new file mode 100644 index 0000000..faaa70a --- /dev/null +++ b/_module/nss/lv27.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 351000); +} diff --git a/_module/nss/lv28.nss b/_module/nss/lv28.nss new file mode 100644 index 0000000..b414ac9 --- /dev/null +++ b/_module/nss/lv28.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 378000); +} diff --git a/_module/nss/lv29.nss b/_module/nss/lv29.nss new file mode 100644 index 0000000..6013a4b --- /dev/null +++ b/_module/nss/lv29.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 406000); +} diff --git a/_module/nss/lv30.nss b/_module/nss/lv30.nss new file mode 100644 index 0000000..6015596 --- /dev/null +++ b/_module/nss/lv30.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 435000); +} diff --git a/_module/nss/lv31.nss b/_module/nss/lv31.nss new file mode 100644 index 0000000..f913768 --- /dev/null +++ b/_module/nss/lv31.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 465000); +} diff --git a/_module/nss/lv32.nss b/_module/nss/lv32.nss new file mode 100644 index 0000000..1adec13 --- /dev/null +++ b/_module/nss/lv32.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 496000); +} diff --git a/_module/nss/lv33.nss b/_module/nss/lv33.nss new file mode 100644 index 0000000..e7d2567 --- /dev/null +++ b/_module/nss/lv33.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 528000); +} diff --git a/_module/nss/lv34.nss b/_module/nss/lv34.nss new file mode 100644 index 0000000..7664a20 --- /dev/null +++ b/_module/nss/lv34.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 561000); +} diff --git a/_module/nss/lv35.nss b/_module/nss/lv35.nss new file mode 100644 index 0000000..a66a0fc --- /dev/null +++ b/_module/nss/lv35.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 595000); +} diff --git a/_module/nss/lv36.nss b/_module/nss/lv36.nss new file mode 100644 index 0000000..cc2e999 --- /dev/null +++ b/_module/nss/lv36.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 630000); +} diff --git a/_module/nss/lv37.nss b/_module/nss/lv37.nss new file mode 100644 index 0000000..f21aa3e --- /dev/null +++ b/_module/nss/lv37.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 666000); +} diff --git a/_module/nss/lv38.nss b/_module/nss/lv38.nss new file mode 100644 index 0000000..ff9a06f --- /dev/null +++ b/_module/nss/lv38.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 703000); +} diff --git a/_module/nss/lv39.nss b/_module/nss/lv39.nss new file mode 100644 index 0000000..6f2fa34 --- /dev/null +++ b/_module/nss/lv39.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 741000); +} diff --git a/_module/nss/lv40.nss b/_module/nss/lv40.nss new file mode 100644 index 0000000..02eb5cc --- /dev/null +++ b/_module/nss/lv40.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "TARGET_XP", 780000); +} diff --git a/_module/nss/m_bane_n.nss b/_module/nss/m_bane_n.nss new file mode 100644 index 0000000..6ccb106 --- /dev/null +++ b/_module/nss/m_bane_n.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "ch_ll", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "bane", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; +//AddHenchman(oPC, oTarget); +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_blarog.nss b/_module/nss/m_blarog.nss new file mode 100644 index 0000000..3a68a54 --- /dev/null +++ b/_module/nss/m_blarog.nss @@ -0,0 +1,47 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "ch_bl", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); +SetLocalInt(oMod, "gr_xx", 1); +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_blarog2.nss b/_module/nss/m_blarog2.nss new file mode 100644 index 0000000..b0ef633 --- /dev/null +++ b/_module/nss/m_blarog2.nss @@ -0,0 +1,47 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "ch_bl", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); +SetLocalInt(oMod, "gr_xx", 1); +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "balrog2", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_blarog_n.nss b/_module/nss/m_blarog_n.nss new file mode 100644 index 0000000..9d6ccfc --- /dev/null +++ b/_module/nss/m_blarog_n.nss @@ -0,0 +1,47 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "ch_bl", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); +SetLocalInt(oMod, "gr_xx", 1); +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "damned_cle", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_dopple.nss b/_module/nss/m_dopple.nss new file mode 100644 index 0000000..338b47b --- /dev/null +++ b/_module/nss/m_dopple.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "ch_dr", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_dopple2.nss b/_module/nss/m_dopple2.nss new file mode 100644 index 0000000..9d3bf56 --- /dev/null +++ b/_module/nss/m_dopple2.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "ch_dr", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple001", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_dopple_n.nss b/_module/nss/m_dopple_n.nss new file mode 100644 index 0000000..2557d11 --- /dev/null +++ b/_module/nss/m_dopple_n.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "ch_dr", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "damned_wiz", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_dragon.nss b/_module/nss/m_dragon.nss new file mode 100644 index 0000000..7837f75 --- /dev/null +++ b/_module/nss/m_dragon.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "ch_hw", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("big_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_dragon2.nss b/_module/nss/m_dragon2.nss new file mode 100644 index 0000000..29d00a1 --- /dev/null +++ b/_module/nss/m_dragon2.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "ch_hw", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("big_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_dragon_n.nss b/_module/nss/m_dragon_n.nss new file mode 100644 index 0000000..531cf68 --- /dev/null +++ b/_module/nss/m_dragon_n.nss @@ -0,0 +1,126 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void DamnedWar (object oPC, int iNum) +{ + + +object oMod = GetModule(); +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "ch_hw", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("big_wp"); + +lTarget = GetLocation(oTarget); + +int i; +for (i = 0; i < iNum; i++) +{ + oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "damned_war", lTarget); + oTarget = oSpawn; + SetIsTemporaryEnemy(oPC, oTarget); + AssignCommand(oTarget, ActionAttack(oPC)); + AssignCommand(oTarget, DetermineCombatRound(oPC)); +} +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + +void DamnedWiz (object oPC, int iNum) +{ + + +object oMod = GetModule(); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "ch_dr", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("big_wp"); + +lTarget = GetLocation(oTarget); + +int i; +for (i = 0; i < iNum; i++) +{ + oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "damned_wiz", lTarget); + oTarget = oSpawn; + SetIsTemporaryEnemy(oPC, oTarget); + AssignCommand(oTarget, ActionAttack(oPC)); + AssignCommand(oTarget, DetermineCombatRound(oPC)); +} +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + + +void DamnedCle (object oPC, int iNum) +{ + + +object oMod = GetModule(); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "ch_bl", 1); +SetLocalInt(oMod, "xcheck", 0); +SetLocalInt(oMod, "gr_xx", 1); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("big_wp"); + +lTarget = GetLocation(oTarget); + +int i; +for (i = 0; i < iNum; i++) +{ + oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "damned_cle", lTarget); + oTarget = oSpawn; + SetIsTemporaryEnemy(oPC, oTarget); + AssignCommand(oTarget, ActionAttack(oPC)); + AssignCommand(oTarget, DetermineCombatRound(oPC)); +} +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} +//void main() {} diff --git a/_module/nss/m_fiend.nss b/_module/nss/m_fiend.nss new file mode 100644 index 0000000..2429c0d --- /dev/null +++ b/_module/nss/m_fiend.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "ch_df", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_fiend2.nss b/_module/nss/m_fiend2.nss new file mode 100644 index 0000000..779ef4b --- /dev/null +++ b/_module/nss/m_fiend2.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "ch_df", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_fiend_d.nss b/_module/nss/m_fiend_d.nss new file mode 100644 index 0000000..a3c3781 --- /dev/null +++ b/_module/nss/m_fiend_d.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "ch_df", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "ancient_red", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_lord.nss b/_module/nss/m_lord.nss new file mode 100644 index 0000000..cd0ab84 --- /dev/null +++ b/_module/nss/m_lord.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "ch_ll", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "lord", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_lord2.nss b/_module/nss/m_lord2.nss new file mode 100644 index 0000000..a7ef6f6 --- /dev/null +++ b/_module/nss/m_lord2.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "ch_ll", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "thor", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_lord_n.nss b/_module/nss/m_lord_n.nss new file mode 100644 index 0000000..cf85d18 --- /dev/null +++ b/_module/nss/m_lord_n.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "ch_ll", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "steelgrind", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; +//AddHenchman(oPC, oTarget); +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_marilith.nss b/_module/nss/m_marilith.nss new file mode 100644 index 0000000..b70c88d --- /dev/null +++ b/_module/nss/m_marilith.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "ch_bm", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_marilith2.nss b/_module/nss/m_marilith2.nss new file mode 100644 index 0000000..33068c0 --- /dev/null +++ b/_module/nss/m_marilith2.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "ch_bm", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_marilith_d.nss b/_module/nss/m_marilith_d.nss new file mode 100644 index 0000000..c0adce5 --- /dev/null +++ b/_module/nss/m_marilith_d.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "ch_bm", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "demi_lich", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_marilith_n.nss b/_module/nss/m_marilith_n.nss new file mode 100644 index 0000000..c0adce5 --- /dev/null +++ b/_module/nss/m_marilith_n.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "ch_bm", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "demi_lich", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_mistress.nss b/_module/nss/m_mistress.nss new file mode 100644 index 0000000..0e437f2 --- /dev/null +++ b/_module/nss/m_mistress.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "ch_lm", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("big_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss1", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_mistress2.nss b/_module/nss/m_mistress2.nss new file mode 100644 index 0000000..1fd2f0c --- /dev/null +++ b/_module/nss/m_mistress2.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "ch_lm", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("big_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_mistress_n.nss b/_module/nss/m_mistress_n.nss new file mode 100644 index 0000000..74cd282 --- /dev/null +++ b/_module/nss/m_mistress_n.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "ch_lm", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("big_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "darkstarr", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; +//AddHenchman(oPC, oSpawn); +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_pale.nss b/_module/nss/m_pale.nss new file mode 100644 index 0000000..887d3f0 --- /dev/null +++ b/_module/nss/m_pale.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); + object oMod = GetModule(); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "ch_pm", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "palewarrior", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_pale2.nss b/_module/nss/m_pale2.nss new file mode 100644 index 0000000..18b38f6 --- /dev/null +++ b/_module/nss/m_pale2.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); + object oMod = GetModule(); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "ch_pm", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar2", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_pale_n.nss b/_module/nss/m_pale_n.nss new file mode 100644 index 0000000..b208b74 --- /dev/null +++ b/_module/nss/m_pale_n.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); + object oMod = GetModule(); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "ch_pm", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("big_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hell_wurm", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_pitfiend.nss b/_module/nss/m_pitfiend.nss new file mode 100644 index 0000000..b26332d --- /dev/null +++ b/_module/nss/m_pitfiend.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "ch_pf", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_pitfiend2.nss b/_module/nss/m_pitfiend2.nss new file mode 100644 index 0000000..675d8f7 --- /dev/null +++ b/_module/nss/m_pitfiend2.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "ch_pf", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/m_pitfiend_d.nss b/_module/nss/m_pitfiend_d.nss new file mode 100644 index 0000000..34711fe --- /dev/null +++ b/_module/nss/m_pitfiend_d.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "ch_pf", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "paremus_dev", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/ma_imbue25.nss b/_module/nss/ma_imbue25.nss new file mode 100644 index 0000000..f088288 --- /dev/null +++ b/_module/nss/ma_imbue25.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "madone_1", 1); +DamRes(7,2); +} diff --git a/_module/nss/ma_imbue252.nss b/_module/nss/ma_imbue252.nss new file mode 100644 index 0000000..91c34f0 --- /dev/null +++ b/_module/nss/ma_imbue252.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "madone_12", 1); +DamRes2(7,2); +} diff --git a/_module/nss/ma_imbue252a.nss b/_module/nss/ma_imbue252a.nss new file mode 100644 index 0000000..91c34f0 --- /dev/null +++ b/_module/nss/ma_imbue252a.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "madone_12", 1); +DamRes2(7,2); +} diff --git a/_module/nss/madone_1.nss b/_module/nss/madone_1.nss new file mode 100644 index 0000000..8064167 --- /dev/null +++ b/_module/nss/madone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/madone_12.nss b/_module/nss/madone_12.nss new file mode 100644 index 0000000..7d8c895 --- /dev/null +++ b/_module/nss/madone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/madred_imbue_2.nss b/_module/nss/madred_imbue_2.nss new file mode 100644 index 0000000..c5a2669 --- /dev/null +++ b/_module/nss/madred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "madone_2", 1); +DamRes(7,3); +} diff --git a/_module/nss/madred_imbue_22.nss b/_module/nss/madred_imbue_22.nss new file mode 100644 index 0000000..c46c88a --- /dev/null +++ b/_module/nss/madred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "madone_22", 1); +DamRes2(7,3); +} diff --git a/_module/nss/madred_imbue_3.nss b/_module/nss/madred_imbue_3.nss new file mode 100644 index 0000000..1c7a0fb --- /dev/null +++ b/_module/nss/madred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "madone_3", 1); +DamRes(7,4); +} diff --git a/_module/nss/madred_imbue_32.nss b/_module/nss/madred_imbue_32.nss new file mode 100644 index 0000000..562eb42 --- /dev/null +++ b/_module/nss/madred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "madone_32", 1); +SetLocalInt(oPC, "mamax_reduction2", 1); +DamRes2(7,4); +} diff --git a/_module/nss/madred_imbue_4.nss b/_module/nss/madred_imbue_4.nss new file mode 100644 index 0000000..f990939 --- /dev/null +++ b/_module/nss/madred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "madone_4", 1); +DamRes(7,5); +} diff --git a/_module/nss/madred_imbue_5.nss b/_module/nss/madred_imbue_5.nss new file mode 100644 index 0000000..cc2bd9f --- /dev/null +++ b/_module/nss/madred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "madone_5", 1); +SetLocalInt(oPC, "mamax_reduction", 1); +DamRes(7,6); +} diff --git a/_module/nss/mag_chain.nss b/_module/nss/mag_chain.nss new file mode 100644 index 0000000..327b572 --- /dev/null +++ b/_module/nss/mag_chain.nss @@ -0,0 +1,16 @@ +void main() +{ +object oPC = GetLastUsedBy(); +object oMod = GetModule(); +if (GetLocalInt(oMod, "mod_mode")==1) +{ +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(2.0, ActionStartConversation(oPC, "portal")); +} +else +{ +PlaySound("sim_cntresist"); +FloatingTextStringOnCreature("Only availible in campaign manager mode", oPC); +} +} diff --git a/_module/nss/magic_imbue.nss b/_module/nss/magic_imbue.nss new file mode 100644 index 0000000..46a36f4 --- /dev/null +++ b/_module/nss/magic_imbue.nss @@ -0,0 +1,6 @@ +#include "imbue_include" +void main() +{ +ImbueWeapon(VFX_FNF_DISPEL_GREATER, IP_CONST_DAMAGETYPE_MAGICAL); +} + diff --git a/_module/nss/magic_imbue_arm.nss b/_module/nss/magic_imbue_arm.nss new file mode 100644 index 0000000..e2e2239 --- /dev/null +++ b/_module/nss/magic_imbue_arm.nss @@ -0,0 +1,6 @@ +#include "imbue_include" +void main() +{ +ImbueArmour(VFX_FNF_DISPEL_GREATER, IP_CONST_DAMAGETYPE_MAGICAL); +} + diff --git a/_module/nss/mamax_reached.nss b/_module/nss/mamax_reached.nss new file mode 100644 index 0000000..c0c403f --- /dev/null +++ b/_module/nss/mamax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mamax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mamax_reached1.nss b/_module/nss/mamax_reached1.nss new file mode 100644 index 0000000..b749c48 --- /dev/null +++ b/_module/nss/mamax_reached1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mamax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mamax_reached12.nss b/_module/nss/mamax_reached12.nss new file mode 100644 index 0000000..229a1e3 --- /dev/null +++ b/_module/nss/mamax_reached12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mamax_reduction2") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mamax_reached2.nss b/_module/nss/mamax_reached2.nss new file mode 100644 index 0000000..738e9e2 --- /dev/null +++ b/_module/nss/mamax_reached2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mamax_reduction2") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mared1_1.nss b/_module/nss/mared1_1.nss new file mode 100644 index 0000000..fc33c9d --- /dev/null +++ b/_module/nss/mared1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "madone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "madone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared1_12.nss b/_module/nss/mared1_12.nss new file mode 100644 index 0000000..ec3ccf2 --- /dev/null +++ b/_module/nss/mared1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "madone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "madone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared_0.nss b/_module/nss/mared_0.nss new file mode 100644 index 0000000..14c7893 --- /dev/null +++ b/_module/nss/mared_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/mared_02.nss b/_module/nss/mared_02.nss new file mode 100644 index 0000000..e927625 --- /dev/null +++ b/_module/nss/mared_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/mared_1.nss b/_module/nss/mared_1.nss new file mode 100644 index 0000000..5c6533b --- /dev/null +++ b/_module/nss/mared_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "madone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared_10.nss b/_module/nss/mared_10.nss new file mode 100644 index 0000000..ebc8372 --- /dev/null +++ b/_module/nss/mared_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mared_11.nss b/_module/nss/mared_11.nss new file mode 100644 index 0000000..5464e5d --- /dev/null +++ b/_module/nss/mared_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "madone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared_12.nss b/_module/nss/mared_12.nss new file mode 100644 index 0000000..be7fd42 --- /dev/null +++ b/_module/nss/mared_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "madone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared_1222.nss b/_module/nss/mared_1222.nss new file mode 100644 index 0000000..4413d57 --- /dev/null +++ b/_module/nss/mared_1222.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "madone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared_2.nss b/_module/nss/mared_2.nss new file mode 100644 index 0000000..e5b1994 --- /dev/null +++ b/_module/nss/mared_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "madone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared_22.nss b/_module/nss/mared_22.nss new file mode 100644 index 0000000..b0a1719 --- /dev/null +++ b/_module/nss/mared_22.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "madone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared_3.nss b/_module/nss/mared_3.nss new file mode 100644 index 0000000..08fe2d5 --- /dev/null +++ b/_module/nss/mared_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mared_32.nss b/_module/nss/mared_32.nss new file mode 100644 index 0000000..56a71d9 --- /dev/null +++ b/_module/nss/mared_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mared_4.nss b/_module/nss/mared_4.nss new file mode 100644 index 0000000..b2d2cea --- /dev/null +++ b/_module/nss/mared_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "madone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared_42.nss b/_module/nss/mared_42.nss new file mode 100644 index 0000000..c64885e --- /dev/null +++ b/_module/nss/mared_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "madone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared_6.nss b/_module/nss/mared_6.nss new file mode 100644 index 0000000..9acc297 --- /dev/null +++ b/_module/nss/mared_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "madone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared_62.nss b/_module/nss/mared_62.nss new file mode 100644 index 0000000..539ac34 --- /dev/null +++ b/_module/nss/mared_62.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "madone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared_7.nss b/_module/nss/mared_7.nss new file mode 100644 index 0000000..9c16001 --- /dev/null +++ b/_module/nss/mared_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mared_8.nss b/_module/nss/mared_8.nss new file mode 100644 index 0000000..ab6823f --- /dev/null +++ b/_module/nss/mared_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "madone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mared_9.nss b/_module/nss/mared_9.nss new file mode 100644 index 0000000..09948a1 --- /dev/null +++ b/_module/nss/mared_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "madone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "madone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mass_imbue.nss b/_module/nss/mass_imbue.nss new file mode 100644 index 0000000..62400b4 --- /dev/null +++ b/_module/nss/mass_imbue.nss @@ -0,0 +1,35 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Mass (object oItem) +{ +itemproperty ipAdd; +ipAdd = ItemPropertyMassiveCritical(IP_CONST_DAMAGEBONUS_1d10); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +SetLocalInt(GetPCSpeaker(), "mcfire_ldb", 1); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +oItem = GetFirstItemInInventory(OBJECT_SELF); +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_EVIL_HELP, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_LOS_EVIL_30, OBJECT_SELF); +DelayCommand(1.0, Mass(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + diff --git a/_module/nss/mass_imbue_bow.nss b/_module/nss/mass_imbue_bow.nss new file mode 100644 index 0000000..2127476 --- /dev/null +++ b/_module/nss/mass_imbue_bow.nss @@ -0,0 +1,58 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Mass (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + if (nRandom==0) oDamage = IP_CONST_DAMAGEBONUS_2d12; + if (nRandom==1) oDamage = IP_CONST_DAMAGEBONUS_2d6; + if (nRandom==2) oDamage = IP_CONST_DAMAGEBONUS_2d6; + if (nRandom==3) oDamage = IP_CONST_DAMAGEBONUS_2d6; + if (nRandom==4) oDamage = IP_CONST_DAMAGEBONUS_2d6; + if (nRandom==5) oDamage = IP_CONST_DAMAGEBONUS_2d6; + if (nRandom==6) oDamage = IP_CONST_DAMAGEBONUS_2d6; + if (nRandom==7) oDamage = IP_CONST_DAMAGEBONUS_2d8; + if (nRandom==8) oDamage = IP_CONST_DAMAGEBONUS_2d8; + if (nRandom==9) oDamage = IP_CONST_DAMAGEBONUS_2d8; + if (nRandom==10) oDamage = IP_CONST_DAMAGEBONUS_2d8; + if (nRandom==11) oDamage = IP_CONST_DAMAGEBONUS_2d8; + if (nRandom==12) oDamage = IP_CONST_DAMAGEBONUS_2d10; + if (nRandom==13) oDamage = IP_CONST_DAMAGEBONUS_2d10; + if (nRandom==14) oDamage = IP_CONST_DAMAGEBONUS_2d10; + if (nRandom==15) oDamage = IP_CONST_DAMAGEBONUS_2d10; + if (nRandom==16) oDamage = IP_CONST_DAMAGEBONUS_2d10; + if (nRandom==17) oDamage = IP_CONST_DAMAGEBONUS_2d12; + if (nRandom==18) oDamage = IP_CONST_DAMAGEBONUS_2d12; + if (nRandom==19) oDamage = IP_CONST_DAMAGEBONUS_2d12; + if (nRandom==20) oDamage = IP_CONST_DAMAGEBONUS_2d12; + + ipAdd = ItemPropertyMassiveCritical(oDamage); + +IPSafeAddItemProperty(oItem, ipAdd); +} + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +oItem = GetFirstItemInInventory(OBJECT_SELF); +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_EVIL_HELP, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_MYSTICAL_EXPLOSION, OBJECT_SELF); +DelayCommand(1.0, Mass(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + diff --git a/_module/nss/master_switch.nss b/_module/nss/master_switch.nss new file mode 100644 index 0000000..acb25f3 --- /dev/null +++ b/_module/nss/master_switch.nss @@ -0,0 +1,27 @@ +int StartingConditional() +{ + // Inspect local variables + + if(!(GetLocalInt(GetModule(), "ch_lm") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "ch_ll") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "ch_bm") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "ch_pm") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "ch_hd") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "ch_pf") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "ch_bl") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "ch_dr") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "ch_hw") != 1)) + return FALSE; + + + +return TRUE; +} diff --git a/_module/nss/max_reduction.nss b/_module/nss/max_reduction.nss new file mode 100644 index 0000000..c6c2057 --- /dev/null +++ b/_module/nss/max_reduction.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName max_spell +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 6:28:05 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "max_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/max_spell.nss b/_module/nss/max_spell.nss new file mode 100644 index 0000000..9d15014 --- /dev/null +++ b/_module/nss/max_spell.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName max_spell +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 6:28:05 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "max_spell") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mc_facing.nss b/_module/nss/mc_facing.nss new file mode 100644 index 0000000..39a5f66 --- /dev/null +++ b/_module/nss/mc_facing.nss @@ -0,0 +1,13 @@ +void SetFacingWaypoint(string sTag) +{ +object oTarget = GetWaypointByTag(sTag); +vector vFace=GetPosition(oTarget); +SetFacingPoint(vFace); +} + + + +void main() +{ +SetFacingWaypoint("mc_facing"); +} diff --git a/_module/nss/mc_not.nss b/_module/nss/mc_not.nss new file mode 100644 index 0000000..cbadd4c --- /dev/null +++ b/_module/nss/mc_not.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName mc_not +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 11:37:53 AM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mass_crit_upg") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mc_not2.nss b/_module/nss/mc_not2.nss new file mode 100644 index 0000000..fd49b6d --- /dev/null +++ b/_module/nss/mc_not2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName mc_not +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 11:37:53 AM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mass_crit_upg") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mcgdred_imbue_32.nss b/_module/nss/mcgdred_imbue_32.nss new file mode 100644 index 0000000..26eda9f --- /dev/null +++ b/_module/nss/mcgdred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "mass_crit_upg", 1); +SetLocalInt(oPC, "mcngdone_32", 1); +MassCrit(3); +} diff --git a/_module/nss/mcng_imbue252.nss b/_module/nss/mcng_imbue252.nss new file mode 100644 index 0000000..713bdbd --- /dev/null +++ b/_module/nss/mcng_imbue252.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "mcngdone_12", 1); +MassCrit(1); +} diff --git a/_module/nss/mcngdone_12.nss b/_module/nss/mcngdone_12.nss new file mode 100644 index 0000000..804fa6e --- /dev/null +++ b/_module/nss/mcngdone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mcngdone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mcnged_12.nss b/_module/nss/mcnged_12.nss new file mode 100644 index 0000000..9503684 --- /dev/null +++ b/_module/nss/mcnged_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "mcngdone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mcngred1_12.nss b/_module/nss/mcngred1_12.nss new file mode 100644 index 0000000..5099cd1 --- /dev/null +++ b/_module/nss/mcngred1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "mcngdone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "mcngdone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/mcngred_02.nss b/_module/nss/mcngred_02.nss new file mode 100644 index 0000000..dbdc9bc --- /dev/null +++ b/_module/nss/mcngred_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mcngdone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/mcngred_32.nss b/_module/nss/mcngred_32.nss new file mode 100644 index 0000000..d584304 --- /dev/null +++ b/_module/nss/mcngred_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mcngdone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mcngred_42.nss b/_module/nss/mcngred_42.nss new file mode 100644 index 0000000..75e92a1 --- /dev/null +++ b/_module/nss/mcngred_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mcngdone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "mcngdone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/med_shop.nss b/_module/nss/med_shop.nss new file mode 100644 index 0000000..556a977 --- /dev/null +++ b/_module/nss/med_shop.nss @@ -0,0 +1,25 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +if (GetItemPossessedBy(oPC, "nordock_token")!=OBJECT_INVALID) +oTarget = GetObjectByTag("nordock_med_w"); +else +oTarget = GetObjectByTag("med_shop"); + +PlaySound("it_blademedium"); +OpenStore(oTarget, oPC, 0, 0); + +} + diff --git a/_module/nss/mighty_imbue.nss b/_module/nss/mighty_imbue.nss new file mode 100644 index 0000000..618df81 --- /dev/null +++ b/_module/nss/mighty_imbue.nss @@ -0,0 +1,37 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Mighty(object oItem) +{ +int oDamage; +itemproperty ipAdd; +oDamage = IPGetWeaponEnhancementBonus(oItem, + ITEM_PROPERTY_MIGHTY); +++oDamage; +if (oDamage==21){oDamage=20;} +ipAdd = ItemPropertyMaxRangeStrengthMod(oDamage); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_DUR_ELEMENTAL_SHIELD, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_ELECTRIC_EXPLOSION, OBJECT_SELF); +PCEffect(2.0,VFX_IMP_HARM, OBJECT_SELF); +DelayCommand(1.0, Mighty(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/mind_imbue.nss b/_module/nss/mind_imbue.nss new file mode 100644 index 0000000..ccf7222 --- /dev/null +++ b/_module/nss/mind_imbue.nss @@ -0,0 +1,6 @@ +#include "immune_imbue" + +void main() +{ +ImmuneImbue(IP_CONST_IMMUNITYMISC_MINDSPELLS); +} diff --git a/_module/nss/mngdred_imbue_22.nss b/_module/nss/mngdred_imbue_22.nss new file mode 100644 index 0000000..24915fb --- /dev/null +++ b/_module/nss/mngdred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "mcngdone_22", 1); +MassCrit(2); +} diff --git a/_module/nss/mod_mode.nss b/_module/nss/mod_mode.nss new file mode 100644 index 0000000..afb9668 --- /dev/null +++ b/_module/nss/mod_mode.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName mod_mode +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 7:24:02 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "mod_mode") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/mod_set.nss b/_module/nss/mod_set.nss new file mode 100644 index 0000000..a2789af --- /dev/null +++ b/_module/nss/mod_set.nss @@ -0,0 +1,13 @@ +void main() +{ +SetLocalInt(GetModule(), "mod_mode", 0); +SoundObjectStop(GetObjectByTag("gcsound")); +SoundObjectStop(GetObjectByTag("gcsound2")); +SetLocalInt(GetModule(), "EverybodyAlive", TRUE); +SetLocalInt(GetModule(), "hwar_on",0); +SetLocalInt(GetModule(), "scre_state",1); +SetLocalInt(GetModule(), "scre2_state",1); +SetLocalInt(GetModule(), "scre_state3",1); +SetLocalInt(GetModule(), "scre_state4",1); +SetLocalInt(GetModule(), "scre_state5",1); +} diff --git a/_module/nss/mode_change.nss b/_module/nss/mode_change.nss new file mode 100644 index 0000000..d406a25 --- /dev/null +++ b/_module/nss/mode_change.nss @@ -0,0 +1,23 @@ +#include "rank" + +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oItem; +SetLocalInt(oPC, "iKilled", 0); +SetLocalInt(oPC, "iDied", 0); +SetLocalInt(oMod, "mod_mode", 1); +SetLocked(GetObjectByTag("arena_crafter"), FALSE); +SetLocked(GetObjectByTag("arena_warehouse"), FALSE); +PlaySound("gui_select"); +PlaySound("sce_positive"); +oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + DestroyObject(oItem); + oItem = GetNextItemInInventory(oPC); + } +FloatingTextStringOnCreature("Inventory Purged", oPC); +GetRank(oPC); +} diff --git a/_module/nss/moditem.nss b/_module/nss/moditem.nss new file mode 100644 index 0000000..d8fec83 --- /dev/null +++ b/_module/nss/moditem.nss @@ -0,0 +1,263 @@ +#include "spawner" +#include "moditem2" + +//itemproperty ipAdd; + +void ModWeapon(object oItem, object oPC) +{ +/*int oDaxe = BASE_ITEM_DWARVENWARAXE; +int oRapier = BASE_ITEM_RAPIER; +int oLongsword = BASE_ITEM_LONGSWORD; +int oBastardsword = BASE_ITEM_BASTARDSWORD; +int oBattleaxe = BASE_ITEM_BATTLEAXE; +int oKukri = BASE_ITEM_KUKRI; +int oWarhammer = BASE_ITEM_WARHAMMER; +int oShortsword = BASE_ITEM_SHORTSWORD; +int oKama = BASE_ITEM_KAMA; +int oGreatsword = BASE_ITEM_GREATSWORD; +int oHelm = BASE_ITEM_HELMET; +int oBoots = BASE_ITEM_BOOTS; +int oBelt = BASE_ITEM_BELT; +int oAmulet = BASE_ITEM_AMULET; +int oRing = BASE_ITEM_RING; +int oCloak = BASE_ITEM_CLOAK; +int oArmour = BASE_ITEM_ARMOR; +int oBracer = BASE_ITEM_BRACER; +int oShield = BASE_ITEM_TOWERSHIELD; +int oGloves = BASE_ITEM_GLOVES; +int oLbow = BASE_ITEM_LONGBOW; +int oHcrossbow = BASE_ITEM_HEAVYCROSSBOW; +int oSbow = BASE_ITEM_SHORTBOW; +int oLcrossbow = BASE_ITEM_LIGHTCROSSBOW; +int oCoin; +location iLocation = GetLocation(OBJECT_SELF); +int oSpell = SPELL_SHAPECHANGE; +*/ + +int oCoin; + + + + oItem = GetFirstItemInInventory(OBJECT_SELF); + if ((GetTag(oItem)=="pearl")||(GetTag(oItem)=="coin1")) + { + if (GetTag(oItem)=="pearl") + { + oCoin=1; + } + else + { + oCoin=2; + } + oItem=GetNextItemInInventory(OBJECT_SELF); + ModNow(oItem, oCoin, oPC); + return; + } + if ((GetTag(oItem)!="pearl")&&(GetTag(oItem)!="coin1")) + { + oItem=GetNextItemInInventory(OBJECT_SELF); + if (GetTag(oItem)=="pearl") + { + oCoin=1; + } + else + { + oCoin=2; + } + oItem=GetFirstItemInInventory(OBJECT_SELF); + ModNow(oItem, oCoin, oPC); + return; + } +} + + +//void main () {} + //if (GetBaseItemType(oItem)==oRapier) {SetCustomToken(20, "Rapier");} + //if (GetBaseItemType(oItem)==oShortsword) {SetCustomToken(20, "Short Sword");} + // if (GetBaseItemType(oItem)==oLongsword) {SetCustomToken(20, "Long Sword");} + // if (GetBaseItemType(oItem)==oBastardsword) {SetCustomToken(20, "Bastard Sword");} + // if (GetBaseItemType(oItem)==oBattleaxe) {SetCustomToken(20, "Battle Axe");} + // if (GetBaseItemType(oItem)==oKukri) {SetCustomToken(20, "Kukri");} + // if (GetBaseItemType(oItem)==oWarhammer) {SetCustomToken(20, "War Hammer");} + // if (GetBaseItemType(oItem)==oKama) {SetCustomToken(20, "Kama");} + // if (GetBaseItemType(oItem)==oGreatsword) {SetCustomToken(20, "Great Sword");} + // if (GetBaseItemType(oItem)==oDaxe) {SetCustomToken(20, "Dwarven War Axe");} + + + /*if (((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe))&&(oCoin==1)) + { + ActionStartConversation(oPC, "sundial", TRUE, FALSE); + } + if (((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe))&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + + if ((GetBaseItemType(oItem)==oArmour)&&(oCoin==1)) + { + ActionStartConversation(oPC, "armour", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oArmour)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + if ((GetBaseItemType(oItem)==oBelt)&&(oCoin==1)) + { + ActionStartConversation(oPC, "belt", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oBelt)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + if ((GetBaseItemType(oItem)==oHelm)&&(oCoin==1)) + { + ActionStartConversation(oPC, "helm", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oHelm)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + if ((GetBaseItemType(oItem)==oGloves)&&(oCoin==1)) + { + ActionStartConversation(oPC, "gloves", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oGloves)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + if ((GetBaseItemType(oItem)==oAmulet)&&(oCoin==1)) + { + ActionStartConversation(oPC, "amulet", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oAmulet)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + if ((GetBaseItemType(oItem)==oBoots)&&(oCoin==1)) + { + ActionStartConversation(oPC, "boots", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oBoots)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + if ((GetBaseItemType(oItem)==oRing)&&(oCoin==1)) + { + ActionStartConversation(oPC, "ring", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oRing)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + if ((GetBaseItemType(oItem)==oShield)&&(oCoin==1)) + { + ActionStartConversation(oPC, "shield", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oShield)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + if ((GetBaseItemType(oItem)==oCloak)&&(oCoin==1)) + { + ActionStartConversation(oPC, "cloak", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oCloak)&&(oCoin==2)) + { + ActionStartConversation(oPC, "damage_red", TRUE, FALSE); + } + + if ((GetBaseItemType(oItem)==oLcrossbow)&&(oCoin==1)) + { + ActionStartConversation(oPC, "crossbow", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oLcrossbow)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + if ((GetBaseItemType(oItem)==oHcrossbow)&&(oCoin==1)) + { + ActionStartConversation(oPC, "crossbow", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oHcrossbow)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + if ((GetBaseItemType(oItem)==oLbow)&&(oCoin==1)) + { + ActionStartConversation(oPC, "bow", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oLbow)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + if ((GetBaseItemType(oItem)==oSbow)&&(oCoin==1)) + { + ActionStartConversation(oPC, "bow", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oSbow)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + if ((GetBaseItemType(oItem)==oBracer)&&(oCoin==1)) + { + ActionStartConversation(oPC, "bracers", TRUE, FALSE); + } + if ((GetBaseItemType(oItem)==oBracer)&&(oCoin==2)) + { + FloatingTextStringOnCreature + ("You can't use a gold arena token on this item", oPC); + } + + } + + //oItem = GetItemInSlot(INVENTORY_SLOT_HEAD, oTarget); + + // SetPlotFlag(oItem, TRUE); + + // ipAdd = ItemPropertyACBonus(8); + + // IPSafeAddItemProperty(oItem, ipAdd); diff --git a/_module/nss/moditem2.nss b/_module/nss/moditem2.nss new file mode 100644 index 0000000..f687dab --- /dev/null +++ b/_module/nss/moditem2.nss @@ -0,0 +1,182 @@ +void ModNow(object oItem, object oPC) +{ +object oMod = GetModule(); +int oDaxe = BASE_ITEM_DWARVENWARAXE; +int oRapier = BASE_ITEM_RAPIER; +int oLongsword = BASE_ITEM_LONGSWORD; +int oBastardsword = BASE_ITEM_BASTARDSWORD; +int oBattleaxe = BASE_ITEM_BATTLEAXE; +int oKukri = BASE_ITEM_KUKRI; +int oWarhammer = BASE_ITEM_WARHAMMER; +int oShortsword = BASE_ITEM_SHORTSWORD; +int oKama = BASE_ITEM_KAMA; +int oGreatsword = BASE_ITEM_GREATSWORD; +int oHelm = BASE_ITEM_HELMET; +int oBoots = BASE_ITEM_BOOTS; +int oBelt = BASE_ITEM_BELT; +int oAmulet = BASE_ITEM_AMULET; +int oRing = BASE_ITEM_RING; +int oCloak = BASE_ITEM_CLOAK; +int oArmour = BASE_ITEM_ARMOR; +int oBracer = BASE_ITEM_BRACER; +int oShield = BASE_ITEM_TOWERSHIELD; +int oGloves = BASE_ITEM_GLOVES; +int oLbow = BASE_ITEM_LONGBOW; +int oHcrossbow = BASE_ITEM_HEAVYCROSSBOW; +int oSbow = BASE_ITEM_SHORTBOW; +int oLcrossbow = BASE_ITEM_LIGHTCROSSBOW; +int oDbaxe = BASE_ITEM_DOUBLEAXE; +int oDsword = BASE_ITEM_TWOBLADEDSWORD; +int oWhip = BASE_ITEM_WHIP; +int oSickle = BASE_ITEM_SICKLE; +int oScythe = BASE_ITEM_SCYTHE; +int oMstar = BASE_ITEM_MORNINGSTAR; +int oQstaff = BASE_ITEM_QUARTERSTAFF; +int oScim = BASE_ITEM_SCIMITAR; +int oSpear = BASE_ITEM_SHORTSPEAR; +int oLflail = BASE_ITEM_LIGHTFLAIL; +int oHflail = BASE_ITEM_HEAVYFLAIL; +int oHberd = BASE_ITEM_HALBERD; +int oGaxe = BASE_ITEM_GREATAXE; +int oKatana = BASE_ITEM_KATANA; +int oLmace = BASE_ITEM_LIGHTMACE; +int oDmace = BASE_ITEM_DIREMACE; +int oDagg = BASE_ITEM_DAGGER; +int oBolt = BASE_ITEM_BOLT; +int oArrow = BASE_ITEM_ARROW; +int oStaff = BASE_ITEM_MAGICSTAFF; + +SetLocalInt(oMod, "staff", 0); + +int oCoin; +location iLocation = GetLocation(OBJECT_SELF); +int oSpell = SPELL_SHAPECHANGE; +oItem = GetFirstItemInInventory(OBJECT_SELF); + if (GetTag(oItem)=="pearl") + { + oItem = GetNextItemInInventory(OBJECT_SELF); + } + + +if ((GetBaseItemType(oItem)==oRapier)|| + (GetBaseItemType(oItem)==oShortsword)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oBastardsword)|| + (GetBaseItemType(oItem)==oBattleaxe)|| + (GetBaseItemType(oItem)==oKukri)|| + (GetBaseItemType(oItem)==oWarhammer)|| + (GetBaseItemType(oItem)==oKama)|| + (GetBaseItemType(oItem)==oGreatsword)|| + (GetBaseItemType(oItem)==oDaxe)|| + (GetBaseItemType(oItem)==oLongsword)|| + (GetBaseItemType(oItem)==oWhip)|| + (GetBaseItemType(oItem)==oSickle)|| + (GetBaseItemType(oItem)==oMstar)|| + (GetBaseItemType(oItem)==oDbaxe)|| + (GetBaseItemType(oItem)==oDsword)|| + (GetBaseItemType(oItem)==oQstaff)|| + (GetBaseItemType(oItem)==oScim)|| + (GetBaseItemType(oItem)==oSpear)|| + (GetBaseItemType(oItem)==oLflail)|| + (GetBaseItemType(oItem)==oHflail)|| + (GetBaseItemType(oItem)==oHberd)|| + (GetBaseItemType(oItem)==oGaxe)|| + (GetBaseItemType(oItem)==oKatana)|| + (GetBaseItemType(oItem)==oLmace)|| + (GetBaseItemType(oItem)==oDmace)|| + (GetBaseItemType(oItem)==oDagg)|| + (GetBaseItemType(oItem)==oStaff)) + { + if (GetBaseItemType(oItem)==oStaff){SetLocalInt(oMod, "staff", 1);} + ActionStartConversation(oPC, "sundial", TRUE, FALSE); + } + + + + if (GetBaseItemType(oItem)==oArmour) + { + ActionStartConversation(oPC, "armour", TRUE, FALSE); + } + + + if (GetBaseItemType(oItem)==oBelt) + { + ActionStartConversation(oPC, "belt", TRUE, FALSE); + } + + + if (GetBaseItemType(oItem)==oHelm) + { + ActionStartConversation(oPC, "helm", TRUE, FALSE); + } + + + if (GetBaseItemType(oItem)==oGloves) + { + ActionStartConversation(oPC, "gloves", TRUE, FALSE); + } + + + if (GetBaseItemType(oItem)==oAmulet) + { + ActionStartConversation(oPC, "amulet", TRUE, FALSE); + } + + if (GetBaseItemType(oItem)==oBoots) + { + ActionStartConversation(oPC, "boots", TRUE, FALSE); + } + + + if (GetBaseItemType(oItem)==oRing) + { + ActionStartConversation(oPC, "ring", TRUE, FALSE); + } + + + if (GetBaseItemType(oItem)==oShield) + { + ActionStartConversation(oPC, "shield", TRUE, FALSE); + } + + + if (GetBaseItemType(oItem)==oCloak) + { + ActionStartConversation(oPC, "cloak", TRUE, FALSE); + } + + + if (GetBaseItemType(oItem)==oLcrossbow) + { + ActionStartConversation(oPC, "bow2", TRUE, FALSE); + } + + + if (GetBaseItemType(oItem)==oHcrossbow) + { + ActionStartConversation(oPC, "bow2", TRUE, FALSE); + } + + + if (GetBaseItemType(oItem)==oLbow) + { + ActionStartConversation(oPC, "bow", TRUE, FALSE); + } + + + if (GetBaseItemType(oItem)==oSbow) + { + ActionStartConversation(oPC, "bow", TRUE, FALSE); + } + + + if (GetBaseItemType(oItem)==oBracer) + { + ActionStartConversation(oPC, "bracers", TRUE, FALSE); + } + + + +} + +//void main (){} diff --git a/_module/nss/modload.nss b/_module/nss/modload.nss new file mode 100644 index 0000000..680c6c4 --- /dev/null +++ b/_module/nss/modload.nss @@ -0,0 +1,127 @@ +//:://///////////////////////////////////////////// +//:: Example XP2 OnLoad Script +//:: x2_mod_def_load +//:: (c) 2003 Bioware Corp. +//::////////////////////////////////////////////// +/* + Put into: OnModuleLoad Event + + This example script demonstrates how to tweak the + behavior of several subsystems in your module. + + For more information, please check x2_inc_switches + which holds definitions for several variables that + can be set on modules, creatures, doors or waypoints + to change the default behavior of Bioware scripts. + + Warning: + Using some of these switches may change your games + balancing and may introduce bugs or instabilities. We + recommend that you only use these switches if you + know what you are doing. Consider these features + unsupported! + + Please do NOT report any bugs you experience while + these switches have been changed from their default + positions. + + Make sure you visit the forums at nwn.bioware.com + to find out more about these scripts. + +*/ +//::////////////////////////////////////////////// +//:: Created By: Georg Zoeller +//:: Created On: 2003-07-16 +//::////////////////////////////////////////////// + #include "spawner" +#include "x2_inc_switches" +#include "x2_inc_restsys" +void main() +{ + object oModule = GetModule(); + object oPC = GetFirstPC(); + DelayCommand(2.0, SetPlotFlag(GetObjectByTag("starfall"), TRUE)); + spawner (oPC, "starfall", 2); + + + + if (GetGameDifficulty() == GAME_DIFFICULTY_CORE_RULES || GetGameDifficulty() == GAME_DIFFICULTY_DIFFICULT) + { + // * Setting the switch below will enable a seperate Use Magic Device Skillcheck for + // * rogues when playing on Hardcore+ difficulty. This only applies to scrolls + SetModuleSwitch (MODULE_SWITCH_ENABLE_UMD_SCROLLS, TRUE); + + // * Activating the switch below will make AOE spells hurt neutral NPCS by default + // SetModuleSwitch (MODULE_SWITCH_AOE_HURT_NEUTRAL_NPCS, TRUE); + } + + // * AI: Activating the switch below will make the creaures using the WalkWaypoint function + // * able to walk across areas + // SetModuleSwitch (MODULE_SWITCH_ENABLE_CROSSAREA_WALKWAYPOINTS, TRUE); + + // * Spells: Activating the switch below will make the Glyph of Warding spell behave differently: + // * The visual glyph will disappear after 6 seconds, making them impossible to spot + // SetModuleSwitch (MODULE_SWITCH_ENABLE_INVISIBLE_GLYPH_OF_WARDING, TRUE); + + // * Craft Feats: Want 50 charges on a newly created wand? We found this unbalancing, + // * but since it is described this way in the book, here is the switch to get it back... + // SetModuleSwitch (MODULE_SWITCH_ENABLE_CRAFT_WAND_50_CHARGES, TRUE); + + // * Craft Feats: Use this to disable Item Creation Feats if you do not want + // * them in your module + // SetModuleSwitch (MODULE_SWITCH_DISABLE_ITEM_CREATION_FEATS, TRUE); + + // * Palemaster: Deathless master touch in PnP only affects creatures up to a certain size. + // * We do not support this check for balancing reasons, but you can still activate it... + // SetModuleSwitch (MODULE_SWITCH_SPELL_CORERULES_DMASTERTOUCH, TRUE); + + // * Epic Spellcasting: Some Epic spells feed on the liveforce of the caster. However this + // * did not fit into NWNs spell system and was confusing, so we took it out... + // SetModuleSwitch (MODULE_SWITCH_EPIC_SPELLS_HURT_CASTER, TRUE); + + // * Epic Spellcasting: Some Epic spells feed on the liveforce of the caster. However this + // * did not fit into NWNs spell system and was confusing, so we took it out... + // SetModuleSwitch (MODULE_SWITCH_RESTRICT_USE_POISON_TO_FEAT, TRUE); + + // * Spellcasting: Some people don't like caster's abusing expertise to raise their AC + // * Uncommenting this line will drop expertise mode whenever a spell is cast by a player + // SetModuleSwitch (MODULE_VAR_AI_STOP_EXPERTISE_ABUSE, TRUE); + + + // * Item Event Scripts: The game's default event scripts allow routing of all item related events + // * into a single file, based on the tag of that item. If an item's tag is "test", it will fire a + // * script called "test" when an item based event (equip, unequip, acquire, unacquire, activate,...) + // * is triggered. Check "x2_it_example.nss" for an example. + // * This feature is disabled by default. + SetModuleSwitch (MODULE_SWITCH_ENABLE_TAGBASED_SCRIPTS, TRUE); + + if (GetModuleSwitchValue (MODULE_SWITCH_ENABLE_TAGBASED_SCRIPTS) == TRUE) + { + // * If Tagbased scripts are enabled, and you are running a Local Vault Server + // * you should use the line below to add a layer of security to your server, preventing + // * people to execute script you don't want them to. If you use the feature below, + // * all called item scrips will be the prefix + the Tag of the item you want to execute, up to a + // * maximum of 16 chars, instead of the pure tag of the object. + // * i.e. without the line below a user activating an item with the tag "test", + // * will result in the execution of a script called "test". If you uncomment the line below + // * the script called will be "1_test.nss" + // SetUserDefinedItemEventPrefix("1_"); + + } + + // * This initializes Bioware's wandering monster system as used in Hordes of the Underdark + // * You can deactivate it, making your module load faster if you do not use it. + // * If you want to use it, make sure you set "x2_mod_def_rest" as your module's OnRest Script + // SetModuleSwitch (MODULE_SWITCH_USE_XP2_RESTSYSTEM, TRUE); + + if (GetModuleSwitchValue(MODULE_SWITCH_USE_XP2_RESTSYSTEM) == TRUE) + { + + // * This allows you to specify a different 2da for the wandering monster system. + // SetWanderingMonster2DAFile("des_restsystem"); + + //* Do not change this line. + WMBuild2DACache(); + } + +} diff --git a/_module/nss/monkchek.nss b/_module/nss/monkchek.nss new file mode 100644 index 0000000..d97ded1 --- /dev/null +++ b/_module/nss/monkchek.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + + if (!GetHasFeat(FEAT_WEAPON_FOCUS_UNARMED_STRIKE, oPC)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/monst_check.nss b/_module/nss/monst_check.nss new file mode 100644 index 0000000..a97110e --- /dev/null +++ b/_module/nss/monst_check.nss @@ -0,0 +1,28 @@ +int StartingConditional() +{ + object oMod = GetModule(); + if(!(GetLocalInt(oMod, "sw_bm") == 1)&&(GetLocalInt(oMod, "sw_pm") == 1) + &&(GetLocalInt(GetModule(), "sw_hd") == 1) + &&(GetLocalInt(GetModule(), "sw_pf") == 1)&&(GetLocalInt(GetModule(), "sw_bl") == 1) + &&(GetLocalInt(GetModule(), "sw_dr") == 1)&&(GetLocalInt(GetModule(), "sw_hw") == 1) + &&(GetLocalInt(GetModule(), "sw_lm") == 1)&&(GetLocalInt(GetModule(), "sw_ll") == 1)) + return FALSE; + +return TRUE; +} + + + + + + + + + + + + + + + + diff --git a/_module/nss/monster_bye.nss b/_module/nss/monster_bye.nss new file mode 100644 index 0000000..b3368a8 --- /dev/null +++ b/_module/nss/monster_bye.nss @@ -0,0 +1,232 @@ +#include "spawner" +#include "x0_i0_petrify" +#include "eradicate" + +void main() +{ +object oPC = GetLastUsedBy(); +object oTarget; +object oMod = GetModule(); +object oSpawner; +object oDeath = GetObjectByTag("reaper"); +effect eEffect= EffectDeath(); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +object oLever1 = GetObjectByTag("pool_lever"); +object oLever2 = GetObjectByTag("fount_lever"); +object oMonster; +effect eEffect2 = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +int oMode = GetLocalInt(oMod, "duel_on"); +int iHwar = GetLocalInt(oMod, "hwar_on"); +int iTurnFlag = GetLocalInt(oMod, "turn_flag"); +int iJoinSwitch = GetLocalInt(oPC, "join_switch"); +int iConfirm = GetLocalInt(oPC, "bet_confirmed"); +int iWarWon = GetLocalInt(oMod, "war_won"); +int iTLwager = GetLocalInt(oPC, "TLwager"); +int iWager = GetLocalInt(oPC, "wager"); +int mCount=0; +int iHappy = GetLocalInt(oPC, "iHappy"); + +if ((iConfirm==1)&&(iWarWon!=1)) + { + iTLwager+=iWager; + SetLocalInt(oPC, "TLwager", iTLwager); + Message(5.0, "** You have forfeited the bet **", oPC); + SetLocalInt(oPC, "bet_confirmed", 0); + } + + +//FloatingTextStringOnCreature(IntToString(GetLocalInt(oMod, "hwar_on")), oPC); +//FloatingTextStringOnCreature(IntToString(GetLocalInt(oPC, "join_switch")), oPC); +//FloatingTextStringOnCreature(IntToString(GetLocalInt(oMod, "turn_flag")), oPC); + +if ((iHwar==1)&&(iTurnFlag!=1)&&(iJoinSwitch==1)) + { + PlaySound("gui_select"); + SetLocalInt(oMod, "xcheck", 1); + SetLocalInt(oMod, "challenge", 0); + SetLocalInt(oMod, "d1", 0); + SetLocalInt(oMod, "d2", 0); + SetLocalInt(oMod, "d2a", 0); + SetLocalInt(oMod, "d3", 0); + SetLocalInt(oMod, "d4", 0); + SetLocalInt(oMod, "d5", 0); + SetLocalInt(oMod, "ch_hw", 0); + SetLocalInt(oMod, "ch_dr", 0); + SetLocalInt(oMod, "ch_bl", 0); + SetLocalInt(oMod, "ch_pf", 0); + SetLocalInt(oMod, "ch_df", 0); + SetLocalInt(oMod, "ch_pm", 0); + SetLocalInt(oMod, "ch_bm", 0); + SetLocalInt(oMod, "ch_lm", 0); + SetLocalInt(oMod, "ch_ll", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_hw", 0); + SetLocalInt(oMod, "sw_dr", 0); + SetLocalInt(oMod, "sw_bl", 0); + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "sw_df", 0); + SetLocalInt(oMod, "sw_pm", 0); + SetLocalInt(oMod, "sw_bm", 0); + SetLocalInt(oMod, "sw_lm", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oPC, "champ_won", 0); + SetLocalInt(oMod, "war_won", 1); + Eradicate(oPC); + oSpawner = GetObjectByTag("spawner"); + AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + } +else + { + object oLast = GetFirstObjectInArea(GetArea(oPC)); + while (GetIsObjectValid(oLast)) + { + if ((GetObjectType(oLast)==OBJECT_TYPE_CREATURE)&&(!GetIsPC(oLast))&& + (!GetIsDead(oLast))&&(GetTag(oLast)!="reaper")&&(GetTag(oLast)!="starfall")) + { + ++mCount; + //FloatingTextStringOnCreature(GetName(oLast), oPC); + } + if ((GetTag(oLast)=="starfall")&&(GetIsEnemy(oLast, oPC))) + { + ++mCount; + } + oLast = GetNextObjectInArea(GetArea(oPC)); + } + if (mCount!=0) + { + //FloatingTextStringOnCreature(IntToString(mCount), oPC); + if (iHappy==1) + {PlaySound("gui_select");} + else + {PlaySound("sce_negative");} + SetLocalInt(oMod, "xcheck", 1); + SetLocalInt(oMod, "challenge", 0); + SetLocalInt(oMod, "d1", 0); + SetLocalInt(oMod, "d2", 0); + SetLocalInt(oMod, "d2a", 0); + SetLocalInt(oMod, "d3", 0); + SetLocalInt(oMod, "d4", 0); + SetLocalInt(oMod, "d5", 0); + SetLocalInt(oMod, "ch_hw", 0); + SetLocalInt(oMod, "ch_dr", 0); + SetLocalInt(oMod, "ch_bl", 0); + SetLocalInt(oMod, "ch_pf", 0); + SetLocalInt(oMod, "ch_df", 0); + SetLocalInt(oMod, "ch_pm", 0); + SetLocalInt(oMod, "ch_bm", 0); + SetLocalInt(oMod, "ch_lm", 0); + SetLocalInt(oMod, "ch_ll", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_hw", 0); + SetLocalInt(oMod, "sw_dr", 0); + SetLocalInt(oMod, "sw_bl", 0); + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "sw_df", 0); + SetLocalInt(oMod, "sw_pm", 0); + SetLocalInt(oMod, "sw_bm", 0); + SetLocalInt(oMod, "sw_lm", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oMod, "hwar_on", 0); + if (oMode==1) + { + PlaySound("sps_darkness"); + SetIsTemporaryFriend(oPC, GetObjectByTag("starfall")); + object oTarget2 = GetObjectByTag("starfall"); + location oLoc = GetLocation(oTarget2); + int iDied = GetLocalInt (oPC,"iDied"); + ++iDied; + SetLocalInt(oPC,"iDied",iDied); + FloatingTextStringOnCreature("You have surrendered and lost the duel", oPC); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect2)); + RemoveEffectOfType(oP2, GetEffectType(eEffect2)); + RemoveEffectOfType(oP3, GetEffectType(eEffect2)); + RemoveEffectOfType(oP4, GetEffectType(eEffect2)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetIsTemporaryFriend(oPC, GetObjectByTag("starfall")); + DelayCommand(0.1, AssignCommand(oTarget2, ClearAllActions())); + DelayCommand(1.9, AssignCommand + (GetObjectByTag("starfall"), ActionSpeakString("You are wise to surrender, mortal",TALKVOLUME_SHOUT))); + DelayCommand(2.0, AssignCommand + (GetObjectByTag("starfall"), ActionPlayAnimation(ANIMATION_FIREFORGET_BOW))); + DelayCommand(4.0, AssignCommand + (GetObjectByTag("starfall"), ActionSpeakString("You know where to find me if you wish to try again.",TALKVOLUME_SHOUT))); + DelayCommand(7.0, AssignCommand + (oTarget2, ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); + DelayCommand(8.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_IMP_REMOVE_CONDITION), oLoc)); + DelayCommand(9.0, AssignCommand + (oTarget2, JumpToLocation(GetLocation(GetObjectByTag ("starfall_wp"))))); + SetLocalInt(oMod, "duel_on",0); + DelayCommand(9.2, Cast(SPELL_GREATER_RESTORATION, oTarget2)); + DelayCommand(9.5, RemoveEffectOfType(oTarget2, EFFECT_TYPE_CONCEALMENT)); + } + else + { + SetLocalInt(oMod, "xcheck", 1); + SetLocalInt(oMod, "challenge", 0); + SetLocalInt(oMod, "d1", 0); + SetLocalInt(oMod, "d2", 0); + SetLocalInt(oMod, "d2a", 0); + SetLocalInt(oMod, "d3", 0); + SetLocalInt(oMod, "d4", 0); + SetLocalInt(oMod, "d5", 0); + SetLocalInt(oMod, "ch_hw", 0); + SetLocalInt(oMod, "ch_dr", 0); + SetLocalInt(oMod, "ch_bl", 0); + SetLocalInt(oMod, "ch_pf", 0); + SetLocalInt(oMod, "ch_df", 0); + SetLocalInt(oMod, "ch_pm", 0); + SetLocalInt(oMod, "ch_bm", 0); + SetLocalInt(oMod, "ch_lm", 0); + SetLocalInt(oMod, "ch_ll", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_hw", 0); + SetLocalInt(oMod, "sw_dr", 0); + SetLocalInt(oMod, "sw_bl", 0); + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "sw_df", 0); + SetLocalInt(oMod, "sw_pm", 0); + SetLocalInt(oMod, "sw_bm", 0); + SetLocalInt(oMod, "sw_lm", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oMod, "hwar_on", 0); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect2)); + RemoveEffectOfType(oP2, GetEffectType(eEffect2)); + RemoveEffectOfType(oP3, GetEffectType(eEffect2)); + RemoveEffectOfType(oP4, GetEffectType(eEffect2)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + SetLocalInt(oMod, "hwar_on", 0); + SetLocalInt(oMod, "scre2_state", 0); + SetLocalInt(oMod, "scre_state", 0); + SetLocalInt(oMod, "scre_state3", 0); + SetLocalInt(oMod, "scre_state4", 0); + Eradicate(oPC); + } + oSpawner = GetObjectByTag("spawner"); + AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("** No enemies present **", oPC); + + } + } +} diff --git a/_module/nss/monster_damage.nss b/_module/nss/monster_damage.nss new file mode 100644 index 0000000..93e0647 --- /dev/null +++ b/_module/nss/monster_damage.nss @@ -0,0 +1,236 @@ + + +void main() +{ +object oPC = GetFirstPC(); +object oMod = GetModule(); +int iAv1, iAv2, iAv3, iAv4, iAv5, iAv6, iAv7, iAv8, iAv9, iAv10 + , iAv11, iAv12; + +float fPerc1, fPerc2, fPerc3, fPerc4, fPerc5, fPerc6, fPerc7, fPerc8, + fPerc9, fPerc10, fPerc11, fPerc12; + +if (GetLocalInt(oMod, "mod_mode")==1) +{ +PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("*** Not used in campaign manager mode ***", oPC); + return; +} + +if (GetLocalInt(oMod, "notime4_ss")!=0) +{fPerc1 = (IntToFloat(GetLocalInt(oMod, "notime4_hh")) / +IntToFloat(GetLocalInt(oMod, "notime4_ss"))) * 100.0; +iAv1 = FloatToInt(fPerc1);} +else +{iAv1 = 0;} +if (GetLocalInt(oMod, "death_ss")!=0) +{fPerc2 = (IntToFloat(GetLocalInt(oMod, "death_hh")) / +IntToFloat(GetLocalInt(oMod, "death_ss"))) * 100.0; +iAv2 = FloatToInt(fPerc2);} +else +{iAv2 = 0;} +if (GetLocalInt(oMod, "notime3_ss")!=0) +{fPerc3 = (IntToFloat(GetLocalInt(oMod, "notime3_hh")) / +IntToFloat(GetLocalInt(oMod, "notime3_ss"))) * 100.0; +iAv3 = FloatToInt(fPerc3);} +else +{iAv3 = 0;} +if (GetLocalInt(oMod, "mistress2_ss")!=0) +{fPerc4 = (IntToFloat(GetLocalInt(oMod, "mistress2_hh")) / +IntToFloat(GetLocalInt(oMod, "mistress2_ss"))) * 100.0; +iAv4 = FloatToInt(fPerc4);} +else +{iAv4 = 0;} +if (GetLocalInt(oMod, "zep_marilithb001_ss")!=0) +{fPerc5 = (IntToFloat(GetLocalInt(oMod, "zep_marilithb001_hh")) / +IntToFloat(GetLocalInt(oMod, "zep_marilithb001_ss"))) * 100.0; +iAv5 = FloatToInt(fPerc5);} +else +{iAv5 = 0;} +if (GetLocalInt(oMod, "bard2_ss")!=0) +{fPerc6 = (IntToFloat(GetLocalInt(oMod, "bard2_hh")) / +IntToFloat(GetLocalInt(oMod, "bard2_ss"))) * 100.0; +iAv6 = FloatToInt(fPerc6);} +else +{iAv6 = 0;} +if (GetLocalInt(oMod, "zep_halfdrafn001_ss")!=0) +{fPerc7 = (IntToFloat(GetLocalInt(oMod, "zep_halfdrafn001_hh")) / +IntToFloat(GetLocalInt(oMod, "zep_halfdrafn001_ss"))) * 100.0; +iAv7 = FloatToInt(fPerc7);} +else +{iAv7 = 0;} +if (GetLocalInt(oMod, "zep_pitfiend001_ss")!=0) +{fPerc8 = (IntToFloat(GetLocalInt(oMod, "zep_pitfiend001_hh")) / +IntToFloat(GetLocalInt(oMod, "zep_pitfiend001_ss"))) * 100.0; +iAv8 = FloatToInt(fPerc8);} +else +{iAv8 = 0;} +if (GetLocalInt(oMod, "dopple_ss")!=0) +{fPerc9 = (IntToFloat(GetLocalInt(oMod, "dopple_hh")) / +IntToFloat(GetLocalInt(oMod, "dopple_ss"))) * 100.0; +iAv9 = FloatToInt(fPerc9);} +else +{iAv9 = 0;} +if (GetLocalInt(oMod, "zep_balrog001_ss")!=0) +{fPerc10 = (IntToFloat(GetLocalInt(oMod, "zep_balrog001_hh")) / +IntToFloat(GetLocalInt(oMod, "zep_balrog001_ss"))) * 100.0; +iAv10 = FloatToInt(fPerc10);} +else +{iAv10 = 0;} +if (GetLocalInt(oMod, "dragon1_ss")!=0) +{fPerc11 = (IntToFloat(GetLocalInt(oMod, "dragon1_hh")) / +IntToFloat(GetLocalInt(oMod, "dragon1_ss"))) * 100.0; +iAv11 = FloatToInt(fPerc11);} +else +{iAv11 = 0;} +if (GetLocalInt(oMod, "darcher_ss")!=0) +{fPerc12 = (IntToFloat(GetLocalInt(oMod, "darcher_hh")) / +IntToFloat(GetLocalInt(oMod, "darcher_ss"))) * 100.0; +iAv12 = FloatToInt(fPerc12);} +else +{iAv12 = 0;} + + +string sDam1 = IntToString(GetLocalInt(oMod, "notime4_dd")); +string sTak1 = IntToString(GetLocalInt(oMod, "notime4_dt"))+" / "+IntToString(iAv1)+"% "+IntToString(GetLocalInt(oMod, "notime4_k"))+GetLocalString(oMod, "notime4_x"); +string sDam2 = IntToString(GetLocalInt(oMod, "death_dd")); +string sTak2 = IntToString(GetLocalInt(oMod, "death_dt"))+" / "+IntToString(iAv2)+"% "+IntToString(GetLocalInt(oMod, "death_k"))+GetLocalString(oMod, "death_x"); +string sDam3 = IntToString(GetLocalInt(oMod, "notime3_dd")); +string sTak3 = IntToString(GetLocalInt(oMod, "notime3_dt"))+" / "+IntToString(iAv3)+"% "+IntToString(GetLocalInt(oMod, "notime3_k"))+GetLocalString(oMod, "notime3_x"); +string sDam4 = IntToString(GetLocalInt(oMod, "mistress2_dd")); +string sTak4 = IntToString(GetLocalInt(oMod, "mistress2_dt"))+" / "+IntToString(iAv4)+"% "+IntToString(GetLocalInt(oMod, "mistress2_k"))+GetLocalString(oMod, "mistress2_x"); +string sDam5 = IntToString(GetLocalInt(oMod, "zep_marilithb001_dd")); +string sTak5 = IntToString(GetLocalInt(oMod, "zep_marilithb001_dt"))+" / "+IntToString(iAv5)+"% "+IntToString(GetLocalInt(oMod, "zep_marilithb001_k"))+GetLocalString(oMod, "zep_marilithb001_x"); +string sDam6 = IntToString(GetLocalInt(oMod, "bard2_dd")); +string sTak6 = IntToString(GetLocalInt(oMod, "bard2_dt"))+" / "+IntToString(iAv6)+"% "+IntToString(GetLocalInt(oMod, "bard2_k"))+GetLocalString(oMod, "bard2_x"); +string sDam7 = IntToString(GetLocalInt(oMod, "zep_halfdrafn001_dd")); +string sTak7 = IntToString(GetLocalInt(oMod, "zep_halfdrafn001_dt"))+" / "+IntToString(iAv7)+"% "+" / "+IntToString(GetLocalInt(oMod, "zep_halfdrafn001_k"))+GetLocalString(oMod, "zep_halfdrafn001_x"); +string sDam8 = IntToString(GetLocalInt(oMod, "zep_pitfiend001_dd")); +string sTak8 = IntToString(GetLocalInt(oMod, "zep_pitfiend001_dt"))+" / "+IntToString(iAv8)+"% "+" / "+IntToString(GetLocalInt(oMod, "zep_pitfiend001_k"))+GetLocalString(oMod, "zep_pitfiend001_x"); +string sDam9 = IntToString(GetLocalInt(oMod, "dopple_dd")); +string sTak9 = IntToString(GetLocalInt(oMod, "dopple_dt"))+" / "+IntToString(iAv9)+"% "+IntToString(GetLocalInt(oMod, "dopple_k"))+GetLocalString(oMod, "dopple_x"); +string sDam10 = IntToString(GetLocalInt(oMod, "zep_balrog001_dd")); +string sTak10 = IntToString(GetLocalInt(oMod, "zep_balrog001_dt"))+" / "+IntToString(iAv10)+"% "+" / "+IntToString(GetLocalInt(oMod, "zep_balrog001_k"))+GetLocalString(oMod, "zep_balrog001_x"); +string sDam11 = IntToString(GetLocalInt(oMod, "dragon1_dd")); +string sTak11 = IntToString(GetLocalInt(oMod, "dragon1_dt"))+" / "+IntToString(iAv11)+"% "+IntToString(GetLocalInt(oMod, "dragon1_k"))+GetLocalString(oMod, "dragon1_x"); +string sDam12 = IntToString(GetLocalInt(oMod, "darcher_dd")); +string sTak12 = IntToString(GetLocalInt(oMod, "darcher_dt"))+" / "+IntToString(iAv12)+"% "+IntToString(GetLocalInt(oMod, "darcher_k"))+GetLocalString(oMod, "darcher_x"); +int iTotalDealt; +int iTotalTaken; + +PlaySound("gui_select"); + +iTotalDealt = GetLocalInt(oMod, "dragon1_dd")+ +GetLocalInt(oMod, "zep_balrog001_dd")+ +GetLocalInt(oMod, "dopple_dd")+ +GetLocalInt(oMod, "zep_pitfiend001_dd")+ +GetLocalInt(oMod, "zep_halfdrafn001_dd")+ +GetLocalInt(oMod, "bard2_dd")+ +GetLocalInt(oMod, "zep_marilithb001_dd")+ +GetLocalInt(oMod, "mistress2_dd")+ +GetLocalInt(oMod, "notime3_dd")+ +GetLocalInt(oMod, "death_dd")+ +GetLocalInt(oMod, "darcher_dd")+ +GetLocalInt(oMod, "notime4_dd"); + +iTotalTaken = GetLocalInt(oMod, "dragon1_dt")+ +GetLocalInt(oMod, "zep_balrog001_dt")+ +GetLocalInt(oMod, "dopple_dt")+ +GetLocalInt(oMod, "zep_pitfiend001_dt")+ +GetLocalInt(oMod, "zep_halfdrafn001_dt")+ +GetLocalInt(oMod, "bard2_dt")+ +GetLocalInt(oMod, "zep_marilithb001_dt")+ +GetLocalInt(oMod, "mistress2_dt")+ +GetLocalInt(oMod, "notime3_dt")+ +GetLocalInt(oMod, "death_dt")+ +GetLocalInt(oMod, "darcher_dt")+ +GetLocalInt(oMod, "notime4_dt"); + +string sTotalDealt = IntToString(iTotalDealt); +string sTotalTaken = IntToString(iTotalTaken); + +string SpeakText; +int iSwitch = GetLocalInt(oPC, "luciferdead"); + +if (iSwitch==1) + { + + + SpeakText = "\nDamage: Dealt/Taken / Accuracy / Kills\n "; + SpeakText += "---------------------------\n"; + SpeakText += "Lucifer "; + SpeakText += sDam1; + SpeakText += " / "; + SpeakText += sTak1; + SpeakText += "\n"; + SpeakText += "Fallen Disciple "; + SpeakText += sDam2; + SpeakText += " / "; + SpeakText += sTak2; + SpeakText += "\n"; + SpeakText += "Baal "; + SpeakText += sDam3; + SpeakText += " / "; + SpeakText += sTak3; + SpeakText += "\n"; + SpeakText += "Lucifer's Mistress "; + SpeakText += sDam4; + SpeakText += " / "; + SpeakText += sTak4; + SpeakText += "\n"; + SpeakText += "Kamaji Berserker "; + SpeakText += sDam5; + SpeakText += " / "; + SpeakText += sTak5; + SpeakText += "\n"; + SpeakText += "Bard Heretic "; + SpeakText += sDam6; + SpeakText += " / "; + SpeakText += sTak6; + SpeakText += "\n"; + SpeakText += "Valdar Dragoon "; + SpeakText += sDam7; + SpeakText += " / "; + SpeakText += sTak7; + SpeakText += "\n"; + SpeakText += "WarDemon "; + SpeakText += sDam8; + SpeakText += " / "; + SpeakText += sTak8; + SpeakText += "\n"; + SpeakText += "Dark Reaver "; + SpeakText += sDam9; + SpeakText += " / "; + SpeakText += sTak9; + SpeakText += "\n"; + SpeakText += "Dark Archer "; + SpeakText += sDam12; + SpeakText += " / "; + SpeakText += sTak12; + SpeakText += "\n"; + SpeakText += "Balrog Lord "; + SpeakText += sDam10; + SpeakText += " / "; + SpeakText += sTak10; + SpeakText += "\n"; + SpeakText += "Death Wurm "; + SpeakText += sDam11; + SpeakText += " / "; + SpeakText += sTak11; + //SpeakText += "\n---------------------------\n"; + SpeakText += "\nTOTAL DAMAGE: "; + SpeakText += sTotalDealt; + SpeakText += " / "; + SpeakText += sTotalTaken; + + + SpeakString(SpeakText); + } +else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("*** Not activated until [Holy War] feature is unlocked ***", oPC); + } +} diff --git a/_module/nss/music_start.nss b/_module/nss/music_start.nss new file mode 100644 index 0000000..0a9c732 --- /dev/null +++ b/_module/nss/music_start.nss @@ -0,0 +1,12 @@ +#include "in_g_cutscene" + +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "star_music", 0); +//MusicBackgroundChangeDay(GetArea(oPC), TRACK_ORIGINAL); +//MusicBackgroundChangeNight(GetArea(oPC), TRACK_ORIGINAL); +MusicBackgroundPlay(GetArea(oPC)); +FloatingTextStringOnCreature("** Background Music On **", oPC); +} diff --git a/_module/nss/musthave_10k.nss b/_module/nss/musthave_10k.nss new file mode 100644 index 0000000..07746aa --- /dev/null +++ b/_module/nss/musthave_10k.nss @@ -0,0 +1,15 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (!(GetGold(oPC) <= 9999)) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/musthave_200k.nss b/_module/nss/musthave_200k.nss new file mode 100644 index 0000000..0bf4c15 --- /dev/null +++ b/_module/nss/musthave_200k.nss @@ -0,0 +1,15 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (!(GetGold(oPC) <= 99999)) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/n_blade.nss b/_module/nss/n_blade.nss new file mode 100644 index 0000000..94cfd0b --- /dev/null +++ b/_module/nss/n_blade.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "ch_ll", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "blade", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; +//AddHenchman(oPC, oTarget); +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/n_johnny.nss b/_module/nss/n_johnny.nss new file mode 100644 index 0000000..2a56848 --- /dev/null +++ b/_module/nss/n_johnny.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "ch_ll", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "johnny", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; +//AddHenchman(oPC, oTarget); +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/n_paremus.nss b/_module/nss/n_paremus.nss new file mode 100644 index 0000000..6746865 --- /dev/null +++ b/_module/nss/n_paremus.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "ch_ll", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "paremus", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; +//AddHenchman(oPC, oTarget); +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/n_starseeker.nss b/_module/nss/n_starseeker.nss new file mode 100644 index 0000000..3e5330f --- /dev/null +++ b/_module/nss/n_starseeker.nss @@ -0,0 +1,48 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "ch_ll", 1); +SetLocalInt(oMod, "gr_xx", 1); +SetLocalInt(oMod, "xcheck", 0); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "starseeker", lTarget); + +oTarget = oSpawn; + +SetIsTemporaryEnemy(oPC, oTarget); + +AssignCommand(oTarget, ActionAttack(oPC)); + +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +oTarget = oSpawn; +//AddHenchman(oPC, oTarget); +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/n_start.nss b/_module/nss/n_start.nss new file mode 100644 index 0000000..a0e7338 --- /dev/null +++ b/_module/nss/n_start.nss @@ -0,0 +1,97 @@ +#include "strip" +#include "rank" + + +void Delevel(object oPC); + +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +string oJourn; +int oMode = GetLocalInt(oMod, "gamemode"); +SetLocalInt(GetModule(), "nord_mode", 1); +InvStrip(oPC); +GearStrip(oPC); +CreateItemOnObject("nordock_token", oPC, 1); +SetLocalInt(oPC, "iKilled", 0); + SetLocalInt(oPC, "iDied", 0); + SetLocalInt(oPC, "pc_swing", 0); + SetLocalInt(oPC, "pc_HWswing", 0); + SetLocalInt(oPC, "pc_hit", 0); + SetLocalInt(oPC, "player_dd", 0); + SetLocalInt(oPC, "pc_HWdam", 0); + SetLocalInt(oPC, "pc_HWhit", 0); + SetLocalInt(oPC, "aScore", 0); + + // Reset Completed Arena Challenges + + SetLocalInt(oMod, "d1_complete",0); + SetLocalInt(oMod, "d2_complete",0); + SetLocalInt(oMod, "d2a_complete",0); + SetLocalInt(oMod, "d3_complete",0); + SetLocalInt(oMod, "d4_complete",0); + SetLocalInt(oMod, "d5_complete",0); + + // Reset Killed Challengers + + SetLocalInt(oPC, "wurmdead",0); + SetLocalInt(oPC, "balrogdead",0); + SetLocalInt(oPC, "doppledead",0); + SetLocalInt(oPC, "pitfienddead",0); + SetLocalInt(oPC, "hdfienddead",0); + SetLocalInt(oPC, "paledead",0); + SetLocalInt(oPC, "marilithdead",0); + SetLocalInt(oPC, "bossdead",0); + SetLocalInt(oPC, "lorddead",0); + SetLocalInt(oPC, "luciferdead",0); + + // Reset the Arena Scoreboard to its default display + + SetLocalInt(oMod, "score_switch", 0); + + + // Remove Journal Entries + + RemoveJournalQuestEntry(oJourn, oPC, FALSE, FALSE); + if (oMode==1) + { + RemoveJournalQuestEntry("boss1_0", oPC, FALSE, FALSE); + RemoveJournalQuestEntry("boss2_0", oPC, FALSE, FALSE); + RemoveJournalQuestEntry("boss3_0", oPC, FALSE, FALSE); + RemoveJournalQuestEntry("boss4_0", oPC, FALSE, FALSE); + RemoveJournalQuestEntry("boss5_0", oPC, FALSE, FALSE); + RemoveJournalQuestEntry("boss6_0", oPC, FALSE, FALSE); + } + else + { + RemoveJournalQuestEntry("boss1", oPC, FALSE, FALSE); + RemoveJournalQuestEntry("boss2", oPC, FALSE, FALSE); + RemoveJournalQuestEntry("boss3", oPC, FALSE, FALSE); + RemoveJournalQuestEntry("boss4", oPC, FALSE, FALSE); + RemoveJournalQuestEntry("boss5", oPC, FALSE, FALSE); + RemoveJournalQuestEntry("boss6", oPC, FALSE, FALSE); + } + + +DelayCommand(4.0, FloatingTextStringOnCreature("** Australis Mode Initiated **", oPC)); +DelayCommand(4.0, PlaySound("sce_neutral")); +DelayCommand(3.0, GetRank(oPC)); +} + +void Delevel(object oPC) +{ + +int oXP = 378000; +effect eVis = EffectVisualEffect(VFX_FNF_LOS_EVIL_10); +ActionPauseConversation(); +AssignCommand(GetObjectByTag("starfall"), +ActionCastFakeSpellAtObject(SPELL_NEGATIVE_ENERGY_BURST, oPC)); + +DelayCommand(2.5, SetXP(oPC, oXP)); +DelayCommand(2.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oPC)); +DelayCommand(2.75, ActionResumeConversation()); + + +} + diff --git a/_module/nss/ne.nss b/_module/nss/ne.nss new file mode 100644 index 0000000..393e07c --- /dev/null +++ b/_module/nss/ne.nss @@ -0,0 +1,9 @@ +void main() +{ +object oPC=GetPCSpeaker(); +ActionCastFakeSpellAtObject(SPELL_EVARDS_BLACK_TENTACLES,oPC); +DelayCommand(2.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_PWSTUN),oPC)); +DelayCommand(2.5,AdjustAlignment(oPC,ALIGNMENT_NEUTRAL,50)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_EVIL,35)); +DelayCommand(2.7,AdjustAlignment(oPC,ALIGNMENT_EVIL,15)); +} diff --git a/_module/nss/neg_imbue.nss b/_module/nss/neg_imbue.nss new file mode 100644 index 0000000..374d6cd --- /dev/null +++ b/_module/nss/neg_imbue.nss @@ -0,0 +1,8 @@ +#include "imbue_include" +void main() +{ +SetLocalInt(GetPCSpeaker(), "nfire_ldb", 1); +ImbueWeapon(VFX_IMP_NEGATIVE_ENERGY, IP_CONST_DAMAGETYPE_NEGATIVE); +} + + diff --git a/_module/nss/neg_imbue_arm.nss b/_module/nss/neg_imbue_arm.nss new file mode 100644 index 0000000..058831d --- /dev/null +++ b/_module/nss/neg_imbue_arm.nss @@ -0,0 +1,7 @@ +#include "imbue_include" +void main() +{ +ImbueArmour(VFX_FNF_SUMMON_EPIC_UNDEAD, IP_CONST_DAMAGETYPE_NEGATIVE); +} + + diff --git a/_module/nss/neu_evi_align.nss b/_module/nss/neu_evi_align.nss new file mode 100644 index 0000000..0835bf6 --- /dev/null +++ b/_module/nss/neu_evi_align.nss @@ -0,0 +1,10 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + + if (!(GetAlignmentGoodEvil(oPC) == ALIGNMENT_EVIL && + GetAlignmentLawChaos(oPC) == ALIGNMENT_NEUTRAL)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/neu_goo_align.nss b/_module/nss/neu_goo_align.nss new file mode 100644 index 0000000..1dd49a7 --- /dev/null +++ b/_module/nss/neu_goo_align.nss @@ -0,0 +1,10 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + + if (!(GetAlignmentGoodEvil(oPC) == ALIGNMENT_GOOD && + GetAlignmentLawChaos(oPC) == ALIGNMENT_NEUTRAL)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/neutral_rollplay.nss b/_module/nss/neutral_rollplay.nss new file mode 100644 index 0000000..c3516c0 --- /dev/null +++ b/_module/nss/neutral_rollplay.nss @@ -0,0 +1,26 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); + +if ((GetAlignmentGoodEvil(oPC) != ALIGNMENT_EVIL)&& + (GetAlignmentGoodEvil(oPC) != ALIGNMENT_GOOD)) + { + FloatingTextStringOnCreature("You have been awarded for good rollplay", oPC); + CreateItemOnObject("faithdrink", oPC); + return; + } + else + { + FloatingTextStringOnCreature("Careful, or you may suffer an alignment shift!", oPC); + + } +} + diff --git a/_module/nss/ng.nss b/_module/nss/ng.nss new file mode 100644 index 0000000..bdab80f --- /dev/null +++ b/_module/nss/ng.nss @@ -0,0 +1,9 @@ +void main() +{ +object oPC=GetPCSpeaker(); +ActionCastFakeSpellAtObject(SPELL_HEAL,oPC); +DelayCommand(2.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_PWSTUN),oPC)); +DelayCommand(2.5,AdjustAlignment(oPC,ALIGNMENT_NEUTRAL,50)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_GOOD,35)); +DelayCommand(2.7,AdjustAlignment(oPC,ALIGNMENT_GOOD,15)); +} diff --git a/_module/nss/ng_imbue25.nss b/_module/nss/ng_imbue25.nss new file mode 100644 index 0000000..b248c97 --- /dev/null +++ b/_module/nss/ng_imbue25.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ngdone_1", 1); +DamRes(8,2); +} diff --git a/_module/nss/ng_imbue252.nss b/_module/nss/ng_imbue252.nss new file mode 100644 index 0000000..a8144b0 --- /dev/null +++ b/_module/nss/ng_imbue252.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ngdone_12", 1); +DamRes2(8,2); +} diff --git a/_module/nss/ngdone_1.nss b/_module/nss/ngdone_1.nss new file mode 100644 index 0000000..e45d007 --- /dev/null +++ b/_module/nss/ngdone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ngdone_12.nss b/_module/nss/ngdone_12.nss new file mode 100644 index 0000000..34dc990 --- /dev/null +++ b/_module/nss/ngdone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ngdred_imbue_2.nss b/_module/nss/ngdred_imbue_2.nss new file mode 100644 index 0000000..93405c2 --- /dev/null +++ b/_module/nss/ngdred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ngdone_2", 1); +DamRes(8,3); +} diff --git a/_module/nss/ngdred_imbue_22.nss b/_module/nss/ngdred_imbue_22.nss new file mode 100644 index 0000000..c58a8e6 --- /dev/null +++ b/_module/nss/ngdred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ngdone_22", 1); +DamRes2(8,3); +} diff --git a/_module/nss/ngdred_imbue_3.nss b/_module/nss/ngdred_imbue_3.nss new file mode 100644 index 0000000..f5b8ba3 --- /dev/null +++ b/_module/nss/ngdred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ngdone_3", 1); +DamRes(8,4); +} diff --git a/_module/nss/ngdred_imbue_32.nss b/_module/nss/ngdred_imbue_32.nss new file mode 100644 index 0000000..80af45f --- /dev/null +++ b/_module/nss/ngdred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ngmax_reduction2", 1); +SetLocalInt(oPC, "ngdone_32", 1); +DamRes2(8,4); +} diff --git a/_module/nss/ngdred_imbue_4.nss b/_module/nss/ngdred_imbue_4.nss new file mode 100644 index 0000000..9f5a321 --- /dev/null +++ b/_module/nss/ngdred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ngdone_4", 1); +DamRes(8,5); +} diff --git a/_module/nss/ngdred_imbue_5.nss b/_module/nss/ngdred_imbue_5.nss new file mode 100644 index 0000000..31db28b --- /dev/null +++ b/_module/nss/ngdred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "ngdone_5", 1); +SetLocalInt(oPC, "ngmax_reduction", 1); +DamRes(8,6); +} diff --git a/_module/nss/nged_1.nss b/_module/nss/nged_1.nss new file mode 100644 index 0000000..c529e35 --- /dev/null +++ b/_module/nss/nged_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/nged_12.nss b/_module/nss/nged_12.nss new file mode 100644 index 0000000..6e4a1e0 --- /dev/null +++ b/_module/nss/nged_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngmax_damred.nss b/_module/nss/ngmax_damred.nss new file mode 100644 index 0000000..7bbda88 --- /dev/null +++ b/_module/nss/ngmax_damred.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngmax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ngmax_damred1.nss b/_module/nss/ngmax_damred1.nss new file mode 100644 index 0000000..3370589 --- /dev/null +++ b/_module/nss/ngmax_damred1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngmax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ngmax_damred12.nss b/_module/nss/ngmax_damred12.nss new file mode 100644 index 0000000..7129d96 --- /dev/null +++ b/_module/nss/ngmax_damred12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngmax_reduction2") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "gamemode") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngmax_damred2.nss b/_module/nss/ngmax_damred2.nss new file mode 100644 index 0000000..dcaf47f --- /dev/null +++ b/_module/nss/ngmax_damred2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName comax_damred +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:55:43 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngmax_reduction2") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "gamemode") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred1_1.nss b/_module/nss/ngred1_1.nss new file mode 100644 index 0000000..536928b --- /dev/null +++ b/_module/nss/ngred1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred1_12.nss b/_module/nss/ngred1_12.nss new file mode 100644 index 0000000..85d2a10 --- /dev/null +++ b/_module/nss/ngred1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred_0.nss b/_module/nss/ngred_0.nss new file mode 100644 index 0000000..0c60af7 --- /dev/null +++ b/_module/nss/ngred_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/ngred_02.nss b/_module/nss/ngred_02.nss new file mode 100644 index 0000000..92f9553 --- /dev/null +++ b/_module/nss/ngred_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/ngred_10.nss b/_module/nss/ngred_10.nss new file mode 100644 index 0000000..638ddcd --- /dev/null +++ b/_module/nss/ngred_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ngred_11.nss b/_module/nss/ngred_11.nss new file mode 100644 index 0000000..5423144 --- /dev/null +++ b/_module/nss/ngred_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred_12.nss b/_module/nss/ngred_12.nss new file mode 100644 index 0000000..afbca8a --- /dev/null +++ b/_module/nss/ngred_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred_2.nss b/_module/nss/ngred_2.nss new file mode 100644 index 0000000..ff83783 --- /dev/null +++ b/_module/nss/ngred_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred_22.nss b/_module/nss/ngred_22.nss new file mode 100644 index 0000000..58b2bdb --- /dev/null +++ b/_module/nss/ngred_22.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred_22mc.nss b/_module/nss/ngred_22mc.nss new file mode 100644 index 0000000..734c3b9 --- /dev/null +++ b/_module/nss/ngred_22mc.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mcngdone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "mcngdone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred_3.nss b/_module/nss/ngred_3.nss new file mode 100644 index 0000000..0132d49 --- /dev/null +++ b/_module/nss/ngred_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ngred_32.nss b/_module/nss/ngred_32.nss new file mode 100644 index 0000000..225623b --- /dev/null +++ b/_module/nss/ngred_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ngred_4.nss b/_module/nss/ngred_4.nss new file mode 100644 index 0000000..23d538b --- /dev/null +++ b/_module/nss/ngred_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred_42.nss b/_module/nss/ngred_42.nss new file mode 100644 index 0000000..c7f84e3 --- /dev/null +++ b/_module/nss/ngred_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred_6.nss b/_module/nss/ngred_6.nss new file mode 100644 index 0000000..2571f5a --- /dev/null +++ b/_module/nss/ngred_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred_62.nss b/_module/nss/ngred_62.nss new file mode 100644 index 0000000..b289043 --- /dev/null +++ b/_module/nss/ngred_62.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred_62mc.nss b/_module/nss/ngred_62mc.nss new file mode 100644 index 0000000..218530b --- /dev/null +++ b/_module/nss/ngred_62mc.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "mcngdone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "mcngdone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred_7.nss b/_module/nss/ngred_7.nss new file mode 100644 index 0000000..b05e51e --- /dev/null +++ b/_module/nss/ngred_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/ngred_8.nss b/_module/nss/ngred_8.nss new file mode 100644 index 0000000..d05e656 --- /dev/null +++ b/_module/nss/ngred_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/ngred_9.nss b/_module/nss/ngred_9.nss new file mode 100644 index 0000000..a0242b1 --- /dev/null +++ b/_module/nss/ngred_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ngdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/nodrop_include.nss b/_module/nss/nodrop_include.nss new file mode 100644 index 0000000..36f16af --- /dev/null +++ b/_module/nss/nodrop_include.nss @@ -0,0 +1,170 @@ +// This wont recompile right because its an include = normal +// after changing this though, +//you will need to recompile mad_unaquire and mad_aquire + + +/* // To Determine if a item is a SUBRACE item (will automatically make it no drop) +int GetIsSubraceItem(object oTarget) +{ + string strResRef = GetResRef(oTarget); + if(// Must be resref right below this, not --> || +strResRef == "darkelfprops" +|| +strResRef == "darkelfprops1" +|| +strResRef == "darkelfprops2" +|| +strResRef == "demonprops" +|| +strResRef == "demonprops1" +|| +strResRef == "demonprops2" +|| +strResRef == "dragprop" +|| +strResRef == "dragprops" +|| +strResRef == "dragprops1" +|| +strResRef == "dragprops2" +|| +strResRef == "dragprops3" +|| +strResRef == "drowprops" +|| +strResRef == "drowprops1" +|| + strResRef == "drowprops2" +|| +strResRef == "duergprops" +|| +strResRef == "duergprops1" +|| +strResRef == "duergprops2" +|| +strResRef == "whiteprops" +|| + strResRef == "whiteprops1" +|| + strResRef == "whiteprops2" +|| +strResRef == "woodprops" +|| +strResRef == "woodprops1" +|| + strResRef == "woodprops2" +|| +strResRef == "pixiprops" +|| +strResRef == "pixiprops1" +|| +strResRef == "pixiprops2" +|| +strResRef == "horodprops" +|| +strResRef == "horodprops1" +|| +strResRef == "horodprops2" +|| +strResRef == "succprops" +|| +strResRef == "succprops1" +|| +strResRef == "succprops2" +|| +strResRef == "vampprops" +|| +strResRef == "vampprops1" +|| +strResRef == "vampprops2" +|| +strResRef == "dracprops" +|| +strResRef == "dracprops1" +|| +strResRef == "dracprops2" +|| +strResRef == "shiftprops" +|| +strResRef == "shiftprops1" +|| +strResRef == "shiftprops2" + // Must be resref right above this, not --> || + ) + { + return TRUE; + } + else + { + return FALSE; + } +} + */ + + + + +/* +By: mad_andrew + +Include script for no-drop items. +Also requires OnAcquire script "nodrop_acquire", +and a OnUnAcquire script "nodrop_unacquire", +to work. + +Will not compile, this is normal. +After changing it recompile other 2 required scripts. + +Insert your own resrefs and TAGs for items you want to be no-drop. +*/ +int GetIsNoDrop(object oObject) +{ +string strResRef = GetResRef(oObject); +string strTag = GetTag(oObject); +/* +Use resref normally because tags may change due to other scripts +storing info in the tags. + +Use TAG (or both) if you intent the no-drop item to be for sale in a store, +which is really weird, but hey, its your mod. +Can't use resref for this because items bought in a store have no resref +(if infinite). +*/ +if( +strResRef == "testitem" //resref example + +||//BETWEEN each item, not at beginning or end. + +strResRef == "put_resref_here_normally" //resref example + +||//BETWEEN each item, not at beginning or end. + +strResRef == "put_resref_here_normally" //resref example + +||//BETWEEN each item, not at beginning or end. + +strTag == "PUT_TAG_HERE_-_USE_ONLY_IF_ITS_IN_A_STORE" //TAG example + +||//BETWEEN each item, not at beginning or end. + +strTag == "PUT_TAG_HERE_-_USE_ONLY_IF_ITS_IN_A_STORE" //TAG example + +||//BETWEEN each item, not at beginning or end. + +strTag == "PUT_TAG_HERE_-_USE_ONLY_IF_ITS_IN_A_STORE" //TAG example +) +{ + return TRUE; +} +/* else if(GetIsSubraceItem(oObject) == TRUE) +{ + return TRUE; +} */ +else +{ + return FALSE; +} +} + +//void main(){} + diff --git a/_module/nss/nord_block.nss b/_module/nss/nord_block.nss new file mode 100644 index 0000000..033bf9f --- /dev/null +++ b/_module/nss/nord_block.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_051 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 12/04/2005 11:41:33 AM +//::////////////////////////////////////////////// +#include "nw_i0_tool" + +int StartingConditional() +{ + + // Make sure the PC speaker has these items in their inventory + if(HasItem(GetPCSpeaker(), "nordock_token")) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/nord_block2.nss b/_module/nss/nord_block2.nss new file mode 100644 index 0000000..dcfe563 --- /dev/null +++ b/_module/nss/nord_block2.nss @@ -0,0 +1,70 @@ +//:://///////////////////////////////////////////// +//:: FileName nord_block2 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 15/04/2005 5:11:17 PM +//::////////////////////////////////////////////// +#include "nw_i0_tool" + +int StartingConditional() +{ + + // Make sure the PC speaker has these items in their inventory + if(!HasItem(GetPCSpeaker(), "nordock_token")) + return FALSE; + + // Reject player races + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_ELF) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_GNOME) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HALFELF) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HALFLING) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HALFORC) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HUMAN) + return FALSE; + + // Reject other races + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_ABERRATION) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_ANIMAL) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_BEAST) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_CONSTRUCT) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_DRAGON) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_ELEMENTAL) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_FEY) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_GIANT) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HUMANOID_GOBLINOID) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_MAGICAL_BEAST) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HUMANOID_MONSTROUS) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_OOZE) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HUMANOID_ORC) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_OUTSIDER) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HUMANOID_REPTILIAN) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_SHAPECHANGER) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_UNDEAD) + return FALSE; + if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_VERMIN) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/not_has_20k.nss b/_module/nss/not_has_20k.nss new file mode 100644 index 0000000..6f6b26e --- /dev/null +++ b/_module/nss/not_has_20k.nss @@ -0,0 +1,15 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (!(GetGold(oPC) < 20000)) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/not_has_30k.nss b/_module/nss/not_has_30k.nss new file mode 100644 index 0000000..c986d82 --- /dev/null +++ b/_module/nss/not_has_30k.nss @@ -0,0 +1,15 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (!(GetGold(oPC) < 30000)) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/not_has_40k.nss b/_module/nss/not_has_40k.nss new file mode 100644 index 0000000..c970584 --- /dev/null +++ b/_module/nss/not_has_40k.nss @@ -0,0 +1,15 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (!(GetGold(oPC) < 40000)) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/note_make.nss b/_module/nss/note_make.nss new file mode 100644 index 0000000..7d43897 --- /dev/null +++ b/_module/nss/note_make.nss @@ -0,0 +1,20 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnOpen +void main() +{ + +object oPC = GetLastOpenedBy(); + +if (!GetIsPC(oPC)) return; + +if (GetLocalInt(oPC, "bookshelf_opened")!= 1) + { + CreateItemOnObject("divine_note", OBJECT_SELF); + } +} + diff --git a/_module/nss/npc_conv.nss b/_module/nss/npc_conv.nss new file mode 100644 index 0000000..8dccd94 --- /dev/null +++ b/_module/nss/npc_conv.nss @@ -0,0 +1,239 @@ +#include "onpercept_light" + + +void main() +{ +object oPC = GetLastSpeaker(); +object oMod = GetModule(); +int iDice; +int iRate; +int iStatus; +int iChamp; +string sPossChamp; +float oDelay = 4.0; +float oDelay2 = 4.2; +int iModCount; +int iNPCduel, iNPCduel2; +int iConvSwitch; +int iJoin; + + +iRate = GetLocalInt(oPC, "pc_HWswing"); +iStatus = GetLocalInt(oMod, "war_won"); +iChamp = GetLocalInt(oPC, "champ_won"); +iModCount = GetLocalInt(oMod, "champ_count"); +sPossChamp = GetResRef(OBJECT_SELF)+"_ch"; +iNPCduel = GetLocalInt(oPC, "npc_duel"); +iNPCduel2 = GetLocalInt(oPC, "npc_duel2"); +iConvSwitch = GetLocalInt(oPC, "conv_switch"); +iJoin = GetLocalInt(oPC, "join_switch"); +iConvSwitch = GetLocalInt(oPC, "conv_switch"); + +if ((iNPCduel==1)||(iNPCduel2==1)||(iConvSwitch==1)) + { + SetLocalInt(oPC, "iHappy", 1); + } +//FloatingTextStringOnCreature(GetName(oPC), oPC); +//FloatingTextStringOnCreature(IntToString(iStatus), oPC); +//FloatingTextStringOnCreature(IntToString(iRate), oPC); +//FloatingTextStringOnCreature(IntToString(iChamp), oPC); + +AssignCommand(OBJECT_SELF, SetFacingObject(oPC)); + +if (iStatus==1) + { + if (GetLocalInt(oMod,sPossChamp)==iModCount) + { + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_BOW)); + + if (iNPCduel2==1) + { + iDice = d8(); + switch (iDice) + { + case 1: {AssignCommand(oPC,SpeakString("Congratulations champion. You have served me well!"));}break; + case 2: {AssignCommand(oPC,SpeakString("You fought with great zeal. Congratulations holy champion!"));}break; + case 3: {AssignCommand(oPC,SpeakString("You honour me (and my wallet) with your might, great champion!"));}break; + case 4: {AssignCommand(oPC,SpeakString("You have made me a tidy coin, my friend!"));}break; + case 5: {AssignCommand(oPC,SpeakString("You were great. Now my gold bags are much heavier!"));}break; + case 6: {AssignCommand(oPC,SpeakString("Whew, I was worried that I'd lose my gold on you at first! Well done!"));}break; + case 7: {AssignCommand(oPC,SpeakString("Way to go, champ! Time to go collect. Hee hee!"));}break; + case 8: {AssignCommand(oPC,SpeakString("I bow to thee great champion!"));}break; + } + switch (iDice) + { + case 1: {DelayCommand(oDelay, SpeakString("I serve no-one, fool! I simply live to eradicate evil!"));}break; + case 2: {DelayCommand(oDelay, SpeakString("My zeal is merely testament to my hatred of evil!"));}break; + case 3: {DelayCommand(oDelay, SpeakString("Might is useless without strategy. And your wallet is useless without honour. Remember that!"));}break; + case 4: {DelayCommand(oDelay, SpeakString("Your reward is your life. Remember that before you impoverish your family with your senseless gamblng!"));}break; + case 5: {DelayCommand(oDelay, SpeakString("If the truth be known, I have a penchant for bloodshed!"));}break; + case 6: {DelayCommand(oDelay, SpeakString("That is the chance you take when you rest the task of creating personal wealth on another's shoulders!"));}break; + case 7: {DelayCommand(oDelay, SpeakString("Don't champ me, whelp! While I do not advocate gambling, I embrace combat!"));}break; + case 8: {DelayCommand(oDelay, SpeakString("Arise my bretheren. The Glory is yours on this victorious day! Now go collect your winnings!"));}break; + } + + DelayCommand(oDelay2, AssignCommand(OBJECT_SELF, ClearAllActions())); + DelayCommand(oDelay2, AssignCommand(OBJECT_SELF, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + } + else + { + iDice = d8(); + switch (iDice) + { + case 1: {AssignCommand(oPC,SpeakString("Congratulations champion. It was an honour to ally with you!"));}break; + case 2: {AssignCommand(oPC,SpeakString("You fought with great zeal. Congratulations holy champion!"));}break; + case 3: {AssignCommand(oPC,SpeakString("You honour us with your might, great champion!"));}break; + case 4: {AssignCommand(oPC,SpeakString("You fought deservingly of your championship!"));}break; + case 5: {AssignCommand(oPC,SpeakString("Your vigour on the battlefield is exceptional. Congratulations champion!"));}break; + case 6: {AssignCommand(oPC,SpeakString("Nice slicing and dicing! Congrats on the championship!"));}break; + case 7: {AssignCommand(oPC,SpeakString("Awesome work duudue! Like wo, you really rocked out there!"));}break; + case 8: {AssignCommand(oPC,SpeakString("I bow to thee great champion!"));}break; + } + switch (iDice) + { + case 1: {DelayCommand(oDelay, SpeakString("The honour was all mine, modest warrior!"));}break; + case 2: {DelayCommand(oDelay, SpeakString("My zeal was shared by all of us out there, but thanks anyway!"));}break; + case 3: {DelayCommand(oDelay, SpeakString("Might is useless without strategy. We are all champions today!"));}break; + case 4: {DelayCommand(oDelay, SpeakString("My true reward is my life. The championship prize is a mere trinket for collecting dust!"));}break; + case 5: {DelayCommand(oDelay, SpeakString("If the truth be known, I have a penchant for bloodshed!"));}break; + case 6: {DelayCommand(oDelay, SpeakString("What is this a cooking class? Get some honour, cowboy!"));}break; + case 7: {DelayCommand(oDelay, SpeakString("Please don't call me dude! You wouldn't like me when I'm angry!"));}break; + case 8: {DelayCommand(oDelay, SpeakString("Arise my bretheren. The Glory is ours on this victorious day!"));}break; + } + + DelayCommand(oDelay2, AssignCommand(OBJECT_SELF, ClearAllActions())); + DelayCommand(oDelay2, AssignCommand(OBJECT_SELF, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + } + } + else if (iChamp==1) + { + SetLocalInt(oPC, "iHappy", 1); + AssignCommand(OBJECT_SELF, ClearAllActions()); + AssignCommand(OBJECT_SELF, ActionPlayAnimation + (ANIMATION_FIREFORGET_BOW)); + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("Congratulations champion. It was an honour to fight with you!");}break; + case 2: {SpeakString("I've never seen such prowess!!!");}break; + case 3: {SpeakString("You do us a great honour by fighting with us, mighty champion!");}break; + case 4: {SpeakString("That was incredible!!! You cut through them like a warrior posessed!");}break; + case 5: {SpeakString("I am glad you were on our team!");}break; + case 6: {SpeakString("Well fought, champion! You can fight for us anytime!");}break; + case 7: {SpeakString("Have you ever thought of becomming a gladiator? You could make alot of gold with your skills!");}break; + case 8: {SpeakString("You wield your weapon like a god! Congratulations champion!");}break; + } + } +else if (iConvSwitch==1) + { + if (iJoin==1) + { + iDice = d4(); + switch (iDice) + { + case 1: {SpeakString("We really didn't need your help, you know! You've gone and done your dough now!");}break; + case 2: {SpeakString("Now that was silly wasn't it? Do you have gold to burn?");}break; + case 3: {SpeakString("Was that really necessary! Now that Death character is even richer!");}break; + case 4: {SpeakString("Next time you might want to consider the fact that you forfeit your gold if you join the fight!");}break; + } + } + else + { + iDice = d4(); + switch (iDice) + { + case 1: {SpeakString("Thankyou for your faith!");}break; + case 2: {SpeakString("Always bet on Light!");}break; + case 3: {SpeakString("Your bet was safe with us, friend!");}break; + case 4: {SpeakString("You weren't dissapointed were you, oh proponent of the light army!");}break; + } + } + } + else if (iRate<=9) + { + PercieveLight(oPC); + return; + } + + else if ((iRate>9)&&(iRate<20)) + { + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("What? Did you fall asleep?");}break; + case 2: {SpeakString("Were you afraid or do you just prefer to watch?");}break; + case 3: {SpeakString("Pfft! Call yourself a warrior!!!");}break; + case 4: {SpeakString("Maybe next time you could get off your ass and help eh!!!");}break; + case 5: {SpeakString("Where were you?");}break; + case 6: {SpeakString("I've never seen such a weak effort!!");}break; + case 7: {SpeakString("How many of us have to die before you decide to help out?");}break; + case 8: {SpeakString("Bah!I've seen more effort from a dead sloth!!! ");}break; + } + } + else if ((iRate>20)&&(iRate<51)) + { + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("What happened? You were great until you abandoned us!");}break; + case 2: {SpeakString("Oh I see! You prefer to fight HALF battles!!!");}break; + case 3: {SpeakString("Did your weapon break half way through?");}break; + case 4: {SpeakString("Awwww! Were da bad monsters too skairwy for da widdle man?");}break; + case 5: {SpeakString("Nice start...Pathetic finish!!!");}break; + case 6: {SpeakString("Its highly dishonourable to join a team and then abandon it half way through a battle!!!");}break; + case 7: {SpeakString("What happened to you? One minute you were there, the next...gone!");}break; + case 8: {SpeakString("Pfft! We could have done without your 'help'");}break; + } + } + else if ((iRate>50)&&(iRate<81)) + { + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("Nice work there! Pity you peppered out against the big guy!");}break; + case 2: {SpeakString("Oh I see, kill all the easy ones then slack off when the real work comes!");}break; + case 3: {SpeakString("Where were you when Lucifer was level draining me?");}break; + case 4: {SpeakString("Thanks friend, but we could have used your help with those last few!");}break; + case 5: {SpeakString("Even if you can't hit them, it still helps those of us who can if you join in!!!");}break; + case 6: {SpeakString("You fought bravely, but alas, your spirit wained when we needed you at the end!!!");}break; + case 7: {SpeakString("Those last few suckers were tough...Say!!! Where were you anyway!!!");}break; + case 8: {SpeakString("The battle is often decided by the last ones standing....please stand with us next time!");}break; + } + } + else if (iRate>80) + { + SetLocalInt(oPC, "iHappy", 1); + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("You never left our side!! Thankyou mysterious warrior!");}break; + case 2: {SpeakString("I thought that last guy would never die!!! Victory is ours brother!!!");}break; + case 3: {SpeakString("You fought long and hard. Thank you for your allegiance, brave warrior!");}break; + case 4: {SpeakString("The battle was arduous, but thanks to brave warriors like yourself, we prevailed!");}break; + case 5: {SpeakString("Your bravery will not be forgotten!");}break; + case 6: {SpeakString("Thanks to your bravery, we won a savage battle against all odds!");}break; + case 7: {SpeakString("Thankyou for seeing the whole battle through! I hate deserters!!!");}break; + case 8: {SpeakString("I enjoyed fighting along side a worthy warrior like yourself!");}break; + } + } + } +else + { + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("We'd best save the chatter for after the battle!");}break; + case 2: {SpeakString("I'd love to chat, but I have some skulls to cleave!");}break; + case 3: {SpeakString("You'd best get back to the fight. We can chat later!");}break; + case 4: {SpeakString("Conversation is so much more interesting than carnage!");}break; + case 5: {SpeakString("Shall we go and cut us some enemies?");}break; + case 6: {SpeakString("I'm gonna have me some enemy pie!!!");}break; + case 7: {SpeakString("Are you all talk and no action? There is a battle on here!!!");}break; + case 8: {SpeakString("Watch out!!! here comes one now!");}break; + } + } +} diff --git a/_module/nss/npc_conv_dark.nss b/_module/nss/npc_conv_dark.nss new file mode 100644 index 0000000..3d6e351 --- /dev/null +++ b/_module/nss/npc_conv_dark.nss @@ -0,0 +1,238 @@ + #include "onpercept_dark" + + +void main() +{ +object oPC = GetLastSpeaker(); +object oMod = GetModule(); +int iDice; +int iRate; +int iStatus; +int iChamp; +string sPossChamp; +float oDelay = 4.0; +float oDelay2 = 4.2; +int iModCount; +int iNPCduel, iNPCduel2; +int iWinnings = GetLocalInt(oPC, "winnings"); +int iConvSwitch; +int iJoin; + + +iRate = GetLocalInt(oPC, "pc_HWswing"); +iStatus = GetLocalInt(oMod, "war_won"); +iChamp = GetLocalInt(oPC, "champ_won"); +iModCount = GetLocalInt(oMod, "champ_count"); +sPossChamp = GetResRef(OBJECT_SELF)+"_ch"; +iNPCduel = GetLocalInt(oPC, "npc_duel"); +iNPCduel2 = GetLocalInt(oPC, "npc_duel2"); +iConvSwitch = GetLocalInt(oPC, "conv_switch"); +iJoin = GetLocalInt(oPC, "join_switch"); + +if ((iNPCduel==1)||(iNPCduel2==1)||(iConvSwitch==1)) + { + SetLocalInt(oPC, "iHappy", 1); + + } + + +//FloatingTextStringOnCreature(GetName(oPC), oPC); +//FloatingTextStringOnCreature(IntToString(iStatus), oPC); +//FloatingTextStringOnCreature(IntToString(iRate), oPC); +//FloatingTextStringOnCreature(IntToString(iChamp), oPC); + +AssignCommand(OBJECT_SELF, SetFacingObject(oPC)); + +if (iStatus==1) + { + if (GetLocalInt(oMod,sPossChamp)==iModCount) + { + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_BOW)); + if (iNPCduel2==1) + { + iDice = d8(); + switch (iDice) + { + case 1: {AssignCommand(oPC,SpeakString("Congratulations champion. You really showed em!"));}break; + case 2: {AssignCommand(oPC,SpeakString("You fought very well indeed. Congratulations champion!"));}break; + case 3: {AssignCommand(oPC,SpeakString("Well done! You've won me a nice pile of gold!"));}break; + case 4: {AssignCommand(oPC,SpeakString("Great work! I knew I could count on you!"));}break; + case 5: {AssignCommand(oPC,SpeakString("Your prowess is truly formidible! Well done, champion"));}break; + case 6: {AssignCommand(oPC,SpeakString("You cut your opponent up like a piece of rotten fruit!"));}break; + case 7: {AssignCommand(oPC,SpeakString("Great work! Tonight I eat like a King because of you!"));}break; + case 8: {AssignCommand(oPC,SpeakString("I hope to someday fight like you, champion!"));}break; + } + switch (iDice) + { + case 1: {DelayCommand(oDelay, SpeakString("Yeah!!! Bring it on!!!"));}break; + case 2: {DelayCommand(oDelay, SpeakString("Thankyou! I must say, It's always good to see my opponents hit the canvas!"));}break; + case 3: {DelayCommand(oDelay, SpeakString("Such is a gladiator's life! Can't say I mind though!"));}break; + case 4: {DelayCommand(oDelay, SpeakString("Well don't go counting on me too much! You never know when I'll have to go up against a real badass!"));}break; + case 5: {DelayCommand(oDelay, SpeakString("I was merely sharpening my teeth on them! You haven't seen nothing yet!"));}break; + case 6: {DelayCommand(oDelay, SpeakString("Yes I did! And I can still smell the reeking stench!"));}break; + case 7: {DelayCommand(oDelay, SpeakString("If it had gone bad, I might've been eating like a cripple tonight! How do you feel about that?"));}break; + case 8: {DelayCommand(oDelay, SpeakString("Fight? I prefer to call it dismemberment...destruction...devastation...RaaAAAGGHHHHH!!!"));}break; + } + DelayCommand(oDelay2, AssignCommand(OBJECT_SELF, ClearAllActions())); + DelayCommand(oDelay2, AssignCommand(OBJECT_SELF, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + } + else + { + iDice = d8(); + switch (iDice) + { + case 1: {AssignCommand(oPC,SpeakString("Congratulations champion. You truly are a dark master!"));}break; + case 2: {AssignCommand(oPC,SpeakString("You fought like a demon. Congratulations champion!"));}break; + case 3: {AssignCommand(oPC,SpeakString("You struck fear into those fools with your demonic rage!"));}break; + case 4: {AssignCommand(oPC,SpeakString("I bow to you oh lord of destruction!"));}break; + case 5: {AssignCommand(oPC,SpeakString("Your prowess is truly formidible! Well done, dark champion"));}break; + case 6: {AssignCommand(oPC,SpeakString("You cut them up like pieces of rotten fruit!"));}break; + case 7: {AssignCommand(oPC,SpeakString("Wo....You were like...Awesome duuude!"));}break; + case 8: {AssignCommand(oPC,SpeakString("I hope to someday fight like you, champion!"));}break; + } + switch (iDice) + { + case 1: {DelayCommand(oDelay, SpeakString("Yes I am aren't I! ALL BOW TO ME!"));}break; + case 2: {DelayCommand(oDelay, SpeakString("Yes, well my mother is a demon! So that may explain it!"));}break; + case 3: {DelayCommand(oDelay, SpeakString("I wish I could tear their goody goody hearts out all over again!"));}break; + case 4: {DelayCommand(oDelay, SpeakString("Bow and don't come up for air, transmigrant! You have much to prove before you become a true dark warrior!"));}break; + case 5: {DelayCommand(oDelay, SpeakString("I was merely sharpening my teeth on them! You haven't seen nothing yet!"));}break; + case 6: {DelayCommand(oDelay, SpeakString("Yes I did! And I can still smell their reeking holy stench!"));}break; + case 7: {DelayCommand(oDelay, SpeakString("A dude is a camel's cod-piece! You callin me a cod-piece?...Why I aughta...!!!"));}break; + case 8: {DelayCommand(oDelay, SpeakString("Fight? I prefer to call it dismemberment...destruction...devastation...RaaAAAGGHHHHH!!!"));}break; + } + + DelayCommand(oDelay2, AssignCommand(OBJECT_SELF, ClearAllActions())); + DelayCommand(oDelay2, AssignCommand(OBJECT_SELF, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + } + } + else if (iChamp==1) + { + AssignCommand(OBJECT_SELF, ClearAllActions()); + AssignCommand(OBJECT_SELF, ActionPlayAnimation + (ANIMATION_FIREFORGET_BOW)); + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("Congratulations champion. It was a pleasure to watch you dismember those holy fools!");}break; + case 2: {SpeakString("You fight like a demon prince!!!");}break; + case 3: {SpeakString("Your allegeance was a dark blessing indeed! Congratulations heretic champion");}break; + case 4: {SpeakString("The dark gods were with you today, warrior. Your fought with might untold of for mortals!");}break; + case 5: {SpeakString("You have proven yourself worthy, mortal!");}break; + case 6: {SpeakString("A mortal, champion? I would have had to see it to believe it. Well done, dark stranger!");}break; + case 7: {SpeakString("Those holy do-gooders never saw you comming! Ha haaa! Hail to you, dark champion!");}break; + case 8: {SpeakString("You wield your weapon like a demon god! Congratulations champion of darkness!");}break; + } + } + else if (iConvSwitch==1) + { + if (iJoin==1) + { + iDice = d4(); + switch (iDice) + { + case 1: {SpeakString("We really didn't need your help, fool! You've done your dough now, haven't you!");}break; + case 2: {SpeakString("Now that was daft wasn't it? Do you have cash to burn?");}break; + case 3: {SpeakString("Why don't you just donate to Death! It'll save us having to waste our time on bet breachers!");}break; + case 4: {SpeakString("Next time you might want to consider the fact that you forfeit your gold if you join the fight!");}break; + } + } + else + { + iDice = d4(); + switch (iDice) + { + case 1: {SpeakString("You'd be silly to bet on those other fools!");}break; + case 2: {SpeakString("Always bet on Dark!");}break; + case 3: {SpeakString("Where's my cut eh?!");}break; + case 4: {SpeakString("We really should get paid for this gladiator business!");}break; + } + } + } + else if (iRate<=9) + { + PercieveDark(oPC); + return; + } + + else if ((iRate>9)&&(iRate<20)) + { + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("What a weak effort!");}break; + case 2: {SpeakString("Didn't want to get your hands dirty eh?");}break; + case 3: {SpeakString("Pfft! Call yourself a warrior!!!");}break; + case 4: {SpeakString("Join those holy fools next time! Don't waste our time!!");}break; + case 5: {SpeakString("Spectators have no place in a war!");}break; + case 6: {SpeakString("Don't even talk to me, you bludger!!");}break; + case 7: {SpeakString("Which team were you on anyway? Hard to tell with that paltry effort!");}break; + case 8: {SpeakString("I aughta cut you down where you stand!!! You're lucky I am tired!");}break; + } + } + else if ((iRate>20)&&(iRate<51)) + { + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("You can't just come and go as you please! Once you start a battle, you must commit!");}break; + case 2: {SpeakString("Oh I see! You prefer to fight HALF battles!!!");}break; + case 3: {SpeakString("Did you decide to take a break and catch up on your reading?");}break; + case 4: {SpeakString("Didn't you eat your wheaties today?");}break; + case 5: {SpeakString("Nice start...useless finish!!!");}break; + case 6: {SpeakString("Don't bother to join us unless you are prepared to swing your weapon!");}break; + case 7: {SpeakString("You could have at least video taped the end...after you decided to stop fighting! I would have like to have seen myself decimating those holy fools!");}break; + case 8: {SpeakString("Pfft! You give your allegeance in only HALF-measures do you?");}break; + } + } + else if ((iRate>50)&&(iRate<81)) + { + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("You were great at the beginning! What happened");}break; + case 2: {SpeakString("Oh I see, kill all the easy ones then let us finish the job!");}break; + case 3: {SpeakString("Tyriel scare you did he?");}break; + case 4: {SpeakString("Next time try finishing the job! I almost lost an arm to that Thor character because of your complacency!");}break; + case 5: {SpeakString("Even if you can't hit them, you can divert their attention from those of us who can!!!");}break; + case 6: {SpeakString("It's all well and good to heal those in need, but it might help to remove the cause rather than treating the effect!");}break; + case 7: {SpeakString("Those last few angels were tough...Say!!! Where did you get to?");}break; + case 8: {SpeakString("Complacency is for the weak. Next time use your hatred to finish the battle!");}break; + } + } + else if (iRate>80) + { + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("Your prowess helped us triumph over good! Thankyou dark stranger!");}break; + case 2: {SpeakString("After that Thor fool died, it was all downhill!");}break; + case 3: {SpeakString("You fought with a madman's ferver. Thank you for your allegiance, black warrior!");}break; + case 4: {SpeakString("Your allegeance didn't waver throughout the whole battle! Thankyou dark warrior!");}break; + case 5: {SpeakString("Your depravity and brutality will not be forgotten! Well done friend of evil!");}break; + case 6: {SpeakString("I think you saved me from that holy archer! My thanks to you, dark brother!");}break; + case 7: {SpeakString("Tyriel almost had me! Thanks to you I lived to see his face when he died! It was....beautiful...*sob*");}break; + case 8: {SpeakString("You may join us anyday, mysterious and powerful ally!");}break; + } + } + } +else + { + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("Save your words for after the battle!");}break; + case 2: {SpeakString("Less talking and more action! There is a battle going on here, you know!");}break; + case 3: {SpeakString("This isn't a social club! Back to the fight!!!");}break; + case 4: {SpeakString("Can't chat now,I got angels to torture!");}break; + case 5: {SpeakString("Shall we? But save me the pretty one. I'm gonna kill her slowly!");}break; + case 6: {SpeakString("Have you seen my arm? I'm sure it flew this way...that blasted Shogun!!!!");}break; + case 7: {SpeakString("To the fight, ally! What are you waiting for?");}break; + case 8: {SpeakString("Quick duck.....whew that was close! You take that archer, I'll go for that hammer wielding fool, Thor!");}break; + } + } +} diff --git a/_module/nss/nt_remove.nss b/_module/nss/nt_remove.nss new file mode 100644 index 0000000..78dcb4e --- /dev/null +++ b/_module/nss/nt_remove.nss @@ -0,0 +1,35 @@ +#include "strip" + + + + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(GetModule(), "nord_mode", 0); +location lLocation = GetLocation(oPC); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(VFX_IMP_DEATH), oPC); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(VFX_FNF_SUMMON_EPIC_UNDEAD), oPC); +DestroyObject(GetItemPossessedBy(oPC, "nordock_token"), 0.0); +//FloatingTextStringOnCreature("Australis Token Removed", oPC); +SetLocalInt(GetModule(), "nordock", 0); +SetLocalInt(oPC, "wurmdead",0); + SetLocalInt(oPC, "balrogdead",0); + SetLocalInt(oPC, "doppledead",0); + SetLocalInt(oPC, "pitfienddead",0); + SetLocalInt(oPC, "hdfienddead",0); + SetLocalInt(oPC, "paledead",0); + SetLocalInt(oPC, "marilithdead",0); + SetLocalInt(oPC, "bossdead",0); + SetLocalInt(oPC, "lorddead",0); + SetLocalInt(oPC, "luciferdead",0); +InvStrip(oPC); +GearStrip(oPC); +DelayCommand(3.0, FloatingTextStringOnCreature("** AOC Mode Initiated **", oPC)); +DelayCommand(3.0, PlaySound("sce_neutral")); +} + + + diff --git a/_module/nss/nue_neu_align.nss b/_module/nss/nue_neu_align.nss new file mode 100644 index 0000000..fddf921 --- /dev/null +++ b/_module/nss/nue_neu_align.nss @@ -0,0 +1,9 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + if (!(GetAlignmentGoodEvil(oPC) == ALIGNMENT_NEUTRAL && + GetAlignmentLawChaos(oPC) == ALIGNMENT_NEUTRAL)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/nw_c2_default1.nss b/_module/nss/nw_c2_default1.nss new file mode 100644 index 0000000..62ac86b --- /dev/null +++ b/_module/nss/nw_c2_default1.nss @@ -0,0 +1,108 @@ +//::////////////////////////////////////////////////// +//:: NW_C2_DEFAULT1 +/* + Default OnHeartbeat script for NPCs. + + This script causes NPCs to perform default animations + while not otherwise engaged. + + This script duplicates the behavior of the default + script and just cleans up the code and removes + redundant conditional checks. + + */ +//::////////////////////////////////////////////////// +//:: Copyright (c) 2002 Floodgate Entertainment +//:: Created By: Naomi Novik +//:: Created On: 12/22/2002 +//::////////////////////////////////////////////////// + +#include "nw_i0_generic" +#include "prc_inc_spells" + +void main() +{ + + // * if not runnning normal or better Ai then exit for performance reasons + if (GetAILevel() == AI_LEVEL_VERY_LOW) return; + + ExecuteScript("prc_npc_hb", OBJECT_SELF); + + // Buff ourselves up right away if we should + if(GetSpawnInCondition(NW_FLAG_FAST_BUFF_ENEMY)) + { + // This will return TRUE if an enemy was within 40.0 m + // and we buffed ourselves up instantly to respond -- + // simulates a spellcaster with protections enabled + // already. + if(TalentAdvancedBuff(40.0)) + { + // This is a one-shot deal + SetSpawnInCondition(NW_FLAG_FAST_BUFF_ENEMY, FALSE); + + // This return means we skip sending the user-defined + // heartbeat signal in this one case. + return; + } + } + + + if(PRCGetHasEffect(EFFECT_TYPE_SLEEP)) + { + // If we're asleep and this is the result of sleeping + // at night, apply the floating 'z's visual effect + // every so often + + if(GetSpawnInCondition(NW_FLAG_SLEEPING_AT_NIGHT)) + { + effect eVis = EffectVisualEffect(VFX_IMP_SLEEP); + if(d10() > 6) + { + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, OBJECT_SELF); + } + } + } + + // If we have the 'constant' waypoints flag set, walk to the next + // waypoint. + else if ( GetWalkCondition(NW_WALK_FLAG_CONSTANT) ) + { + WalkWayPoints(); + } + + // Check to see if we should be playing default animations + // - make sure we don't have any current targets + else if ( !GetIsObjectValid(GetAttemptedAttackTarget()) + && !GetIsObjectValid(GetAttemptedSpellTarget()) + // && !GetIsPostOrWalking()) + && !GetIsObjectValid(GetNearestSeenEnemy())) + { + if (GetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL) || GetBehaviorState(NW_FLAG_BEHAVIOR_OMNIVORE) || + GetBehaviorState(NW_FLAG_BEHAVIOR_HERBIVORE)) + { + // This handles special attacking/fleeing behavior + // for omnivores & herbivores. + DetermineSpecialBehavior(); + } + else if (!IsInConversation(OBJECT_SELF)) + { + if (GetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS) + || GetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS_AVIAN) + || GetIsEncounterCreature()) + { + PlayMobileAmbientAnimations(); + } + else if (GetSpawnInCondition(NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS)) + { + PlayImmobileAmbientAnimations(); + } + } + } + + // Send the user-defined event signal if specified + if(GetSpawnInCondition(NW_FLAG_HEARTBEAT_EVENT)) + { + SignalEvent(OBJECT_SELF, EventUserDefined(EVENT_HEARTBEAT)); + } +} + diff --git a/_module/nss/nw_c2_default2.nss b/_module/nss/nw_c2_default2.nss new file mode 100644 index 0000000..34499fd --- /dev/null +++ b/_module/nss/nw_c2_default2.nss @@ -0,0 +1,166 @@ +//::////////////////////////////////////////////////// +//:: NW_C2_DEFAULT2 +/* + Default OnPerception event handler for NPCs. + + Handles behavior when perceiving a creature for the + first time. + */ +//::////////////////////////////////////////////////// + +#include "nw_i0_generic" +#include "prc_inc_spells" + +void main() +{ + // * if not runnning normal or better Ai then exit for performance reasons + if (GetAILevel() == AI_LEVEL_VERY_LOW) return; + + ExecuteScript("prc_npc_percep", OBJECT_SELF); + + object oPercep = GetLastPerceived(); + int bSeen = GetLastPerceptionSeen(); + int bHeard = GetLastPerceptionHeard(); + if (bHeard == FALSE) + { + // Has someone vanished in front of me? + bHeard = GetLastPerceptionVanished(); + } + + // This will cause the NPC to speak their one-liner + // conversation on perception even if they are already + // in combat. + if(GetSpawnInCondition(NW_FLAG_SPECIAL_COMBAT_CONVERSATION) + && GetIsPC(oPercep) + && bSeen) + { + SpeakOneLinerConversation(); + } + + // March 5 2003 Brent + // Had to add this section back in, since modifications were not taking this specific + // example into account -- it made invisibility basically useless. + //If the last perception event was hearing based or if someone vanished then go to search mode + if ((GetLastPerceptionVanished()) && GetIsEnemy(GetLastPerceived())) + { + object oGone = GetLastPerceived(); + if((GetAttemptedAttackTarget() == GetLastPerceived() || + GetAttemptedSpellTarget() == GetLastPerceived() || + GetAttackTarget() == GetLastPerceived()) && GetArea(GetLastPerceived()) != GetArea(OBJECT_SELF)) + { + ClearAllActions(); + DetermineCombatRound(); + } + } + + // This section has been heavily revised while keeping the + // pre-existing behavior: + // - If we're in combat, keep fighting. + // - If not and we've perceived an enemy, start to fight. + // Even if the perception event was a 'vanish', that's + // still what we do anyway, since that will keep us + // fighting any visible targets. + // - If we're not in combat and haven't perceived an enemy, + // see if the perception target is a PC and if we should + // speak our attention-getting one-liner. + if (GetIsInCombat(OBJECT_SELF)) + { + // don't do anything else, we're busy + //MyPrintString("GetIsFighting: TRUE"); + + } + // * BK FEB 2003 Only fight if you can see them. DO NOT RELY ON HEARING FOR ENEMY DETECTION + else if (GetIsEnemy(oPercep) && bSeen) + { // SpawnScriptDebugger(); + //MyPrintString("GetIsEnemy: TRUE"); + // We spotted an enemy and we're not already fighting + if(!PRCGetHasEffect(EFFECT_TYPE_SLEEP)) { + if(GetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL)) + { + //MyPrintString("DetermineSpecialBehavior"); + DetermineSpecialBehavior(); + } else + { + //MyPrintString("DetermineCombatRound"); + SetFacingPoint(GetPosition(oPercep)); + SpeakString("NW_I_WAS_ATTACKED", TALKVOLUME_SILENT_TALK); + DetermineCombatRound(); + } + } + } + else + { + if (bSeen) + { + //MyPrintString("GetLastPerceptionSeen: TRUE"); + if(GetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL)) { + DetermineSpecialBehavior(); + } else if (GetSpawnInCondition(NW_FLAG_SPECIAL_CONVERSATION) + && GetIsPC(oPercep)) + { + // The NPC will speak their one-liner conversation + // This should probably be: + // SpeakOneLinerConversation(oPercep); + // instead, but leaving it as is for now. + ActionStartConversation(OBJECT_SELF); + } + } + else + // * July 14 2003: Some minor reactions based on invisible creatures being nearby + if (bHeard && GetIsEnemy(oPercep)) + { + // SpeakString("vanished"); + // * don't want creatures wandering too far after noises + if (GetDistanceToObject(oPercep) <= 7.0) + { +// if (GetHasSpell(SPELL_TRUE_SEEING) == TRUE) + if (GetHasSpell(SPELL_TRUE_SEEING)) + { + ActionCastSpellAtObject(SPELL_TRUE_SEEING, OBJECT_SELF); + } + else +// if (GetHasSpell(SPELL_SEE_INVISIBILITY) == TRUE) + if (GetHasSpell(SPELL_SEE_INVISIBILITY)) + { + ActionCastSpellAtObject(SPELL_SEE_INVISIBILITY, OBJECT_SELF); + } + else +// if (GetHasSpell(SPELL_INVISIBILITY_PURGE) == TRUE) + if (GetHasSpell(SPELL_INVISIBILITY_PURGE)) + { + ActionCastSpellAtObject(SPELL_INVISIBILITY_PURGE, OBJECT_SELF); + } + else + { + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 0.5); + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 0.5); + ActionPlayAnimation(ANIMATION_FIREFORGET_PAUSE_SCRATCH_HEAD, 0.5); + } + } + } + + // activate ambient animations or walk waypoints if appropriate + if (!IsInConversation(OBJECT_SELF)) { + if (GetIsPostOrWalking()) { + WalkWayPoints(); + } else if (GetIsPC(oPercep) && + (GetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS) + || GetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS_AVIAN) + || GetSpawnInCondition(NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS) + || GetIsEncounterCreature())) + { + SetAnimationCondition(NW_ANIM_FLAG_IS_ACTIVE); + } + } + } + + // Send the user-defined event if appropriate + if(GetSpawnInCondition(NW_FLAG_PERCIEVE_EVENT) && GetLastPerceptionSeen()) + { + SignalEvent(OBJECT_SELF, EventUserDefined(EVENT_PERCEIVE)); + } +} + + + + diff --git a/_module/nss/nw_c2_default3.nss b/_module/nss/nw_c2_default3.nss new file mode 100644 index 0000000..572e123 --- /dev/null +++ b/_module/nss/nw_c2_default3.nss @@ -0,0 +1,58 @@ +//:://///////////////////////////////////////////// +//:: Default: End of Combat Round +//:: NW_C2_DEFAULT3 +//:: Copyright (c) 2008 Bioware Corp. +//::////////////////////////////////////////////// +/* + Calls the end of combat script every round +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 16, 2001 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Modified By: Deva Winblood +//:: Modified On: Feb 16th, 2008 +//:: Added Support for Mounted Combat Feat Support +//::////////////////////////////////////////////// + +#include "NW_I0_GENERIC" + +void main() +{ + ExecuteScript("prc_npc_combat", OBJECT_SELF); + + if (!GetLocalInt(GetModule(),"X3_NO_MOUNTED_COMBAT_FEAT")) + { // set variables on target for mounted combat + DeleteLocalInt(OBJECT_SELF,"bX3_LAST_ATTACK_PHYSICAL"); + DeleteLocalInt(OBJECT_SELF,"nX3_HP_BEFORE"); + DeleteLocalInt(OBJECT_SELF,"bX3_ALREADY_MOUNTED_COMBAT"); + if (GetHasFeat(FEAT_MOUNTED_COMBAT,OBJECT_SELF)) + { // check for AC increase + int nRoll=d20()+GetSkillRank(SKILL_RIDE); + nRoll=nRoll-10; + if (nRoll>4) + { // ac increase + nRoll=nRoll/5; + ApplyEffectToObject(DURATION_TYPE_TEMPORARY,EffectACIncrease(nRoll),OBJECT_SELF,8.5); + } // ac increase + } // check for AC increase + } // set variables on target for mounted combat + + if(GetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL)) + { + DetermineSpecialBehavior(); + } + else if(!GetSpawnInCondition(NW_FLAG_SET_WARNINGS)) + { + DetermineCombatRound(); + } + if(GetSpawnInCondition(NW_FLAG_END_COMBAT_ROUND_EVENT)) + { + SignalEvent(OBJECT_SELF, EventUserDefined(1003)); + } +} + + + + diff --git a/_module/nss/nw_c2_default4.nss b/_module/nss/nw_c2_default4.nss new file mode 100644 index 0000000..de90459 --- /dev/null +++ b/_module/nss/nw_c2_default4.nss @@ -0,0 +1,93 @@ +//::////////////////////////////////////////////////// +//:: NW_C2_DEFAULT4 +/* + Default OnConversation event handler for NPCs. + + */ +//::////////////////////////////////////////////////// +//:: Copyright (c) 2002 Floodgate Entertainment +//:: Created By: Naomi Novik +//:: Created On: 12/22/2002 +//::////////////////////////////////////////////////// + +#include "nw_i0_generic" +#include "prc_inc_spells" + +void main() +{ + // * if petrified, jump out + if (PRCGetHasEffect(EFFECT_TYPE_PETRIFY, OBJECT_SELF) == TRUE) + { + return; + } + + // * If dead, exit directly. + if (GetIsDead(OBJECT_SELF) == TRUE) + { + return; + } + + ExecuteScript("prc_npc_conv", OBJECT_SELF); + + // See if what we just 'heard' matches any of our + // predefined patterns + int nMatch = GetListenPatternNumber(); + object oShouter = GetLastSpeaker(); + + if (nMatch == -1) + { + // Not a match -- start an ordinary conversation + if (GetCommandable(OBJECT_SELF)) + { + ClearActions(CLEAR_NW_C2_DEFAULT4_29); + BeginConversation(); + } + else + // * July 31 2004 + // * If only charmed then allow conversation + // * so you can have a better chance of convincing + // * people of lowering prices + if (PRCGetHasEffect(EFFECT_TYPE_CHARMED) == TRUE) + { + ClearActions(CLEAR_NW_C2_DEFAULT4_29); + BeginConversation(); + } + } + // Respond to shouts from friendly non-PCs only + else if (GetIsObjectValid(oShouter) + && !GetIsPC(oShouter) + && GetIsFriend(oShouter)) + { + object oIntruder = OBJECT_INVALID; + // Determine the intruder if any + if(nMatch == 4) + { + oIntruder = GetLocalObject(oShouter, "NW_BLOCKER_INTRUDER"); + } + else if (nMatch == 5) + { + oIntruder = GetLastHostileActor(oShouter); + if(!GetIsObjectValid(oIntruder)) + { + oIntruder = GetAttemptedAttackTarget(); + if(!GetIsObjectValid(oIntruder)) + { + oIntruder = GetAttemptedSpellTarget(); + if(!GetIsObjectValid(oIntruder)) + { + oIntruder = OBJECT_INVALID; + } + } + } + } + + // Actually respond to the shout + RespondToShout(oShouter, nMatch, oIntruder); + } + + // Send the user-defined event if appropriate + if(GetSpawnInCondition(NW_FLAG_ON_DIALOGUE_EVENT)) + { + SignalEvent(OBJECT_SELF, EventUserDefined(EVENT_DIALOGUE)); + } +} diff --git a/_module/nss/nw_c2_default5.nss b/_module/nss/nw_c2_default5.nss new file mode 100644 index 0000000..d6e2e63 --- /dev/null +++ b/_module/nss/nw_c2_default5.nss @@ -0,0 +1,71 @@ +//:://///////////////////////////////////////////// +//:: Default On Attacked +//:: NW_C2_DEFAULT5 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + If already fighting then ignore, else determine + combat round +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 16, 2001 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Modified By: Deva Winblood +//:: Modified On: Jan 4th, 2008 +//:: Added Support for Mounted Combat Feat Support +//::////////////////////////////////////////////// + +#include "nw_i0_generic" + +void main() +{ + ExecuteScript("prc_npc_physatt", OBJECT_SELF); + + if (!GetLocalInt(GetModule(),"X3_NO_MOUNTED_COMBAT_FEAT")) + { // set variables on target for mounted combat + SetLocalInt(OBJECT_SELF,"bX3_LAST_ATTACK_PHYSICAL",TRUE); + SetLocalInt(OBJECT_SELF,"nX3_HP_BEFORE",GetCurrentHitPoints(OBJECT_SELF)); + } // set variables on target for mounted combat + + if(GetFleeToExit()) { + // Run away! + ActivateFleeToExit(); + } else if (GetSpawnInCondition(NW_FLAG_SET_WARNINGS)) { + // We give an attacker one warning before we attack + // This is not fully implemented yet + SetSpawnInCondition(NW_FLAG_SET_WARNINGS, FALSE); + + //Put a check in to see if this attacker was the last attacker + //Possibly change the GetNPCWarning function to make the check + } else { + object oAttacker = GetLastAttacker(); + if (!GetIsObjectValid(oAttacker)) { + // Don't do anything, invalid attacker + + } else if (!GetIsFighting(OBJECT_SELF)) { + // We're not fighting anyone else, so + // start fighting the attacker + if(GetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL)) { + SetSummonHelpIfAttacked(); + DetermineSpecialBehavior(oAttacker); + } else if (GetArea(oAttacker) == GetArea(OBJECT_SELF)) { + SetSummonHelpIfAttacked(); + DetermineCombatRound(oAttacker); + } + + //Shout Attack my target, only works with the On Spawn In setup + SpeakString("NW_ATTACK_MY_TARGET", TALKVOLUME_SILENT_TALK); + + //Shout that I was attacked + SpeakString("NW_I_WAS_ATTACKED", TALKVOLUME_SILENT_TALK); + } + } + + + if(GetSpawnInCondition(NW_FLAG_ATTACK_EVENT)) + { + SignalEvent(OBJECT_SELF, EventUserDefined(EVENT_ATTACKED)); + } +} diff --git a/_module/nss/nw_c2_default6.nss b/_module/nss/nw_c2_default6.nss new file mode 100644 index 0000000..d362ecf --- /dev/null +++ b/_module/nss/nw_c2_default6.nss @@ -0,0 +1,109 @@ +//::////////////////////////////////////////////////// +//:: NW_C2_DEFAULT6 +//:: Default OnDamaged handler +/* + If already fighting then ignore, else determine + combat round + */ +//::////////////////////////////////////////////////// +//:: Copyright (c) 2002 Floodgate Entertainment +//:: Created By: Naomi Novik +//:: Created On: 12/22/2002 +//::////////////////////////////////////////////////// +//::////////////////////////////////////////////////// +//:: Modified By: Deva Winblood +//:: Modified On: Jan 17th, 2008 +//:: Added Support for Mounted Combat Feat Support +//::////////////////////////////////////////////////// + +#include "nw_i0_generic" +#include "x3_inc_horse" + +void main() +{ + ExecuteScript("prc_npc_damaged", OBJECT_SELF); + + object oDamager = GetLastDamager(); + object oMe=OBJECT_SELF; + int nHPBefore; + if (!GetLocalInt(GetModule(),"X3_NO_MOUNTED_COMBAT_FEAT")) + if (GetHasFeat(FEAT_MOUNTED_COMBAT)&&HorseGetIsMounted(OBJECT_SELF)) + { // see if can negate some damage + if (GetLocalInt(OBJECT_SELF,"bX3_LAST_ATTACK_PHYSICAL")) + { // last attack was physical + nHPBefore=GetLocalInt(OBJECT_SELF,"nX3_HP_BEFORE"); + if (!GetLocalInt(OBJECT_SELF,"bX3_ALREADY_MOUNTED_COMBAT")) + { // haven't already had a chance to use this for the round + SetLocalInt(OBJECT_SELF,"bX3_ALREADY_MOUNTED_COMBAT",TRUE); + int nAttackRoll=GetBaseAttackBonus(oDamager)+d20(); + int nRideCheck=GetSkillRank(SKILL_RIDE,OBJECT_SELF)+d20(); + if (nRideCheck>=nAttackRoll&&!GetIsDead(OBJECT_SELF)) + { // averted attack + if (GetIsPC(oDamager)) SendMessageToPC(oDamager,GetName(OBJECT_SELF)+GetStringByStrRef(111991)); + //if (GetIsPC(OBJECT_SELF)) SendMessageToPCByStrRef(OBJECT_SELF,111992"); + if (GetCurrentHitPoints(OBJECT_SELF) (GetMaxHitPoints(OBJECT_SELF) / 4) + || (GetHitDice(oDamager) - 2) > GetHitDice(oTarget) + ) + ) + ) + { + // Switch targets + DetermineCombatRound(oDamager); + } + } + } + + // Send the user-defined event signal + if(GetSpawnInCondition(NW_FLAG_DAMAGED_EVENT)) + { + SignalEvent(OBJECT_SELF, EventUserDefined(EVENT_DAMAGED)); + } +} diff --git a/_module/nss/nw_c2_default8.nss b/_module/nss/nw_c2_default8.nss new file mode 100644 index 0000000..3e49428 --- /dev/null +++ b/_module/nss/nw_c2_default8.nss @@ -0,0 +1,30 @@ +//::////////////////////////////////////////////////// +//:: NW_C2_DEFAULT8 +/* + Default OnDisturbed event handler for NPCs. + */ +//::////////////////////////////////////////////////// +//:: Copyright (c) 2002 Floodgate Entertainment +//:: Created By: Naomi Novik +//:: Created On: 12/22/2002 +//::////////////////////////////////////////////////// + +#include "nw_i0_generic" + +void main() +{ + ExecuteScript("prc_npc_disturb", OBJECT_SELF); + + object oTarget = GetLastDisturbed(); + + // If we've been disturbed and are not already fighting, + // attack our disturber. + if (GetIsObjectValid(oTarget) && !GetIsFighting(OBJECT_SELF)) { + DetermineCombatRound(oTarget); + } + + // Send the disturbed flag if appropriate. + if(GetSpawnInCondition(NW_FLAG_DISTURBED_EVENT)) { + SignalEvent(OBJECT_SELF, EventUserDefined(EVENT_DISTURBED)); + } +} \ No newline at end of file diff --git a/_module/nss/nw_c2_defaulta.nss b/_module/nss/nw_c2_defaulta.nss new file mode 100644 index 0000000..e76fe15 --- /dev/null +++ b/_module/nss/nw_c2_defaulta.nss @@ -0,0 +1,20 @@ +//:://///////////////////////////////////////////// +//:: Default: On Rested +//:: NW_C2_DEFAULTA +//:: Copyright (c) 2002 Bioware Corp. +//::////////////////////////////////////////////// +/* + Determines the course of action to be taken + after having just rested. +*/ +//::////////////////////////////////////////////// +//:: Created By: Don Moar +//:: Created On: April 28, 2002 +//::////////////////////////////////////////////// +void main() +{ + ExecuteScript("prc_npc_rested", OBJECT_SELF); + + return; + +} diff --git a/_module/nss/nw_c2_defaultb.nss b/_module/nss/nw_c2_defaultb.nss new file mode 100644 index 0000000..1338544 --- /dev/null +++ b/_module/nss/nw_c2_defaultb.nss @@ -0,0 +1,159 @@ +//:://///////////////////////////////////////////// +//:: Default: On Spell Cast At +//:: NW_C2_DEFAULTB +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + This determines if the spell just cast at the + target is harmful or not. + + GZ 2003-Oct-02 : - New AoE Behavior AI. Will use + Dispel Magic against AOES + - Flying Creatures will ignore + Grease + +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Dec 6, 2001 +//:: Last Modified On: 2003-Oct-13 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Modified By: Deva Winblood +//:: Modified On: Jan 4th, 2008 +//:: Added Support for Mounted Combat Feat Support +//::////////////////////////////////////////////// + +#include "nw_i0_generic" +#include "x2_i0_spells" + +void main() +{ + ExecuteScript("prc_npc_spellat", OBJECT_SELF); + + object oCaster = GetLastSpellCaster(); + + + if(GetLastSpellHarmful()) + { + SetCommandable(TRUE); + + if (!GetLocalInt(GetModule(),"X3_NO_MOUNTED_COMBAT_FEAT")) + { // set variables on target for mounted combat + DeleteLocalInt(OBJECT_SELF,"bX3_LAST_ATTACK_PHYSICAL"); + } // set variables on target for mounted combat + + // ------------------------------------------------------------------ + // If I was hurt by someone in my own faction + // Then clear any hostile feelings I have against them + // After all, we're all just trying to do our job here + // if we singe some eyebrow hair, oh well. + // ------------------------------------------------------------------ + if (GetFactionEqual(oCaster, OBJECT_SELF) == TRUE) + { + ClearPersonalReputation(oCaster, OBJECT_SELF); + ClearAllActions(TRUE); + DelayCommand(1.2, ActionDoCommand(DetermineCombatRound(OBJECT_INVALID))); + // Send the user-defined event as appropriate + if(GetSpawnInCondition(NW_FLAG_SPELL_CAST_AT_EVENT)) + { + SignalEvent(OBJECT_SELF, EventUserDefined(EVENT_SPELL_CAST_AT)); + } + return; + } + + int bAttack = TRUE; + // ------------------------------------------------------------------ + // GZ, 2003-Oct-02 + // Try to do something smart if we are subject to an AoE Spell. + // ------------------------------------------------------------------ + if (MatchAreaOfEffectSpell(GetLastSpell()) == TRUE) + { + int nAI = (GetBestAOEBehavior(GetLastSpell())); // from x2_i0_spells + switch (nAI) + { + case X2_SPELL_AOEBEHAVIOR_DISPEL_L: + case X2_SPELL_AOEBEHAVIOR_DISPEL_N: + case X2_SPELL_AOEBEHAVIOR_DISPEL_M: + case X2_SPELL_AOEBEHAVIOR_DISPEL_G: + case X2_SPELL_AOEBEHAVIOR_DISPEL_C: + bAttack = FALSE; + ActionCastSpellAtLocation(nAI, GetLocation(OBJECT_SELF)); + ActionDoCommand(SetCommandable(TRUE)); + SetCommandable(FALSE); + break; + + case X2_SPELL_AOEBEHAVIOR_FLEE: + ClearActions(CLEAR_NW_C2_DEFAULTB_GUSTWIND); + oCaster = GetLastSpellCaster(); + ActionForceMoveToObject(oCaster, TRUE, 2.0); + DelayCommand(1.2, ActionDoCommand(DetermineCombatRound(oCaster))); + bAttack = FALSE; + break; + + case X2_SPELL_AOEBEHAVIOR_IGNORE: + // well ... nothing + break; + + case X2_SPELL_AOEBEHAVIOR_GUST: + ActionCastSpellAtLocation(SPELL_GUST_OF_WIND, GetLocation(OBJECT_SELF)); + ActionDoCommand(SetCommandable(TRUE)); + SetCommandable(FALSE); + bAttack = FALSE; + break; + } + + } + // --------------------------------------------------------------------- + // Not an area of effect spell, but another hostile spell. + // If we're not already fighting someone else, + // attack the caster. + // --------------------------------------------------------------------- + if( !GetIsFighting(OBJECT_SELF) && bAttack) + { + if(GetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL)) + { + DetermineSpecialBehavior(oCaster); + } + else + { + DetermineCombatRound(oCaster); + } + } + + // We were attacked, so yell for help + SetCommandable(TRUE); + //Shout Attack my target, only works with the On Spawn In setup + SpeakString("NW_ATTACK_MY_TARGET", TALKVOLUME_SILENT_TALK); + + //Shout that I was attacked + SpeakString("NW_I_WAS_ATTACKED", TALKVOLUME_SILENT_TALK); + } + else + { + // --------------------------------------------------------------------- + // July 14, 2003 BK + // If there is a valid enemy nearby and a NON HARMFUL spell has been + // cast on me I should call DetermineCombatRound + // I may be invisible and casting spells on myself to buff myself up + // --------------------------------------------------------------------- + // Fix: JE - let's only do this if I'm currently in combat. If I'm not + // in combat, and something casts a spell on me, it'll make me search + // out the nearest enemy, no matter where they are on the level, which + // is kinda dumb. + object oEnemy =GetNearestEnemy(); + if ((GetIsObjectValid(oEnemy) == TRUE) && (GetIsInCombat() == TRUE)) + { + // SpeakString("keep me in combat"); + DetermineCombatRound(oEnemy); + } + } + + // Send the user-defined event as appropriate + if(GetSpawnInCondition(NW_FLAG_SPELL_CAST_AT_EVENT)) + { + SignalEvent(OBJECT_SELF, EventUserDefined(EVENT_SPELL_CAST_AT)); + } + + +} diff --git a/_module/nss/nw_c2_defaulte.nss b/_module/nss/nw_c2_defaulte.nss new file mode 100644 index 0000000..3d8ab2c --- /dev/null +++ b/_module/nss/nw_c2_defaulte.nss @@ -0,0 +1,51 @@ +//:://///////////////////////////////////////////// +//:: Default On Blocked +//:: NW_C2_DEFAULTE +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + This will cause blocked creatures to open + or smash down doors depending on int and + str. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Nov 23, 2001 +//::////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_npc_blocked", OBJECT_SELF); + + object oDoor = GetBlockingDoor(); + if (GetObjectType(oDoor) == OBJECT_TYPE_CREATURE) + { + // * Increment number of times blocked + /*SetLocalInt(OBJECT_SELF, "X2_NUMTIMES_BLOCKED", GetLocalInt(OBJECT_SELF, "X2_NUMTIMES_BLOCKED") + 1); + if (GetLocalInt(OBJECT_SELF, "X2_NUMTIMES_BLOCKED") > 3) + { + SpeakString("Blocked by creature"); + SetLocalInt(OBJECT_SELF, "X2_NUMTIMES_BLOCKED",0); + ClearAllActions(); + object oEnemy = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY); + if (GetIsObjectValid(oEnemy) == TRUE) + { + ActionEquipMostDamagingRanged(oEnemy); + ActionAttack(oEnemy); + } + return; + } */ + return; + } + if(GetAbilityScore(OBJECT_SELF, ABILITY_INTELLIGENCE) >= 5) + { + if(GetIsDoorActionPossible(oDoor, DOOR_ACTION_OPEN) && GetAbilityScore(OBJECT_SELF, ABILITY_INTELLIGENCE) >= 7 ) + { + DoDoorAction(oDoor, DOOR_ACTION_OPEN); + } + else if(GetIsDoorActionPossible(oDoor, DOOR_ACTION_BASH)) + { + DoDoorAction(oDoor, DOOR_ACTION_BASH); + } + } +} diff --git a/_module/nss/nw_c2_dropin9.nss b/_module/nss/nw_c2_dropin9.nss new file mode 100644 index 0000000..43121fe --- /dev/null +++ b/_module/nss/nw_c2_dropin9.nss @@ -0,0 +1,87 @@ +//:://///////////////////////////////////////////// +//:: Default: On Spawn In +//:: NW_C2_DEFAULT9 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Determines the course of action to be taken + after having just been spawned in +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 25, 2001 +//::////////////////////////////////////////////// + +#include "NW_O2_CONINCLUDE" + +#include "NW_I0_GENERIC" +void main() +{ +// OPTIONAL BEHAVIORS (Comment In or Out to Activate ) **************************************************************************** + //SetSpawnInCondition(NW_FLAG_SPECIAL_CONVERSATION); + //SetSpawnInCondition(NW_FLAG_SPECIAL_COMBAT_CONVERSATION); + // This causes the creature to say a special greeting in their conversation file + // upon Perceiving the player. Attach the [NW_D2_GenCheck.nss] script to the desired + // greeting in order to designate it. As the creature is actually saying this to + // himself, don't attach any player responses to the greeting. + //SetSpawnInCondition(NW_FLAG_SHOUT_ATTACK_MY_TARGET); + // This will set the listening pattern on the NPC to attack when allies call + //SetSpawnInCondition(NW_FLAG_STEALTH); + // If the NPC has stealth and they are a rogue go into stealth mode + //SetSpawnInCondition(NW_FLAG_SEARCH); + // If the NPC has Search go into Search Mode + //SetSpawnInCondition(NW_FLAG_SET_WARNINGS); + // This will set the NPC to give a warning to non-enemies before attacking + //SetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS); + //This will play Ambient Animations until the NPC sees an enemy or is cleared. + //NOTE that these animations will play automatically for Encounter Creatures. + //SetSpawnInCondition(NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS); + //This will play Ambient Animations until the NPC sees an enemy or is cleared. + //NOTE that NPCs using this form of ambient animations will not move to other NPCs. + SetSpawnInCondition(NW_FLAG_APPEAR_SPAWN_IN_ANIMATION); + + // NOTE: ONLY ONE OF THE FOLOOWING ESCAPE COMMANDS SHOULD EVER BE ACTIVATED AT ANY ONE TIME. + //SetSpawnInCondition(NW_FLAG_ESCAPE_RETURN); // OPTIONAL BEHAVIOR (Flee to a way point and return a short time later.) + //SetSpawnInCondition(NW_FLAG_ESCAPE_LEAVE); // OPTIONAL BEHAVIOR (Flee to a way point and do not return.) + //SetSpawnInCondition(NW_FLAG_TELEPORT_LEAVE); // OPTIONAL BEHAVIOR (Teleport to safety and do not return.) + //SetSpawnInCondition(NW_FLAG_TELEPORT_RETURN); // OPTIONAL BEHAVIOR (Teleport to safety and return a short time later.) + +// SPECIAL BEHAVIOR SECTION +/* + The following section outlines the various special behaviors that can be placed on a creature. To activate one of the special + behaviors: + 1. Comment in SetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL); + 2. Comment in one other special behavior setting (ONLY ONE). +*/ + //SetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL); + //SetBehaviorState(NW_FLAG_BEHAVIOR_OMNIVORE); //Creature will only attack those that close within 5m and are not friends, + //Rangers or Druids. + //SetBehaviorState(NW_FLAG_BEHAVIOR_HERBIVORE);//Creature will flee those that close within 7m if they are not friends, + //Rangers or Druids. + +// CUSTOM USER DEFINED EVENTS +/* + The following settings will allow the user to fire one of the blank user defined events in the NW_D2_DefaultD. Like the + On Spawn In script this script is meant to be customized by the end user to allow for unique behaviors. The user defined + events user 1000 - 1010 +*/ + //SetSpawnInCondition(NW_FLAG_HEARTBEAT_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1001 + //SetSpawnInCondition(NW_FLAG_PERCIEVE_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1002 + //SetSpawnInCondition(NW_FLAG_ATTACK_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1005 + //SetSpawnInCondition(NW_FLAG_DAMAGED_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1006 + //SetSpawnInCondition(NW_FLAG_DISTURBED_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1008 + //SetSpawnInCondition(NW_FLAG_END_COMBAT_ROUND_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1003 + //SetSpawnInCondition(NW_FLAG_ON_DIALOGUE_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1004 + //SetSpawnInCondition(NW_FLAG_DEATH_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1007 + +// DEFAULT GENERIC BEHAVIOR (DO NOT TOUCH) ***************************************************************************************** + SetListeningPatterns(); // Goes through and sets up which shouts the NPC will listen to. + WalkWayPoints(); // Optional Parameter: void WalkWayPoints(int nRun = FALSE, float fPause = 1.0) + // 1. Looks to see if any Way Points in the module have the tag "WP_" + NPC TAG + "_0X", if so walk them + // 2. If the tag of the Way Point is "POST_" + NPC TAG the creature will return this way point after + // combat. + + GenerateNPCTreasure(); //* Use this to create a small amount of treasure on the creature + + ExecuteScript("prc_npc_spawn", OBJECT_SELF); +} diff --git a/_module/nss/nw_c2_herbivore.nss b/_module/nss/nw_c2_herbivore.nss new file mode 100644 index 0000000..6cf9f7a --- /dev/null +++ b/_module/nss/nw_c2_herbivore.nss @@ -0,0 +1,84 @@ +//:://///////////////////////////////////////////// +//:: Default: On Spawn In +//:: NW_C2_HERBIVORE +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Determines the course of action to be taken + after having just been spawned in for Herbivores +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Dec 21, 2001 +//::////////////////////////////////////////////// + +#include "NW_I0_GENERIC" +#include "NW_O2_CONINCLUDE" +void main() +{ +// OPTIONAL BEHAVIORS (Comment In or Out to Activate ) **************************************************************************** + //SetSpawnInCondition(NW_FLAG_SPECIAL_CONVERSATION); + //SetSpawnInCondition(NW_FLAG_SPECIAL_COMBAT_CONVERSATION); + // This causes the creature to say a special greeting in their conversation file + // upon Perceiving the player. Attach the [NW_D2_GenCheck.nss] script to the desired + // greeting in order to designate it. As the creature is actually saying this to + // himself, don't attach any player responses to the greeting. + //SetSpawnInCondition(NW_FLAG_SHOUT_ATTACK_MY_TARGET); + // This will set the listening pattern on the NPC to attack when allies call + //SetSpawnInCondition(NW_FLAG_STEALTH); + // If the NPC has stealth and they are a rogue go into stealth mode + //SetSpawnInCondition(NW_FLAG_SEARCH); + // If the NPC has Search go into Search Mode + //SetSpawnInCondition(NW_FLAG_SET_WARNINGS); + // This will set the NPC to give a warning to non-enemies before attacking + //SetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS); + //This will play Ambient Animations until the NPC sees an enemy or is cleared. + //NOTE that these animations will play automatically for Encounter Creatures. + //SetSpawnInCondition(NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS); + //This will play Ambient Animations until the NPC sees an enemy or is cleared. + //NOTE that NPCs using this form of ambient animations will not move to other NPCs. + + // NOTE: ONLY ONE OF THE FOLOOWING ESCAPE COMMANDS SHOULD EVER BE ACTIVATED AT ANY ONE TIME. + //SetSpawnInCondition(NW_FLAG_ESCAPE_RETURN); // OPTIONAL BEHAVIOR (Flee to a way point and return a short time later.) + //SetSpawnInCondition(NW_FLAG_ESCAPE_LEAVE); // OPTIONAL BEHAVIOR (Flee to a way point and do not return.) + //SetSpawnInCondition(NW_FLAG_TELEPORT_LEAVE); // OPTIONAL BEHAVIOR (Teleport to safety and do not return.) + //SetSpawnInCondition(NW_FLAG_TELEPORT_RETURN); // OPTIONAL BEHAVIOR (Teleport to safety and return a short time later.) + +// SPECIAL BEHAVIOR SECTION +/* + The following section outlines the various special behaviors that can be placed on a creature. To activate one of the special + behaviors: + 1. Comment in SetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL); + 2. Comment in one other special behavior setting (ONLY ONE). +*/ + SetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL); + //SetBehaviorState(NW_FLAG_BEHAVIOR_OMNIVORE); //Creature will only attack those that close within 5m and are not friends, + //Rangers or Druids. + SetBehaviorState(NW_FLAG_BEHAVIOR_HERBIVORE);//Creature will flee those that close within 7m if they are not friends, + //Rangers or Druids. + +// CUSTOM USER DEFINED EVENTS +/* + The following settings will allow the user to fire one of the blank user defined events in the NW_D2_DefaultD. Like the + On Spawn In script this script is meant to be customized by the end user to allow for unique behaviors. The user defined + events user 1000 - 1010 +*/ + //SetSpawnInCondition(NW_FLAG_HEARTBEAT_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1001 + //SetSpawnInCondition(NW_FLAG_PERCIEVE_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1002 + //SetSpawnInCondition(NW_FLAG_ATTACK_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1005 + //SetSpawnInCondition(NW_FLAG_DAMAGED_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1006 + //SetSpawnInCondition(NW_FLAG_DISTURBED_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1008 + //SetSpawnInCondition(NW_FLAG_END_COMBAT_ROUND_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1003 + //SetSpawnInCondition(NW_FLAG_ON_DIALOGUE_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1004 + //SetSpawnInCondition(NW_FLAG_DEATH_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1007 + SetLocalLocation(OBJECT_SELF, "spawn", GetLocation(OBJECT_SELF)); +// DEFAULT GENERIC BEHAVIOR (DO NOT TOUCH) ***************************************************************************************** + SetListeningPatterns(); // Goes through and sets up which shouts the NPC will listen to. + WalkWayPoints(); // Optional Parameter: void WalkWayPoints(int nRun = FALSE, float fPause = 1.0) + // 1. Looks to see if any Way Points in the module have the tag "WP_" + NPC TAG + "_0X", if so walk them + // 2. If the tag of the Way Point is "POST_" + NPC TAG the creature will return this way point after + // combat. + GenerateNPCTreasure(); //* Use this to create a small amount of treasure on the creature + + ExecuteScript("prc_npc_spawn", OBJECT_SELF); +} diff --git a/_module/nss/nw_c2_omnivore.nss b/_module/nss/nw_c2_omnivore.nss new file mode 100644 index 0000000..2d92bb2 --- /dev/null +++ b/_module/nss/nw_c2_omnivore.nss @@ -0,0 +1,84 @@ +//:://///////////////////////////////////////////// +//:: Default: On Spawn In +//:: NW_C2_OMNIVORE +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Determines the course of action to be taken + after having just been spawned in for Omniivores +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Dec 21, 2001 +//::////////////////////////////////////////////// + +#include "NW_I0_GENERIC" +#include "NW_O2_CONINCLUDE" +void main() +{ +// OPTIONAL BEHAVIORS (Comment In or Out to Activate ) **************************************************************************** + //SetSpawnInCondition(NW_FLAG_SPECIAL_CONVERSATION); + //SetSpawnInCondition(NW_FLAG_SPECIAL_COMBAT_CONVERSATION); + // This causes the creature to say a special greeting in their conversation file + // upon Perceiving the player. Attach the [NW_D2_GenCheck.nss] script to the desired + // greeting in order to designate it. As the creature is actually saying this to + // himself, don't attach any player responses to the greeting. + //SetSpawnInCondition(NW_FLAG_SHOUT_ATTACK_MY_TARGET); + // This will set the listening pattern on the NPC to attack when allies call + //SetSpawnInCondition(NW_FLAG_STEALTH); + // If the NPC has stealth and they are a rogue go into stealth mode + //SetSpawnInCondition(NW_FLAG_SEARCH); + // If the NPC has Search go into Search Mode + //SetSpawnInCondition(NW_FLAG_SET_WARNINGS); + // This will set the NPC to give a warning to non-enemies before attacking + //SetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS); + //This will play Ambient Animations until the NPC sees an enemy or is cleared. + //NOTE that these animations will play automatically for Encounter Creatures. + //SetSpawnInCondition(NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS); + //This will play Ambient Animations until the NPC sees an enemy or is cleared. + //NOTE that NPCs using this form of ambient animations will not move to other NPCs. + + // NOTE: ONLY ONE OF THE FOLOOWING ESCAPE COMMANDS SHOULD EVER BE ACTIVATED AT ANY ONE TIME. + //SetSpawnInCondition(NW_FLAG_ESCAPE_RETURN); // OPTIONAL BEHAVIOR (Flee to a way point and return a short time later.) + //SetSpawnInCondition(NW_FLAG_ESCAPE_LEAVE); // OPTIONAL BEHAVIOR (Flee to a way point and do not return.) + //SetSpawnInCondition(NW_FLAG_TELEPORT_LEAVE); // OPTIONAL BEHAVIOR (Teleport to safety and do not return.) + //SetSpawnInCondition(NW_FLAG_TELEPORT_RETURN); // OPTIONAL BEHAVIOR (Teleport to safety and return a short time later.) + +// SPECIAL BEHAVIOR SECTION +/* + The following section outlines the various special behaviors that can be placed on a creature. To activate one of the special + behaviors: + 1. Comment in SetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL); + 2. Comment in one other special behavior setting (ONLY ONE). +*/ + SetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL); + SetBehaviorState(NW_FLAG_BEHAVIOR_OMNIVORE); //Creature will only attack those that close within 5m and are not friends, + //Rangers or Druids. + //SetBehaviorState(NW_FLAG_BEHAVIOR_HERBIVORE);//Creature will flee those that close within 7m if they are not friends, + //Rangers or Druids. + +// CUSTOM USER DEFINED EVENTS +/* + The following settings will allow the user to fire one of the blank user defined events in the NW_D2_DefaultD. Like the + On Spawn In script this script is meant to be customized by the end user to allow for unique behaviors. The user defined + events user 1000 - 1010 +*/ + //SetSpawnInCondition(NW_FLAG_HEARTBEAT_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1001 + //SetSpawnInCondition(NW_FLAG_PERCIEVE_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1002 + //SetSpawnInCondition(NW_FLAG_ATTACK_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1005 + //SetSpawnInCondition(NW_FLAG_DAMAGED_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1006 + //SetSpawnInCondition(NW_FLAG_DISTURBED_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1008 + //SetSpawnInCondition(NW_FLAG_END_COMBAT_ROUND_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1003 + //SetSpawnInCondition(NW_FLAG_ON_DIALOGUE_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1004 + //SetSpawnInCondition(NW_FLAG_DEATH_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1007 + SetLocalLocation(OBJECT_SELF, "spawn", GetLocation(OBJECT_SELF)); +// DEFAULT GENERIC BEHAVIOR (DO NOT TOUCH) ***************************************************************************************** + SetListeningPatterns(); // Goes through and sets up which shouts the NPC will listen to. + WalkWayPoints(); // Optional Parameter: void WalkWayPoints(int nRun = FALSE, float fPause = 1.0) + // 1. Looks to see if any Way Points in the module have the tag "WP_" + NPC TAG + "_0X", if so walk them + // 2. If the tag of the Way Point is "POST_" + NPC TAG the creature will return this way point after + // combat. + GenerateNPCTreasure(); //* Use this to create a small amount of treasure on the creature + + ExecuteScript("prc_npc_spawn", OBJECT_SELF); +} diff --git a/_module/nss/nw_o2_boss.nss b/_module/nss/nw_o2_boss.nss new file mode 100644 index 0000000..c42e22e --- /dev/null +++ b/_module/nss/nw_o2_boss.nss @@ -0,0 +1,37 @@ +//:://///////////////////////////////////////////// +//:: General Treasure Spawn Script BOSS +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Spawns in general purpose treasure, usable + by all classes. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: March 19 2002 +//::////////////////////////////////////////////// +#include "NW_O2_CONINCLUDE" + +void main() + +{ + if (GetLocalInt(OBJECT_SELF,"NW_DO_ONCE") != 0) + { + return; + } + object oLastOpener = GetLastOpener(); + + // * May 13 2002: Must create appropriate treasure for each + // * faction member in the party. + if (GetIsObjectValid(oLastOpener) == TRUE) + { + object oMember = GetFirstFactionMember(oLastOpener, TRUE); + while (GetIsObjectValid(oMember) == TRUE) + { + GenerateBossTreasure(oMember, OBJECT_SELF); + oMember = GetNextFactionMember(oLastOpener, TRUE); + } + SetLocalInt(OBJECT_SELF,"NW_DO_ONCE",1); + } + ShoutDisturbed(); +} diff --git a/_module/nss/nw_o2_classhig.nss b/_module/nss/nw_o2_classhig.nss new file mode 100644 index 0000000..d6e51ee --- /dev/null +++ b/_module/nss/nw_o2_classhig.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: General Treasure Spawn Script HIGH +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Spawns in general purpose treasure, usable + by all classes. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: February 26 2001 +//::////////////////////////////////////////////// + +void main() +{ + ExecuteScript("nw_o2_generalhig", OBJECT_SELF); +} diff --git a/_module/nss/nw_o2_classlow.nss b/_module/nss/nw_o2_classlow.nss new file mode 100644 index 0000000..701921f --- /dev/null +++ b/_module/nss/nw_o2_classlow.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: General Treasure Spawn Script +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Spawns in general purpose treasure, usable + by all classes. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: February 26 2001 +//::////////////////////////////////////////////// + +void main() +{ + ExecuteScript("nw_o2_generallow", OBJECT_SELF); +} diff --git a/_module/nss/nw_o2_classmed.nss b/_module/nss/nw_o2_classmed.nss new file mode 100644 index 0000000..732a163 --- /dev/null +++ b/_module/nss/nw_o2_classmed.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: General Treasure Spawn Script MEDIUM +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Spawns in general purpose treasure, usable + by all classes. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: February 26 2001 +//::////////////////////////////////////////////// + +void main() +{ + ExecuteScript("nw_o2_generalmed", OBJECT_SELF); +} diff --git a/_module/nss/nw_o2_classweap.nss b/_module/nss/nw_o2_classweap.nss new file mode 100644 index 0000000..f2954e2 --- /dev/null +++ b/_module/nss/nw_o2_classweap.nss @@ -0,0 +1,2898 @@ +//:://///////////////////////////////////////////// +//:: Weapon Spawn Script for Martial Classes +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Spawns in a magical SPECIFIC weapon suited for that class. + Will spawn in either a generic or specific, depending on the + value. + + NOTE: Only works on containers +*/ +//::////////////////////////////////////////////// +//:: Created By: Andrew, Brent +//:: Created On: February 2002 +//::////////////////////////////////////////////// + +#include "NW_O2_CONINCLUDE" +#include "prc_class_const" + + +void CreateBastardSword(object oTarget, object oAdventurer) +{ + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmbs002"; break; + } + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmbs002"; break; + } + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmbs002"; break; + case 2: sItem = "nw_wswmbs009"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmbs009"; break; + case 2: sItem = "nw_wswmbs005"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmbs005"; break; + case 2: sItem = "nw_wswmbs010"; break; + case 3: sItem = "nw_wswmbs006"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmbs010"; break; + case 2: sItem = "nw_wswmbs006"; break; + case 3: sItem = "nw_wswmbs007"; break; + case 4: sItem = "nw_wswmbs003"; break; + case 5: sItem = "nw_wswmbs004"; break; + } + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateBattleAxe(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmbt002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmbt002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmbt002"; break; + case 2: sItem = "nw_waxmbt010"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmbt010"; break; + case 2: sItem = "nw_waxmbt011"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmbt011"; break; + case 2: sItem = "nw_waxmbt006"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmbt011"; break; + case 2: sItem = "nw_waxmbt006"; break; + case 3: sItem = "nw_waxmbt003"; break; + case 4: sItem = "nw_waxmbt004"; break; + case 5: sItem = "nw_waxmbt005"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateClub(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmcl002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmcl002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmcl002"; break; + case 2: sItem = "nw_wblmcl010"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmcl010"; break; + case 2: sItem = "nw_wblmcl004"; break; + case 3: sItem = "nw_wblmcl003"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmcl004"; break; + case 2: sItem = "nw_wblmcl003"; break; + case 3: sItem = "nw_wblmcl011"; break; + case 4: sItem = "nw_wblmcl005"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmcl011"; break; + case 2: sItem = "nw_wblmcl005"; break; + case 3: sItem = "nw_wblmcl006"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} + +void CreateDagger(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmdg002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmdg002"; break; + } + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmdg002"; break; + case 2: sItem = "nw_wswmdg008"; break; + case 3: sItem = "nw_wswmdg006"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmdg008"; break; + case 2: sItem = "nw_wswmdg006"; break; + case 3: sItem = "nw_wswmdg009"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmdg009"; break; + case 2: sItem = "nw_wswmdg004"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmdg009"; break; + case 2: sItem = "nw_wswmdg004"; break; + case 3: sItem = "nw_wswmdg003"; break; + case 4: sItem = "nw_wswmdg007"; break; + case 5: sItem = "nw_wswmdg005"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateDart(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmdt002"; break; + case 2: sItem = "nw_wthmdt002"; break; + case 3: sItem = "nw_wthmdt008"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmdt008"; break; + case 2: sItem = "nw_wthmdt009"; break; + case 3: sItem = "nw_wthmdt003"; break; + } + + } + else + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmdt009"; break; + case 2: sItem = "nw_wthmdt003"; break; + case 3: sItem = "nw_wthmdt007"; break; + } + + } + + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, Random(40) + 1); +} +void CreateDireMace(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmma002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmma002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmma002"; break; + case 2: sItem = "nw_wdbmma003"; break; + case 3: sItem = "nw_wdbmma010"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmma003"; break; + case 2: sItem = "nw_wdbmma010"; break; + case 3: sItem = "nw_wdbmma005"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmma005"; break; + case 2: sItem = "nw_wdbmma011"; break; + case 3: sItem = "nw_wdbmma004"; break; + case 4: sItem = "nw_wdbmma006"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmma005"; break; + case 2: sItem = "nw_wdbmma011"; break; + case 3: sItem = "nw_wdbmma004"; break; + case 4: sItem = "nw_wdbmma006"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateDoubleAxe(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmax002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmax002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmax002"; break; + case 2: sItem = "nw_wdbmax010"; break; + case 3: sItem = "nw_wdbmax006"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmax010"; break; + case 2: sItem = "nw_wdbmax006"; break; + case 3: sItem = "nw_wdbmax005"; break; + } + + } + else if (GetRange(5, nHD)) + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmax005"; break; + case 2: sItem = "nw_wdbmax011"; break; + case 3: sItem = "nw_wdbmax004"; break; + case 4: sItem = "nw_wdbmax007"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmax011"; break; + case 2: sItem = "nw_wdbmax004"; break; + case 3: sItem = "nw_wdbmax007"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateGreatAxe(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmgr002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmgr002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmgr002"; break; + case 2: sItem = "nw_waxmgr009"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmgr002"; break; + case 2: sItem = "nw_waxmgr009"; break; + case 3: sItem = "nw_waxmgr003"; break; + case 4: sItem = "nw_waxmgr006"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmgr003"; break; + case 2: sItem = "nw_waxmgr006"; break; + case 3: sItem = "nw_waxmgr011"; break; + } + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmgr011"; break; + case 2: sItem = "nw_waxmgr005"; break; + case 3: sItem = "nw_waxmgr004"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateGreatSword(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmgs002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmgs002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmgs002"; break; + case 2: sItem = "nw_wswmgs011"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmgs011"; break; + case 2: sItem = "nw_wswmgs006"; break; + case 3: sItem = "nw_wswmgs004"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmgs006"; break; + case 2: sItem = "nw_wswmgs004"; break; + case 3: sItem = "nw_wswmgs012"; break; + case 4: sItem = "nw_wswmgs005"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmgs012"; break; + case 2: sItem = "nw_wswmgs005"; break; + case 3: sItem = "nw_wswmgs003"; break; + } + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateHalberd(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmhb002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmhb002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmhb002"; break; + case 2: sItem = "nw_wplmhb010"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmhb010"; break; + case 2: sItem = "nw_wplmhb004"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmhb004"; break; + case 2: sItem = "nw_wplmhb011"; break; + case 3: sItem = "nw_wplmhb003"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmhb011"; break; + case 2: sItem = "nw_wplmhb003"; break; + case 3: sItem = "nw_wplmhb007"; break; + case 4: sItem = "nw_wplmhb006"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateHandAxe(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmhn002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmhn002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmhn002"; break; + case 2: sItem = "nw_waxmhn010"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmhn010"; break; + case 2: sItem = "nw_waxmhn004"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmhn004"; break; + case 2: sItem = "nw_waxmhn011"; break; + case 3: sItem = "nw_waxmhn003"; break; + case 4: sItem = "nw_waxmhn005"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_waxmhn011"; break; + case 2: sItem = "nw_waxmhn003"; break; + case 3: sItem = "nw_waxmhn005"; break; + case 4: sItem = "nw_waxmhn006"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateHeavyCrossbow(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmxh002"; break; + case 2: sItem = "nw_wbwmxh002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmxh002"; break; + case 2: sItem = "nw_wbwmxh008"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmxh002"; break; + case 2: sItem = "nw_wbwmxh008"; break; + case 3: sItem = "nw_wbwmxh009"; break; + case 4: sItem = "nw_wbwmxh005"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmxh009"; break; + case 2: sItem = "nw_wbwmxh005"; break; + case 3: sItem = "nw_wbwmxh003"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmxh003"; break; + case 2: sItem = "nw_wbwmxh004"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmxh004"; break; + case 2: sItem = "nw_wbwmxh007"; break; + case 3: sItem = "nw_wbwmxh006"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateHeavyFlail(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmfh002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmfh002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmfh002"; break; + case 2: sItem = "nw_wblmfh007"; break; + case 3: sItem = "nw_wblmfh010"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmfh002"; break; + case 2: sItem = "nw_wblmfh007"; break; + case 3: sItem = "nw_wblmfh010"; break; + case 4: sItem = "nw_wblmfh004"; break; + case 5: sItem = "nw_wblmfh008"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmfh004"; break; + case 2: sItem = "nw_wblmfh008"; break; + case 3: sItem = "nw_wblmfh011"; break; + case 4: sItem = "nw_wblmfh006"; break; + case 5: sItem = "nw_wblmfh003"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmfh011"; break; + case 2: sItem = "nw_wblmfh006"; break; + case 3: sItem = "nw_wblmfh003"; break; + case 4: sItem = "nw_wblmfh005"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateKama(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmka002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmka002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmka002"; break; + case 2: sItem = "nw_wspmka004"; break; + case 3: sItem = "nw_wspmka007"; break; + case 4: sItem = "nw_wspmka008"; break; + case 5: sItem = "nw_wspmka005"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmka004"; break; + case 2: sItem = "nw_wspmka007"; break; + case 3: sItem = "nw_wspmka008"; break; + case 4: sItem = "nw_wspmka005"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmka005"; break; + case 2: sItem = "nw_wspmka009"; break; + case 3: sItem = "nw_wspmka006"; break; + case 4: sItem = "nw_wspmka003"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmka009"; break; + case 2: sItem = "nw_wspmka006"; break; + case 3: sItem = "nw_wspmka003"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateKatana(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmka002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmka002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmka002"; break; + case 2: sItem = "nw_wswmka005"; break; + case 3: sItem = "nw_wswmka010"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmka005"; break; + case 2: sItem = "nw_wswmka010"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmka011"; break; + case 2: sItem = "nw_wswmka007"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmka011"; break; + case 2: sItem = "nw_wswmka007"; break; + case 3: sItem = "nw_wswmka006"; break; + case 4: sItem = "nw_wswmka004"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateKukri(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmku002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmku002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmku002"; break; + case 2: sItem = "nw_wspmku006"; break; + case 3: sItem = "nw_wspmku008"; break; + case 4: sItem = "nw_wspmku005"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmku006"; break; + case 2: sItem = "nw_wspmku008"; break; + case 3: sItem = "nw_wspmku005"; break; + case 4: sItem = "nw_wspmku004"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmku004"; break; + case 2: sItem = "nw_wspmku009"; break; + case 3: sItem = "nw_wspmku007"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmku009"; break; + case 2: sItem = "nw_wspmku007"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateLightCrossbow(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwxl001"; break; + case 2: sItem = "nw_wbwmxl002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmxl002"; break; + case 2: sItem = "nw_wbwmxl008"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmxl008"; break; + case 2: sItem = "nw_wbwmxl009"; break; + case 3: sItem = "nw_wbwmxl005"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmxl009"; break; + case 2: sItem = "nw_wbwmxl005"; break; + case 3: sItem = "nw_wbwmxl003"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmxl003"; break; + case 2: sItem = "nw_wbwmxl004"; break; + case 3: sItem = "nw_wbwmxl007"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmxl003"; break; + case 2: sItem = "nw_wbwmxl004"; break; + case 3: sItem = "nw_wbwmxl007"; break; + case 4: sItem = "nw_wbwmxl006"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} + +void CreateLightFlail(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmfl002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmfl002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmfl002"; break; + case 2: sItem = "nw_wblmfl010"; break; + case 3: sItem = "nw_wblmfl004"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmfl010"; break; + case 2: sItem = "nw_wblmfl004"; break; + case 3: sItem = "nw_wblmfl005"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmfl005"; break; + case 2: sItem = "nw_wblmfl011"; break; + case 3: sItem = "nw_wblmfl007"; break; + case 4: sItem = "nw_wblmfl006"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmfl011"; break; + case 2: sItem = "nw_wblmfl007"; break; + case 3: sItem = "nw_wblmfl006"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} + +void CreateLightHammer(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmhl002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmhl002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmhl002"; break; + case 2: sItem = "nw_wblmhl010"; break; + case 3: sItem = "nw_wblmhl004"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmhl010"; break; + case 2: sItem = "nw_wblmhl004"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmhl005"; break; + case 2: sItem = "nw_wblmhl011"; break; + case 3: sItem = "nw_wblmhl006"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmhl005"; break; + case 2: sItem = "nw_wblmhl011"; break; + case 3: sItem = "nw_wblmhl006"; break; + case 4: sItem = "nw_wblmhl009"; break; + case 5: sItem = "nw_wblmhl003"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateLightMace(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmml002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmml002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmml002"; break; + case 2: sItem = "nw_wblmml011"; break; + case 3: sItem = "nw_wblmml006"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmml011"; break; + case 2: sItem = "nw_wblmml006"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmml012"; break; + case 2: sItem = "nw_wblmml004"; break; + case 3: sItem = "nw_wblmml005"; break; + case 4: sItem = "nw_wblmml007"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmml012"; break; + case 2: sItem = "nw_wblmml004"; break; + case 3: sItem = "nw_wblmml005"; break; + case 4: sItem = "nw_wblmml007"; break; + case 5: sItem = "nw_wblmml008"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateLongSword(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmls002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmls002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmls002"; break; + case 2: sItem = "nw_wswmls010"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmls010"; break; + case 2: sItem = "nw_wswmls007"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmls007"; break; + case 2: sItem = "nw_wswmls012"; break; + case 3: sItem = "nw_wswmls005"; break; + case 4: sItem = "nw_wswmls006"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmls012"; break; + case 2: sItem = "nw_wswmls005"; break; + case 3: sItem = "nw_wswmls006"; break; + case 4: sItem = "nw_wswmls004"; break; + case 5: sItem = "nw_wswmls013"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateLongbow(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmln002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmln002"; break; + case 2: sItem = "nw_wbwmln002"; break; + case 3: sItem = "nw_wbwmln008"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmln002"; break; + case 2: sItem = "nw_wbwmln008"; break; + case 3: sItem = "nw_wbwmln009"; break; + case 4: sItem = "nw_wbwmln004"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmln009"; break; + case 2: sItem = "nw_wbwmln004"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmln004"; break; + case 2: sItem = "nw_wbwmln007"; break; + case 3: sItem = "nw_wbwmln006"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmln007"; break; + case 2: sItem = "nw_wbwmln006"; break; + case 3: sItem = "nw_wbwmln005"; break; + case 4: sItem = "nw_wbwmln003"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateMorningstar(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmms002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmms002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmms002"; break; + case 2: sItem = "nw_wblmms010"; break; + case 3: sItem = "nw_wblmms007"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmms007"; break; + case 2: sItem = "nw_wblmms003"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmms003"; break; + case 2: sItem = "nw_wblmms011"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmms011"; break; + case 2: sItem = "nw_wblmms006"; break; + case 3: sItem = "nw_wblmms004"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateRapier(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmrp002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmrp002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmrp002"; break; + case 2: sItem = "nw_wswmrp004"; break; + case 3: sItem = "nw_wswmrp010"; break; + case 4: sItem = "nw_wswmrp003"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmrp004"; break; + case 2: sItem = "nw_wswmrp010"; break; + case 3: sItem = "nw_wswmrp003"; break; + case 4: sItem = "nw_wswmrp005"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmrp003"; break; + case 2: sItem = "nw_wswmrp005"; break; + case 3: sItem = "nw_wswmrp011"; break; + case 4: sItem = "nw_wswmrp007"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmrp011"; break; + case 2: sItem = "nw_wswmrp007"; break; + case 3: sItem = "nw_wswmrp006"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateScimitar(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmsc002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmsc002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmsc002"; break; + case 2: sItem = "nw_wswmsc010"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmsc010"; break; + case 2: sItem = "nw_wswmsc004"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmsc004"; break; + case 2: sItem = "nw_wswmsc011"; break; + case 3: sItem = "nw_wswmsc006"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmsc011"; break; + case 2: sItem = "nw_wswmsc006"; break; + case 3: sItem = "nw_wswmsc007"; break; + case 4: sItem = "nw_wswmsc005"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateScythe(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmsc002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmsc002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmsc002"; break; + case 2: sItem = "nw_wplmsc010"; break; + case 3: sItem = "nw_wplmsc003"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmsc010"; break; + case 2: sItem = "nw_wplmsc003"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmsc003"; break; + case 2: sItem = "nw_wplmsc011"; break; + case 3: sItem = "nw_wplmsc006"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmsc011"; break; + case 2: sItem = "nw_wplmsc006"; break; + case 3: sItem = "nw_wplmsc005"; break; + case 4: sItem = "nw_wplmsc004"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateShortsword(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmss002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmss002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmss002"; break; + case 2: sItem = "nw_wswmss009"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmss009"; break; + case 2: sItem = "nw_wswmss011"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmss011"; break; + case 2: sItem = "nw_wswmss005"; break; + case 3: sItem = "nw_wswmss004"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wswmss011"; break; + case 2: sItem = "nw_wswmss005"; break; + case 3: sItem = "nw_wswmss004"; break; + case 4: sItem = "nw_wswmss006"; break; + case 5: sItem = "nw_wswmss003"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateShortbow(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsh002"; break; + case 2: sItem = "nw_wbwmsh002"; break; + } + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsh002"; break; + case 2: sItem = "nw_wbwmsh008"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsh008"; break; + case 2: sItem = "nw_wbwmsh009"; break; + case 3: sItem = "nw_wbwmsh003"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsh009"; break; + case 2: sItem = "nw_wbwmsh003"; break; + case 3: sItem = "nw_wbwmsh006"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsh006"; break; + case 2: sItem = "nw_wbwmsh007"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsh007"; break; + case 2: sItem = "nw_wbwmsh005"; break; + case 3: sItem = "nw_wbwmsh004"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateShuriken(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmsh002"; break; + case 2: sItem = "nw_wthmsh002"; break; + case 3: sItem = "nw_wthmsh003"; break; + case 4: sItem = "nw_wthmsh008"; break; + case 5: sItem = "nw_wthmsh006"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmsh002"; break; + case 2: sItem = "nw_wthmsh003"; break; + case 3: sItem = "nw_wthmsh008"; break; + case 4: sItem = "nw_wthmsh006"; break; + case 5: sItem = "nw_wthmsh009"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmsh006"; break; + case 2: sItem = "nw_wthmsh009"; break; + case 3: sItem = "nw_wthmsh005"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmsh009"; break; + case 2: sItem = "nw_wthmsh005"; break; + case 3: sItem = "nw_wthmsh004"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmsh005"; break; + case 2: sItem = "nw_wthmsh004"; break; + case 3: sItem = "nw_wthmsh007"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmsh005"; break; + case 2: sItem = "nw_wthmsh004"; break; + case 3: sItem = "nw_wthmsh007"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, Random(40) + 1); +} +void CreateSickle(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmsc002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmsc002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmsc002"; break; + case 2: sItem = "nw_wspmsc010"; break; + case 3: sItem = "nw_wspmsc004"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmsc010"; break; + case 2: sItem = "nw_wspmsc004"; break; + case 3: sItem = "nw_wspmsc005"; break; + case 4: sItem = "nw_wspmsc006"; break; + case 5: sItem = "nw_wspmsc003"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmsc005"; break; + case 2: sItem = "nw_wspmsc006"; break; + case 3: sItem = "nw_wspmsc003"; break; + case 4: sItem = "nw_wspmsc011"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wspmsc011"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateSling(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsl001"; break; + case 2: sItem = "nw_wbwmsl001"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsl001"; break; + case 2: sItem = "nw_wbwmsl009"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsl009"; break; + case 2: sItem = "nw_wbwmsl010"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsl010"; break; + case 2: sItem = "nw_wbwmsl003"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsl003"; break; + case 2: sItem = "nw_wbwmsl007"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsl007"; break; + case 2: sItem = "nw_wbwmsl006"; break; + case 3: sItem = "nw_wbwmsl008"; break; + case 4: sItem = "nw_wbwmsl004"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateSpear(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmss002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmss002"; break; + } + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmss002"; break; + case 2: sItem = "nw_wbwmsl005"; break; + case 3: sItem = "nw_wplmss010"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wbwmsl005"; break; + case 2: sItem = "nw_wplmss010"; break; + case 3: sItem = "nw_wplmss005"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmss005"; break; + case 2: sItem = "nw_wplmss011"; break; + case 3: sItem = "nw_wplmss007"; break; + case 4: sItem = "nw_wplmss006"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wplmss011"; break; + case 2: sItem = "nw_wplmss007"; break; + case 3: sItem = "nw_wplmss006"; break; + case 4: sItem = "nw_wplmss004"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateStaff(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmqs002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmqs002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmqs002"; break; + case 2: sItem = "nw_wdbmqs005"; break; + case 3: sItem = "nw_wdbmqs006"; break; + case 4: sItem = "nw_wdbmqs008"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmqs005"; break; + case 2: sItem = "nw_wdbmqs006"; break; + case 3: sItem = "nw_wdbmqs008"; break; + case 4: sItem = "nw_wdbmqs004"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmqs004"; break; + case 2: sItem = "nw_wdbmqs009"; break; + case 3: sItem = "nw_wdbmqs003"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmqs009"; break; + case 2: sItem = "nw_wdbmqs003"; break; + case 3: sItem = "nw_wdbmqs007"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateThrowingAxe(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmax002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmax002"; break; + case 2: sItem = "nw_wthmax008"; break; + case 3: sItem = "nw_wthmax005"; break; + case 4: sItem = "nw_wthmax007"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(5) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmax008"; break; + case 2: sItem = "nw_wthmax005"; break; + case 3: sItem = "nw_wthmax007"; break; + case 4: sItem = "nw_wthmax003"; break; + case 5: sItem = "nw_wthmax004"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmax007"; break; + case 2: sItem = "nw_wthmax003"; break; + case 3: sItem = "nw_wthmax004"; break; + case 4: sItem = "nw_wthmax009"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmax003"; break; + case 2: sItem = "nw_wthmax004"; break; + case 3: sItem = "nw_wthmax009"; break; + case 4: sItem = "nw_wthmax006"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wthmax009"; break; + case 2: sItem = "nw_wthmax006"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, Random(40) + 1); +} +void CreateTwoBladedSword(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmsw002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmsw002"; break; + case 2: sItem = "nw_wdbmsw002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmsw002"; break; + case 2: sItem = "nw_wdbmsw010"; break; + case 3: sItem = "nw_wdbmsw006"; break; + case 4: sItem = "nw_wdbmsw007"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmsw010"; break; + case 2: sItem = "nw_wdbmsw006"; break; + case 3: sItem = "nw_wdbmsw007"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmsw011"; break; + case 2: sItem = "nw_wdbmsw005"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wdbmsw011"; break; + case 2: sItem = "nw_wdbmsw005"; break; + case 3: sItem = "nw_wdbmsw004"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateWarhammer(object oTarget, object oAdventurer) +{ + + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmhw002"; break; + } + + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + int nRandom = Random(1) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmhw002"; break; + } + + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmhw002"; break; + case 2: sItem = "nw_wblmhw011"; break; + case 3: sItem = "nw_wblmhw006"; break; + } + + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmhw011"; break; + case 2: sItem = "nw_wblmhw006"; break; + } + + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + int nRandom = Random(4) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmhw006"; break; + case 2: sItem = "nw_wblmhw005"; break; + case 3: sItem = "nw_wblmhw012"; break; + case 4: sItem = "nw_wblmhw003"; break; + } + + } + else if (GetRange(6, nHD)) // * 16000 and up + { + int nRandom = Random(3) + 1; + switch (nRandom) + { + case 1: sItem = "nw_wblmhw012"; break; + case 2: sItem = "nw_wblmhw003"; break; + case 3: sItem = "nw_wblmhw004"; break; + } + + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} +void CreateWhip(object oTarget, object oAdventurer) +{ + string sItem = ""; + int nHD = GetHitDice(oAdventurer); + + if (GetRange(1, nHD)) // * 800 + { + sItem = "x2_it_wpmwhip1"; + } + else if (GetRange(2, nHD)) // * 200 - 2500 + { + sItem = "x2_it_wpmwhip1"; + } + else if (GetRange(3, nHD)) // * 800 - 10000 + { + int nRandom = Random(2) + 1; + switch (nRandom) + { + case 1: sItem = "x2_it_wpmwhip1"; break; + case 2: sItem = "x2_it_wpmwhip2"; break; + } + } + else if (GetRange(4, nHD)) // * 2500 - 16500 + { + sItem = "x2_it_wpmwhip2"; + } + else if (GetRange(5, nHD)) // * 8000 - 25000 + { + sItem = "x2_it_wpmwhip3"; + } + else if (GetRange(6, nHD)) // * 16000 and up + { + sItem = "x2_it_wpmwhip3"; + } + if (sItem != "") + dbCreateItemOnObject(sItem, oTarget, 1); +} + +//:://///////////////////////////////////////////// +//:: Prefers +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Returns true if oAdventurer prefers using + this weapon. + CRITERIA: They have Weapon Focus + nFeatWeaponType: Uses the feat constants + to differentiate the weapon types +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: March 2002 +//::////////////////////////////////////////////// +int Prefers(int nFeatWeaponType, object oAdventurer) +{ + if (GetHasFeat(nFeatWeaponType, oAdventurer) == TRUE) + return TRUE; + else + return FALSE; +} + +void main() +{ + object oLastOpener = GetLastOpener(); + object oContainer = OBJECT_SELF; + + if (GetLocalInt(OBJECT_SELF, "NW_L_OPENONCE") > 0 || GetIsObjectValid(oLastOpener) == FALSE) + { + return; // * abort treasure if no one opened the container + } + SetLocalInt(OBJECT_SELF, "NW_L_OPENONCE",1); + ShoutDisturbed(); + + // * CHoose the weapon type to create + if (Prefers(FEAT_WEAPON_FOCUS_BASTARD_SWORD, oLastOpener) == TRUE) + { + CreateBastardSword(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_BATTLE_AXE,oLastOpener)) + { + CreateBattleAxe(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_CLUB,oLastOpener)) + { + CreateClub(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_DAGGER,oLastOpener)) + { + CreateDagger(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_DART,oLastOpener)) + { + CreateDart(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_DIRE_MACE,oLastOpener)) + { + CreateDireMace(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_DOUBLE_AXE,oLastOpener)) + { + CreateDoubleAxe(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_GREAT_AXE,oLastOpener)) + { + CreateGreatAxe(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_GREAT_SWORD,oLastOpener)) + { + CreateGreatSword(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_HALBERD,oLastOpener)) + { + CreateHalberd(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_HAND_AXE,oLastOpener)) + { + CreateHandAxe(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_HEAVY_CROSSBOW,oLastOpener)) + { + CreateHeavyCrossbow(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_HEAVY_FLAIL,oLastOpener)) + { + CreateHeavyFlail(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_KAMA,oLastOpener)) + { + CreateKama(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_KATANA,oLastOpener)) + { + CreateKatana(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_KUKRI,oLastOpener)) + { + CreateKukri(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_LIGHT_CROSSBOW,oLastOpener)) + { + CreateLightCrossbow(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_LIGHT_FLAIL,oLastOpener)) + { + CreateLightFlail(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_LIGHT_HAMMER,oLastOpener)) + { + CreateLightHammer(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_LIGHT_MACE,oLastOpener)) + { + CreateLightMace(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_LONG_SWORD,oLastOpener)) + { + CreateLongSword(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_LONGBOW,oLastOpener)) + { + CreateLongbow(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_MORNING_STAR,oLastOpener)) + { + CreateMorningstar(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_RAPIER,oLastOpener)) + { + CreateRapier(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_SCIMITAR,oLastOpener)) + { + CreateScimitar(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_SCYTHE,oLastOpener)) + { + CreateScythe(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_SHORT_SWORD,oLastOpener)) + { + CreateShortsword(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_SHORTBOW,oLastOpener)) + { + CreateShortbow(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_SHURIKEN,oLastOpener)) + { + CreateShuriken(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_SICKLE,oLastOpener)) + { + CreateSickle(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_SLING,oLastOpener)) + { + CreateSling(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_SPEAR,oLastOpener)) + { + CreateSpear(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_STAFF,oLastOpener)) + { + CreateStaff(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_THROWING_AXE,oLastOpener)) + { + CreateThrowingAxe(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_TWO_BLADED_SWORD,oLastOpener)) + { + CreateTwoBladedSword(oContainer, oLastOpener); + } + else if (Prefers(FEAT_WEAPON_FOCUS_WAR_HAMMER,oLastOpener)) + { + CreateWarhammer(oContainer, oLastOpener); + } + else + { + // * if get to this point then the PC did not have Weapon Focus + // * in anything then do additional logic to give an appropriate weapon + if (GetLevelByClass(CLASS_TYPE_ALAGHAR, oLastOpener) >= 1) + { + CreateBattleAxe(oContainer, oLastOpener); + } + else + if (GetLevelByClass(CLASS_TYPE_HEARTWARDER, oLastOpener) >= 1 + || GetLevelByClass(CLASS_TYPE_LASHER, oLastOpener) >= 1) + { + CreateWhip(oContainer, oLastOpener); + } + else + if (GetLevelByClass(CLASS_TYPE_STORMLORD, oLastOpener) >= 1) + { + CreateSpear(oContainer, oLastOpener); + } + else + if (GetLevelByClass(CLASS_TYPE_BLIGHTLORD, oLastOpener) >= 1) + { + CreateHalberd(oContainer, oLastOpener); + } + else + if (GetLevelByClass(CLASS_TYPE_HALFLING_WARSLINGER, oLastOpener) >= 1) + { + CreateSling(oContainer, oLastOpener); + } + else + if (GetLevelByClass(CLASS_TYPE_BOWMAN, oLastOpener) >= 1 + || GetLevelByClass(CLASS_TYPE_BLARCHER, oLastOpener) >= 1) + { + CreateLongbow(oContainer, oLastOpener); + } + else + if (GetLevelByClass(CLASS_TYPE_SAMURAI, oLastOpener) >= 1 + || GetLevelByClass(CLASS_TYPE_CW_SAMURAI, oLastOpener) >= 1) + { + CreateKatana(oContainer, oLastOpener); + } + else + if (GetLevelByClass(CLASS_TYPE_SWASHBUCKLER, oLastOpener) >= 1 + || GetLevelByClass(CLASS_TYPE_PSYCHIC_ROGUE, oLastOpener) >= 1 + || GetLevelByClass(CLASS_TYPE_DUELIST, oLastOpener) >= 1) + { + CreateRapier(oContainer, oLastOpener); + } + else + if (GetLevelByClass(CLASS_TYPE_WIZARD, oLastOpener) >= 1 + || GetLevelByClass(CLASS_TYPE_PSION, oLastOpener) >= 1 + || GetLevelByClass(CLASS_TYPE_SHADOWCASTER, oLastOpener) >= 1) + { + CreateSpecificWizardWeapon(oContainer, oLastOpener); + } + else + if (GetLevelByClass(CLASS_TYPE_DRUID, oLastOpener) >= 1) + { + CreateScimitar(oContainer, oLastOpener); + } + else + if (GetLevelByClass(CLASS_TYPE_MONK, oLastOpener) >= 1) + { + CreateSpecificMonkWeapon(oContainer, oLastOpener); + } + else + if (GetLevelByClass(CLASS_TYPE_ROGUE, oLastOpener) >= 1 + || GetLevelByClass(CLASS_TYPE_BARD, oLastOpener) >= 1) + { + CreateShortsword(oContainer, oLastOpener); + } + else + if (GetHasFeat(FEAT_WEAPON_PROFICIENCY_EXOTIC, oLastOpener)) + { + CreateBastardSword(oContainer, oLastOpener); + } + else + if (GetHasFeat(FEAT_WEAPON_PROFICIENCY_MARTIAL, oLastOpener)) + { + CreateLongSword(oContainer, oLastOpener); + } + else + if (GetHasFeat(FEAT_WEAPON_PROFICIENCY_SIMPLE, oLastOpener)) + { + CreateMorningstar(oContainer, oLastOpener); + } + } +} + + diff --git a/_module/nss/nw_o2_feat.nss b/_module/nss/nw_o2_feat.nss new file mode 100644 index 0000000..d9be1a3 --- /dev/null +++ b/_module/nss/nw_o2_feat.nss @@ -0,0 +1,20 @@ +//:://///////////////////////////////////////////// +//:: Weapon Spawn Script for Martial Classes +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Spawns in a magical SPECIFIC weapon suited for that class. + Will spawn in either a generic or specific, depending on the + value. + + NOTE: Only works on containers +*/ +//::////////////////////////////////////////////// +//:: Created By: Andrew, Brent +//:: Created On: February 2002 +//::////////////////////////////////////////////// + +void main() +{ + ExecuteScript("nw_o2_classweap", OBJECT_SELF); +} diff --git a/_module/nss/nw_o2_generalhig.nss b/_module/nss/nw_o2_generalhig.nss new file mode 100644 index 0000000..5714ef4 --- /dev/null +++ b/_module/nss/nw_o2_generalhig.nss @@ -0,0 +1,26 @@ +//:://///////////////////////////////////////////// +//:: General Treasure Spawn Script HIGH +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Spawns in general purpose treasure, usable + by all classes. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: February 26 2001 +//::////////////////////////////////////////////// +#include "NW_O2_CONINCLUDE" + +void main() + +{ + if (GetLocalInt(OBJECT_SELF,"NW_DO_ONCE") != 0) + { + return; + } + object oLastOpener = GetLastOpener(); + GenerateHighTreasure(oLastOpener, OBJECT_SELF); + SetLocalInt(OBJECT_SELF,"NW_DO_ONCE",1); + ShoutDisturbed(); +} diff --git a/_module/nss/nw_o2_generallow.nss b/_module/nss/nw_o2_generallow.nss new file mode 100644 index 0000000..c028730 --- /dev/null +++ b/_module/nss/nw_o2_generallow.nss @@ -0,0 +1,25 @@ +//:://///////////////////////////////////////////// +//:: General Treasure Spawn Script +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Spawns in general purpose treasure, usable + by all classes. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: February 26 2001 +//::////////////////////////////////////////////// +#include "NW_O2_CONINCLUDE" + +void main() + +{ + if(GetLocalInt(OBJECT_SELF,"NW_DO_ONCE")) + return; + + object oLastOpener = GetLastOpener(); + GenerateLowTreasure(oLastOpener, OBJECT_SELF); + SetLocalInt(OBJECT_SELF,"NW_DO_ONCE",1); + ShoutDisturbed(); +} \ No newline at end of file diff --git a/_module/nss/nw_o2_generalmed.nss b/_module/nss/nw_o2_generalmed.nss new file mode 100644 index 0000000..d447bf0 --- /dev/null +++ b/_module/nss/nw_o2_generalmed.nss @@ -0,0 +1,27 @@ +//:://///////////////////////////////////////////// +//:: General Treasure Spawn Script Medium +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Spawns in general purpose treasure, usable + by all classes. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: February 26 2001 +//::////////////////////////////////////////////// +#include "NW_O2_CONINCLUDE" + +void main() + +{ + if (GetLocalInt(OBJECT_SELF,"NW_DO_ONCE") != 0) + { + return; + } + object oLastOpener = GetLastOpener(); + GenerateMediumTreasure(oLastOpener, OBJECT_SELF); + SetLocalInt(OBJECT_SELF,"NW_DO_ONCE",1); + + ShoutDisturbed(); +} diff --git a/_module/nss/nw_o2_generalmid.nss b/_module/nss/nw_o2_generalmid.nss new file mode 100644 index 0000000..a6b2ef6 --- /dev/null +++ b/_module/nss/nw_o2_generalmid.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: General Treasure Spawn Script Medium +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Spawns in general purpose treasure, usable + by all classes. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: February 26 2001 +//::////////////////////////////////////////////// + +void main() +{ + ExecuteScript("nw_o2_generalmed", OBJECT_SELF); +} diff --git a/_module/nss/on_heart_sf.nss b/_module/nss/on_heart_sf.nss new file mode 100644 index 0000000..955734a --- /dev/null +++ b/_module/nss/on_heart_sf.nss @@ -0,0 +1,36 @@ +#include "scenestart" + +void main() +{ +int nInt; +int nInt2; +object oMod = GetModule(); +object oPlayer; +object oPC = GetFirstPC(); + + +nInt2 = GetLocalInt(oMod, "cutscene_flag"); +//FloatingTextStringOnCreature(IntToString(nInt2), oPC); +if (nInt2!=1) + { + oPlayer = GetFirstPC(); + while (GetIsObjectValid(oPlayer)) + { + if (GetLocalInt(oPlayer, "cutscene_on")==1) + { + //FloatingTextStringOnCreature("gate 1", oPC); + AssignCommand(oPlayer, ClearAllActions()); + SetLocalInt(oMod, "cutscene_flag", 1); + RunCutscene(oPlayer); + return; + } + oPlayer = GetNextPC(); + } + } +else + { + ExecuteScript("nw_c2_default1", OBJECT_SELF); + } +} + + diff --git a/_module/nss/onattacked.nss b/_module/nss/onattacked.nss new file mode 100644 index 0000000..41f82e5 --- /dev/null +++ b/_module/nss/onattacked.nss @@ -0,0 +1,62 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_attacked +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default On Physically attacked script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// + +void main() +{ + object oMod = GetModule(); + object oPC = GetLastAttacker(); + string oAtt; + object oDest; + int oHit; + int oPCdam; + int oDam = GetTotalDamageDealt(); + if (GetIsPC(oPC)) + { + oHit = GetLocalInt(oPC, "pc_hit"); + oPCdam= GetLocalInt(oPC, "player_dd"); + ++oHit; + oPCdam+=oDam; + SetLocalInt(oPC, "pc_hit", oHit); + SetLocalInt(oPC, "player_dd", oPCdam); + + } + else + { + oAtt = GetResRef(GetLastAttacker()); + string oSelf = GetResRef(OBJECT_SELF); + oAtt+="_dd"; + oSelf+="_dt"; + int oSDTaken = GetLocalInt(oMod, oSelf); + int oUDTaken = oSDTaken+oDam; + int oSDDealt = GetLocalInt(oMod, oAtt); + int oUDDealt = oSDDealt+oDam; + SetLocalInt(oMod, oSelf, oUDTaken); + SetLocalInt(oMod, oAtt, oUDDealt); + } + + + + //-------------------------------------------------------------------------- + // GZ: 2003-10-16 + // Make Plot Creatures Ignore Attacks + //-------------------------------------------------------------------------- + if (GetPlotFlag(OBJECT_SELF)) + { + return; + } + + //-------------------------------------------------------------------------- + // Execute old NWN default AI code + //-------------------------------------------------------------------------- + + ExecuteScript("nw_c2_default5", OBJECT_SELF); +} diff --git a/_module/nss/onattacked_aoc.nss b/_module/nss/onattacked_aoc.nss new file mode 100644 index 0000000..870b0b6 --- /dev/null +++ b/_module/nss/onattacked_aoc.nss @@ -0,0 +1,224 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_attacked +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default On Physically attacked script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// +void JoinTeam(object oSelf, object oPC) +{ + int iDone = 0; + object oCreature; + object oTeam; + string sSide; + int iTeam = GetLocalInt(oPC, "team_bet"); + +oCreature = GetFirstObjectInArea(OBJECT_SELF); +while ((GetObjectType(oCreature)!=OBJECT_TYPE_CREATURE)|| + (!GetIsEnemy(oCreature, oSelf))||(GetIsPC(oCreature))|| + (GetTag(oCreature)=="starfall")||(GetTag(oCreature)=="reaper")) + { + oCreature =GetNextObjectInArea(OBJECT_SELF); + } +//FloatingTextStringOnCreature(GetName(OBJECT_SELF), oPC); +//FloatingTextStringOnCreature(GetName(oCreature), oPC); + +if ((GetResRef(oCreature)=="dragon1")||(GetResRef(oCreature)=="zep_halfdrafn001")|| + (GetResRef(oCreature)=="zep_marilithb001")||(GetResRef(oCreature)=="bard2")|| + (GetResRef(oCreature)=="zep_pitfiend001")||(GetResRef(oCreature)=="zep_balrog001")|| + (GetResRef(oCreature)=="dopple")||(GetResRef(oCreature)=="mistress2")|| + (GetResRef(oCreature)=="notime3")||(GetResRef(oCreature)=="notime4")|| + (GetResRef(oCreature)=="darcher")||(GetResRef(oCreature)=="death")) + { + if (iTeam==2) + { + sSide = "You have breached betting protocol by assisting your team"; + SetLocalInt(oPC, "pc_side", 2); + } + else if (iTeam==4) + { + sSide = "You have breached betting protocol by assisting your champion"; + SetLocalInt(oPC, "pc_side", 2); + } + else + { + sSide = "You have joined the Champions of Darkness"; + SetLocalInt(oPC, "pc_side", 2); + } + } +else + { + if (iTeam==1) + { + sSide = "You have breached betting protocol by assisting your team"; + SetLocalInt(oPC, "pc_side", 1); + } + else if (iTeam==4) + { + sSide = "You have breached betting protocol by assisting your champion"; + SetLocalInt(oPC, "pc_side", 1); + } + else + { + sSide = "You have joined the Champions of Light"; + SetLocalInt(oPC, "pc_side", 1); + } + } +AdjustReputation(oPC, oCreature, 100); +SetIsTemporaryFriend(oPC, oCreature); + +oTeam = GetFirstFactionMember(oCreature, FALSE); +while (GetIsObjectValid(oTeam)) + { + //AdjustReputation(oPC, oTeam, 100); + SetIsTemporaryFriend(oPC, oTeam, FALSE); + oTeam = GetNextFactionMember(oCreature, FALSE); + } +FloatingTextStringOnCreature(sSide, oPC); +} + +void main() +{ + object oMod = GetModule(); + object oPC = GetLastAttacker(); + int iDamage = GetTotalDamageDealt(); + string oAtt; + string oMon; + object oDest; + int oSwing; + int oHWswing; + int iSFswing; + int iFBswing; + int iFBhit; + int oMhit; + int oPCdam; + int oMiss; + int iCHswing; + int iArenaChall =GetLocalInt(oMod, "challenge"); + int iSFDuel =GetLocalInt(oMod, "duel_on"); + int iWarWon = GetLocalInt(oMod, "war_won"); + int iJoinSwitch = GetLocalInt(oPC, "join_switch"); + int iHwar = GetLocalInt(oMod, "hwar_on"); + int iFinalBattle = GetLocalInt(oPC, "final_on"); + int iTeam = GetLocalInt(oPC, "team_bet"); + + + //FloatingTextStringOnCreature("duel on: "+IntToString(GetLocalInt(oMod, "duel_on")), oPC); + if (GetIsPC(oPC)) + { + if ((iHwar==1)&&(iJoinSwitch!=1)&&(iWarWon!=1)) + { + JoinTeam(OBJECT_SELF, oPC); + SetLocalInt(oPC, "join_switch", 1); + } + if (iArenaChall==1) + { + iCHswing = GetLocalInt(oPC, "pc_CHswing"); + ++iCHswing; + SetLocalInt(oPC, "pc_CHswing", iCHswing); + } + if (iSFDuel==1) + { + iSFswing = GetLocalInt(oPC, "pc_SFswing"); + ++iSFswing; + SetLocalInt(oPC, "pc_SFswing", iSFswing); + //FloatingTextStringOnCreature("swing "+IntToString(GetLocalInt(oPC, "pc_SFswing")), oPC); + } + if (iFinalBattle==1) + { + //FloatingTextStringOnCreature("used "+GetName(GetLastWeaponUsed(oPC)), oPC); + iFBswing = GetLocalInt(oPC, "pc_FBswing"); + ++iFBswing; + SetLocalInt(oPC, "pc_FBswing", iFBswing); + } + if (iHwar==1) + { + oHWswing = GetLocalInt(oPC, "pc_HWswing"); + ++oHWswing; + SetLocalInt(oPC, "pc_HWswing", oHWswing); + } + oSwing = GetLocalInt(oPC, "pc_swing"); + ++oSwing; + SetLocalInt(oPC, "pc_swing", oSwing); + + //FloatingTextStringOnCreature("HWswing"+IntToString(oHWswing), oPC); + } + else + { + + oAtt = GetResRef(oPC); + oAtt+="_ss"; + oMiss = GetLocalInt(oMod, oAtt); + ++oMiss; + SetLocalInt(oMod, oAtt, oMiss); + if (iDamage!=0) + { + oAtt = GetResRef(oPC); + oMon = oAtt+"_hh"; + oMhit = GetLocalInt(oMod, oMon); + ++oMhit; + SetLocalInt(oMod, oMon, oMhit); + } + } + + + + //-------------------------------------------------------------------------- + // GZ: 2003-10-16 + // Make Plot Creatures Ignore Attacks + //-------------------------------------------------------------------------- + if (GetPlotFlag(OBJECT_SELF)) + { + return; + } + + //-------------------------------------------------------------------------- + // Execute old NWN default AI code + //-------------------------------------------------------------------------- + + ExecuteScript("nw_c2_default5", OBJECT_SELF); +} + +/*void JoinTeam(object oSelf, object oPC) +{ + object oCreature; + object oTeam; + string sSide; + + oCreature = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, PLAYER_CHAR_NOT_PC, oSelf, 1, + CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY); + if ((GetResRef(oCreature)=="dragon1")||(GetResRef(oCreature)=="zep_halfdrafn001")|| + (GetResRef(oCreature)=="zep_marilithb001")||(GetResRef(oCreature)=="bard2")|| + (GetResRef(oCreature)=="zep_pitfiend001")||(GetResRef(oCreature)=="zep_balrog001")|| + (GetResRef(oCreature)=="dopple")||(GetResRef(oCreature)=="mistress2")|| + (GetResRef(oCreature)=="notime3")||(GetResRef(oCreature)=="notime4")|| + (GetResRef(oCreature)=="darcher")||(GetResRef(oCreature)=="death")) + { + sSide = "You have joined the Champions of Darkness"+GetName(oCreature); + } +else + { + sSide = "You have joined the Champions of Light"+GetName(oCreature);; + } + + //if (GetIsObjectValid(oCreature)) + //{ + FloatingTextStringOnCreature("Valid", oPC); + AdjustReputation(oPC, oCreature, 100); + SetIsTemporaryFriend(oPC, oCreature); + + oTeam = GetFirstFactionMember(oCreature, FALSE); + while (!GetIsDead(oTeam)) + { + FloatingTextStringOnCreature(GetName(oTeam), oPC); + AdjustReputation(oPC, oTeam, 100); + SetIsTemporaryFriend(oPC, oTeam); + oTeam = GetNextFactionMember(oCreature, FALSE); + } + // } +FloatingTextStringOnCreature(sSide, oPC); +} diff --git a/_module/nss/ondamage_aoc.nss b/_module/nss/ondamage_aoc.nss new file mode 100644 index 0000000..a54a268 --- /dev/null +++ b/_module/nss/ondamage_aoc.nss @@ -0,0 +1,140 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondamage +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDamaged script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// + +void main() +{ + + object oMod = GetModule(); + object oPC = GetLastDamager(); + int oDam = GetTotalDamageDealt(); + string oAtt; + string oSelf; + string oMon; + object oDest; + int oHit; + int oMhit; + int oPCdam; + int oSDTaken; + int oUDTaken; + int oSDDealt; + int oUDDealt; + int iSFhit; + int iSFdam; + int iFBhit; + int iFBdam; + int oHWdam; + int oHWhit; + int iCHdam; + int iCHhit; + int iHwar = GetLocalInt(oMod, "hwar_on"); + int iArenaChall = GetLocalInt(oMod, "challenge"); + int iSFDuel = GetLocalInt(oMod, "duel_on"); + int iFinalBattle = GetLocalInt(oPC, "final_on"); + //FloatingTextStringOnCreature("duel on: "+IntToString(GetLocalInt(oMod, "duel_on")), oPC); + int oSwing = GetLocalInt(oPC, "pc_swing"); + int iCHswing = GetLocalInt(oPC, "pc_CHswing"); + int iSFswing = GetLocalInt(oPC, "pc_SFswing"); + int iFBswing = GetLocalInt(oPC, "pc_FBswing"); + int iHWswing = GetLocalInt(oPC, "pc_HWswing"); + + + + + + if (GetIsPC(oPC)) + { + oHit = GetLocalInt(oPC, "pc_hit"); + oPCdam = GetLocalInt(oPC, "player_dd"); + ++oHit; + oPCdam+=oDam; + if (oHit>oSwing){oHit=oSwing;} + SetLocalInt(oPC, "pc_hit", oHit); + SetLocalInt(oPC, "player_dd", oPCdam); + if (iHwar==1) + { + oHWdam = GetLocalInt(oPC, "pc_HWdam"); + oHWhit = GetLocalInt(oPC, "pc_HWhit"); + ++oHWhit; + oHWdam+=oDam; + if (oHWhit>iHWswing){oHWhit=iHWswing;} + SetLocalInt(oPC, "pc_HWhit", oHWhit); + SetLocalInt(oPC, "pc_HWdam", oHWdam); + } + if (iArenaChall==1) + { + iCHdam = GetLocalInt(oPC, "pc_CHdam"); + iCHhit = GetLocalInt(oPC, "pc_CHhit"); + iCHdam+=oDam; + ++iCHhit; + if (iCHhit>iCHswing){iCHhit=iCHswing;} + SetLocalInt(oPC, "pc_CHhit", iCHhit); + SetLocalInt(oPC, "pc_CHdam", iCHdam); + + } + if (iSFDuel==1) + { + iSFdam = GetLocalInt(oPC, "pc_SFdam"); + iSFhit = GetLocalInt(oPC, "pc_SFhit"); + iSFdam+=oDam; + ++iSFhit; + if (iSFhit>iSFswing){iSFhit=iSFswing;} + SetLocalInt(oPC, "pc_SFhit", iSFhit); + SetLocalInt(oPC, "pc_SFdam", iSFdam); + //FloatingTextStringOnCreature("dam "+IntToString(GetLocalInt(oPC, "pc_SFdam")), oPC); + //FloatingTextStringOnCreature("hit "+IntToString(GetLocalInt(oPC, "pc_SFhit")), oPC); + } + if (iFinalBattle==1) + { + iFBdam = GetLocalInt(oPC, "pc_FBdam"); + iFBhit = GetLocalInt(oPC, "pc_FBhit"); + iFBdam+=oDam; + ++iFBhit; + if (iFBhit>iFBswing){iFBhit=iFBswing;} + SetLocalInt(oPC, "pc_FBhit", iFBhit); + SetLocalInt(oPC, "pc_FBdam", iFBdam); + + } + //FloatingTextStringOnCreature("hit"+IntToString(iCHhit), oPC); + } + else + { + if ((iArenaChall==1)||(iSFDuel==1)){return;} + oAtt = GetResRef(oPC); + oSelf = GetResRef(OBJECT_SELF); + oAtt+="_dd"; + oSelf+="_dt"; + oSDTaken = GetLocalInt(oMod, oSelf); + oUDTaken = oSDTaken+oDam; + oSDDealt = GetLocalInt(oMod, oAtt); + oUDDealt = oSDDealt+oDam; + SetLocalInt(oMod, oSelf, oUDTaken); + SetLocalInt(oMod, oAtt, oUDDealt); + + } + + + + + //-------------------------------------------------------------------------- + // GZ: 2003-10-16 + // Make Plot Creatures Ignore Attacks + //-------------------------------------------------------------------------- + if (GetPlotFlag(OBJECT_SELF)) + { + return; + } + + //-------------------------------------------------------------------------- + // Execute old NWN default AI code + //-------------------------------------------------------------------------- + ExecuteScript("nw_c2_default6", OBJECT_SELF); +} diff --git a/_module/nss/ondeath_angel.nss b/_module/nss/ondeath_angel.nss new file mode 100644 index 0000000..1fbcf7a --- /dev/null +++ b/_module/nss/ondeath_angel.nss @@ -0,0 +1,19 @@ +void main() +{ +object oMod = GetModule(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("b_angeldeath", OBJECT_SELF); +} +else +{ +ExecuteScript("angeldeath", OBJECT_SELF); +} +} diff --git a/_module/nss/ondeath_angel1.nss b/_module/nss/ondeath_angel1.nss new file mode 100644 index 0000000..dfb1727 --- /dev/null +++ b/_module/nss/ondeath_angel1.nss @@ -0,0 +1,19 @@ +void main() +{ +object oMod = GetModule(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("b_angeldeath1", OBJECT_SELF); +} +else +{ +ExecuteScript("angeldeath1", OBJECT_SELF); +} +} diff --git a/_module/nss/ondeath_baal.nss b/_module/nss/ondeath_baal.nss new file mode 100644 index 0000000..1f3b504 --- /dev/null +++ b/_module/nss/ondeath_baal.nss @@ -0,0 +1,21 @@ + +void main() +{ +object oMod = GetModule(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("bossdeath2c", OBJECT_SELF); +} +else +{ +ExecuteScript("bossdeath2", OBJECT_SELF); +} +} + diff --git a/_module/nss/ondeath_balrog.nss b/_module/nss/ondeath_balrog.nss new file mode 100644 index 0000000..b16f628 --- /dev/null +++ b/_module/nss/ondeath_balrog.nss @@ -0,0 +1,19 @@ +void main() +{ +object oMod = GetModule(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("b_deathdeath1", OBJECT_SELF); +} +else +{ +ExecuteScript("deathdeath1", OBJECT_SELF); +} +} diff --git a/_module/nss/ondeath_bard.nss b/_module/nss/ondeath_bard.nss new file mode 100644 index 0000000..e998e6d --- /dev/null +++ b/_module/nss/ondeath_bard.nss @@ -0,0 +1,19 @@ +void main() +{ +object oMod = GetModule(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("b_deathdeath3", OBJECT_SELF); +} +else +{ +ExecuteScript("deathdeath3", OBJECT_SELF); +} +} diff --git a/_module/nss/ondeath_demon.nss b/_module/nss/ondeath_demon.nss new file mode 100644 index 0000000..0951026 --- /dev/null +++ b/_module/nss/ondeath_demon.nss @@ -0,0 +1,19 @@ +void main() +{ +object oMod = GetModule(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("b_firedeath1", OBJECT_SELF); +} +else +{ +ExecuteScript("firedeath1", OBJECT_SELF); +} +} diff --git a/_module/nss/ondeath_dragoon.nss b/_module/nss/ondeath_dragoon.nss new file mode 100644 index 0000000..43a602e --- /dev/null +++ b/_module/nss/ondeath_dragoon.nss @@ -0,0 +1,19 @@ +void main() +{ +object oMod = GetModule(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("b_deathdeath2", OBJECT_SELF); +} +else +{ +ExecuteScript("deathdeath2", OBJECT_SELF); +} +} diff --git a/_module/nss/ondeath_gold.nss b/_module/nss/ondeath_gold.nss new file mode 100644 index 0000000..28d483c --- /dev/null +++ b/_module/nss/ondeath_gold.nss @@ -0,0 +1,19 @@ +void main() +{ +object oMod = GetModule(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("b_golddeath", OBJECT_SELF); +} +else +{ +ExecuteScript("golddeath", OBJECT_SELF); +} +} diff --git a/_module/nss/ondeath_kamaji.nss b/_module/nss/ondeath_kamaji.nss new file mode 100644 index 0000000..077f912 --- /dev/null +++ b/_module/nss/ondeath_kamaji.nss @@ -0,0 +1,19 @@ +void main() +{ +object oMod = GetModule(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("b_balordeth1", OBJECT_SELF); +} +else +{ +ExecuteScript("balordeth1", OBJECT_SELF); +} +} diff --git a/_module/nss/ondeath_lucifer.nss b/_module/nss/ondeath_lucifer.nss new file mode 100644 index 0000000..b370bb4 --- /dev/null +++ b/_module/nss/ondeath_lucifer.nss @@ -0,0 +1,25 @@ +#include "spawner" + +void main() +{ +object oMod = GetModule(); +object oPC = GetLastKiller(); +int oDss1 = GetLocalInt(oMod, "d1"); +int oDss2 = GetLocalInt(oMod, "d2"); +int oDss3 = GetLocalInt(oMod, "d2a"); +int oDss4 = GetLocalInt(oMod, "d3"); +int oDss5 = GetLocalInt(oMod, "d4"); +int oDss6 = GetLocalInt(oMod, "d5"); + +if ((oDss1==1)||(oDss2==1)||(oDss3==1)||(oDss4==1)||(oDss5==1)|| + (oDss6==1)) +{ +//Message(4.0, "bossdeath3", oPC); +ExecuteScript("bossdeath3", OBJECT_SELF); +} +else +{ +//Message(4.0, "luciferdeath", oPC); +ExecuteScript("luciferdeath", OBJECT_SELF); +} +} diff --git a/_module/nss/ondeath_reaver.nss b/_module/nss/ondeath_reaver.nss new file mode 100644 index 0000000..4f38f75 --- /dev/null +++ b/_module/nss/ondeath_reaver.nss @@ -0,0 +1,19 @@ +void main() +{ +object oMod = GetModule(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("b_deathdeath4", OBJECT_SELF); +} +else +{ +ExecuteScript("deathdeath2a", OBJECT_SELF); +} +} diff --git a/_module/nss/ondeath_shiva.nss b/_module/nss/ondeath_shiva.nss new file mode 100644 index 0000000..4e0a04a --- /dev/null +++ b/_module/nss/ondeath_shiva.nss @@ -0,0 +1,24 @@ +#include "spawner" + +void main() +{ +object oMod = GetModule(); +object oPC = GetLastKiller(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); + + +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("b_balordeth1", OBJECT_SELF); +} +else +{ +ExecuteScript("balordeth1", OBJECT_SELF); +} +} diff --git a/_module/nss/ondeath_soul.nss b/_module/nss/ondeath_soul.nss new file mode 100644 index 0000000..5ab4026 --- /dev/null +++ b/_module/nss/ondeath_soul.nss @@ -0,0 +1,19 @@ +void main() +{ +object oMod = GetModule(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("b_souldeath", OBJECT_SELF); +} +else +{ +ExecuteScript("souldeath", OBJECT_SELF); +} +} diff --git a/_module/nss/ondeath_tyriel.nss b/_module/nss/ondeath_tyriel.nss new file mode 100644 index 0000000..14ed9d5 --- /dev/null +++ b/_module/nss/ondeath_tyriel.nss @@ -0,0 +1,23 @@ +#include "spawner" + +void main() +{ +object oMod = GetModule(); +object oPC = GetLastKiller(); +int oDss1 = GetLocalInt(oMod, "d1"); +int oDss2 = GetLocalInt(oMod, "d2"); +int oDss3 = GetLocalInt(oMod, "d2a"); +int oDss4 = GetLocalInt(oMod, "d3"); +int oDss5 = GetLocalInt(oMod, "d4"); +int oDss6 = GetLocalInt(oMod, "d5"); + +if ((oDss1==1)||(oDss2==1)||(oDss3==1)||(oDss4==1)||(oDss5==1)|| + (oDss6==1)) + { + ExecuteScript("tyrieldeath", OBJECT_SELF); + } +else + { + ExecuteScript("tyrieldeath2", OBJECT_SELF); + } +} diff --git a/_module/nss/ondeath_wurm.nss b/_module/nss/ondeath_wurm.nss new file mode 100644 index 0000000..c69fd8b --- /dev/null +++ b/_module/nss/ondeath_wurm.nss @@ -0,0 +1,19 @@ +void main() +{ +object oMod = GetModule(); +int od1 = GetLocalInt(oMod, "d1"); +int od2 = GetLocalInt(oMod, "d2"); +int od3 = GetLocalInt(oMod, "d2a"); +int od4 = GetLocalInt(oMod, "d3"); +int od5 = GetLocalInt(oMod, "d4"); +int od6 = GetLocalInt(oMod, "d5"); +if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)|| + (od6==1)) +{ +ExecuteScript("b_firedeath3", OBJECT_SELF); +} +else +{ +ExecuteScript("firedeath3", OBJECT_SELF); +} +} diff --git a/_module/nss/onpercept_dark.nss b/_module/nss/onpercept_dark.nss new file mode 100644 index 0000000..29fd4ab --- /dev/null +++ b/_module/nss/onpercept_dark.nss @@ -0,0 +1,234 @@ +#include "NW_I0_GENERIC" + + + +void NPCspeak(object oSelf) +{ + int iDice; + int iVoice; + iDice = d6(); + switch (iDice) + { + case 1: iVoice = VOICE_CHAT_ATTACK;break; + case 2: iVoice = VOICE_CHAT_BATTLECRY1;break; + case 3: iVoice = VOICE_CHAT_BATTLECRY2;break; + case 4: iVoice = VOICE_CHAT_BATTLECRY3;break; + case 5: iVoice = VOICE_CHAT_THREATEN;break; + case 6: iVoice = VOICE_CHAT_ATTACK;break; + } +AssignCommand(oSelf, PlayVoiceChat(iVoice)); +} + + + +void TeamSpeak() +{ +object oTeam2; +float oDelay; + +oTeam2 = GetFirstFactionMember(OBJECT_SELF, FALSE); + while (GetIsObjectValid(oTeam2)) + { + oDelay = IntToFloat(d3()+1); + DelayCommand(oDelay, NPCspeak(oTeam2)); + oTeam2 = GetNextFactionMember(OBJECT_SELF, FALSE); + } +} + + + +void SetFacingObject(object oTarget) +{ +vector vFace=GetPosition(oTarget); +SetFacingPoint(vFace); +} + + + +void AttackPlayer(object oPC) +{ +object oTeam; +object oMod = GetModule(); +SetLocalInt(oMod, "turn_flag", 1); + + oTeam = GetFirstFactionMember(OBJECT_SELF, FALSE); + while (GetIsObjectValid(oTeam)) + { + if (!GetIsDead(oTeam)) + { + //ClearAllActions(); + //AdjustReputation(oPC, oTeam, -100); + SetIsTemporaryEnemy(oPC, oTeam); + DetermineCombatRound(oPC); + ActionAttack(oPC); + } + oTeam = GetNextFactionMember(OBJECT_SELF, FALSE); + } +} + +void AllFacePC(object oPC) +{ +object oTeam2; + + oTeam2 = GetFirstFactionMember(OBJECT_SELF, FALSE); + while (GetIsObjectValid(oTeam2)) + { + + AssignCommand(oTeam2, SetFacingObject(oPC)); + oTeam2 = GetNextFactionMember(OBJECT_SELF, FALSE); + } + } + + + +void PercieveDark(object oPC) +{ + +object oMod = GetModule(); +object oTeam2; +int iDice; +int iDice2; +int iRate; +int iStatus; +int iTCount=0; + +float oDelay1 = 0.2; // First Animation after first line +float oDelay2 = 4.0; // PC reaction speach +float oDelay3 = 10.0; // NPC Attack cry speech +float oDelay4 = 12.0; // All NPCs face PC +float oDelay5 = 14.0; // Team war cries +float oDelay6 = 18.0; // Team attacks + +int iModCount; +int iFireFlag; +object oPC2 = GetFirstPC(); +iRate = GetLocalInt(oPC, "pc_HWswing"); +iStatus = GetLocalInt(oMod, "war_won"); + +//FloatingTextStringOnCreature(GetName(oPC), oPC); +//FloatingTextStringOnCreature(IntToString(iStatus), oPC); +//FloatingTextStringOnCreature(IntToString(iRate), oPC); + + +// Set flag to indicate that allies have turned on the PC + +SetLocalInt(oMod, "turn_flag", 1); + + + oTeam2 = GetFirstFactionMember(OBJECT_SELF, FALSE); + while (GetIsObjectValid(oTeam2)) + { + if (!GetIsDead(oTeam2)) + { + ++iTCount; + } + oTeam2 = GetNextFactionMember(OBJECT_SELF, FALSE); + } + + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("What treason is this? You join us but you don't fight!!!");}break; + case 2: {SpeakString("Didn't want to get your hands dirty eh?...You must be punished for your poor effort!");}break; + case 3: {SpeakString("Pfft! Call yourself a warrior!!! You just stood there and watched!");}break; + case 4: {SpeakString("Join those holy fools next time! Don't waste our time!!");}break; + case 5: {SpeakString("You must be punished for your complacency!");}break; + case 6: {SpeakString("Death comes to ye who is idle!!...and YOU were idle for most of the battle!");}break; + case 7: {SpeakString("You must pay for your treachery!");}break; + case 8: {SpeakString("Idle hands are his work *motions at Lord Lucifer* You must be punished in any case!!!");}break; + } + if ((GetResRef(OBJECT_SELF)=="death")|| (GetResRef(OBJECT_SELF)=="bard2")|| + (GetResRef(OBJECT_SELF)=="darcher")) + { + DelayCommand(oDelay1, AssignCommand(OBJECT_SELF, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_FORCEFUL, 1.0f, 5.0f))); + } + else + { + DelayCommand(oDelay1, AssignCommand(OBJECT_SELF, ActionPlayAnimation + (ANIMATION_FIREFORGET_TAUNT))); + } + + + iDice = d8(); + switch (iDice) + { + case 1: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("But...but...but...!")));}break; + case 2: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("Oh shit!!")));}break; + case 3: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("Oh crap!!!")));}break; + case 4: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("Give me a chance...I'll...I'll...!")));}break; + case 5: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("But...but...but...!")));}break; + case 6: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("um......Oops? *wry smile*")));}break; + case 7: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("ha ha ha...nice one guys...........guys?.....?")));}break; + case 8: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("Does this mean dinner's off?")));}break; + } + DelayCommand(18.0, AssignCommand(oPC, ClearAllActions())); + DelayCommand(18.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_PLEADING, 1.0f, 5.0f))); + + if (iTCount>1) + { + iDice = d10(); + switch (iDice) + { + case 1: {DelayCommand(oDelay3, SpeakString("Attaaaaack the traitor!")); + ;}break; + case 2: {DelayCommand(oDelay3, SpeakString("Kill the traitor!")); + ;}break; + case 3: {DelayCommand(oDelay3, SpeakString("Death to the betrayer!")); + ;}break; + case 4: {DelayCommand(oDelay3, SpeakString("Make the betrayer paaaaay!")); + ;}break; + case 5: {DelayCommand(oDelay3, SpeakString("Grrrrrraaahhhhh!!!!!!!!!")); + ;}break; + case 6: {DelayCommand(oDelay3, SpeakString("Kiiiiiiilllllllll!!")); + ;}break; + case 7: {DelayCommand(oDelay3, SpeakString("Off with the betrayor's head!")); + ;}break; + case 8: {DelayCommand(oDelay3, SpeakString("Make the traitor pay in blood!")); + ;}break; + case 9: {DelayCommand(oDelay3, SpeakString("Don't let the traitor escape!")); + ;}break; + case 10: {DelayCommand(oDelay3, SpeakString("Deeeeeath to the traitorrrr!!!")); + ;}break; + } + } + else + { + iDice = d10(); + switch (iDice) + { + case 1: {DelayCommand(oDelay3, SpeakString("Attaaaaack!")); + ;}break; + case 2: {DelayCommand(oDelay3, SpeakString("Time to diiiie!")); + ;}break; + case 3: {DelayCommand(oDelay3, SpeakString("Death to yoooou!")); + ;}break; + case 4: {DelayCommand(oDelay3, SpeakString("You will pay for your complacency!")); + ;}break; + case 5: {DelayCommand(oDelay3, SpeakString("Grrrrrraaahhhhh!!!!!!!!!")); + ;}break; + case 6: {DelayCommand(oDelay3, SpeakString("I'm gonna enjoy killing kill you!!!!!!")); + ;}break; + case 7: {DelayCommand(oDelay3, SpeakString("Off with your head!")); + ;}break; + case 8: {DelayCommand(oDelay3, SpeakString("This will cost you your life!")); + ;}break; + case 9: {DelayCommand(oDelay3, SpeakString("You may have escaped the battle, but you will not escape me!!!")); + ;}break; + case 10: {DelayCommand(oDelay3, SpeakString("Deeeeeath for yoooou!!!")); + ;}break; + } + } + + DelayCommand(oDelay4, AllFacePC(oPC)); + DelayCommand(oDelay5, TeamSpeak()); + DelayCommand(oDelay6, AttackPlayer(oPC)); + + + + +} + +//void main() {} + diff --git a/_module/nss/onpercept_light.nss b/_module/nss/onpercept_light.nss new file mode 100644 index 0000000..98fc79a --- /dev/null +++ b/_module/nss/onpercept_light.nss @@ -0,0 +1,153 @@ +#include "onpercept_dark" + + + +void PercieveLight(object oPC) +{ + +object oMod = GetModule(); +object oTeam2; +int iDice; +int iDice2; +int iRate; +int iStatus; +int iTCount=0; + + +float oDelay1 = 0.2; // First Animation after first line +float oDelay2 = 4.0; // PC reaction speach +float oDelay3 = 10.0; // NPC Attack cry speech +float oDelay4 = 2.0; // All NPCs face PC +float oDelay5 = 14.0; // Team war cries +float oDelay6 = 18.0; // Team attacks + + + +int iModCount; +int iFireFlag; +object oPC2 = GetFirstPC(); +iRate = GetLocalInt(oPC, "pc_HWswing"); +iStatus = GetLocalInt(oMod, "war_won"); + +//FloatingTextStringOnCreature(GetName(oPC), oPC2); +//FloatingTextStringOnCreature(IntToString(iStatus), oPC2); +//FloatingTextStringOnCreature(IntToString(iRate), oPC2); + +// Set flag to indicate that allies have turned on the PC + +SetLocalInt(oMod, "turn_flag", 1); + + + oTeam2 = GetFirstFactionMember(OBJECT_SELF, FALSE); + while (GetIsObjectValid(oTeam2)) + { + if (!GetIsDead(oTeam2)) + { + ++iTCount; + } + oTeam2 = GetNextFactionMember(OBJECT_SELF, FALSE); + } + iDice = d8(); + switch (iDice) + { + case 1: {SpeakString("Where is your honour? You join us but you don't fight!!!");}break; + case 2: {SpeakString("Idle hands are lucifer's tools!");}break; + case 3: {SpeakString("You have dishonoured yourself!!!");}break; + case 4: {SpeakString("Join those Dark fools next time! Don't waste our time!!");}break; + case 5: {SpeakString("You must be punished for your herecy!");}break; + case 6: {SpeakString("Death comes to ye who saves only yourself!!");}break; + case 7: {SpeakString("What wretched soul would abandon us like that?");}break; + case 8: {SpeakString("You have betrayed the fellowship of light!");}break; + } + if ((GetResRef(OBJECT_SELF)!="beli2")&& (GetResRef(OBJECT_SELF)!="dragon2")&& + (GetResRef(OBJECT_SELF)!="boss002")&&(GetResRef(OBJECT_SELF)!="hdrag2")) + { + DelayCommand(oDelay1, AssignCommand(OBJECT_SELF, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_FORCEFUL, 1.0f, 5.0f))); + } + else + { + DelayCommand(oDelay1, AssignCommand(OBJECT_SELF, ActionPlayAnimation + (ANIMATION_FIREFORGET_TAUNT))); + } + iDice = d8(); + switch (iDice) + { + case 1: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("You are guys of light right?....you know, forgiveness and all that?.......?!")));}break; + case 2: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("*Gulp*")));}break; + case 3: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("Holy crap!!!")));}break; + case 4: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("I will repent....just listen to my prayers....please....?")));}break; + case 5: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("um...can I offer you some gold perhaps....?!")));}break; + case 6: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("ah...my...um...mobile phone rang?...It was my mother.....mummy? *Gulp*")));}break; + case 7: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("aww c'mon guys.....let me off will ya?")));}break; + case 8: {DelayCommand(oDelay2, AssignCommand(oPC, ActionSpeakString("Well you never answered my prayers anyway!!!!")));}break; + } + oDelay2+=0.2; + DelayCommand(oDelay2, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_PLEADING, 1.0f, 5.0f))); + + if (iTCount>1) + { + iDice = d10(); + switch (iDice) + { + case 1: {DelayCommand(oDelay3, SpeakString("Attaaaaack the heretic!")); + ;}break; + case 2: {DelayCommand(oDelay3, SpeakString("Kill the imposter!")); + ;}break; + case 3: {DelayCommand(oDelay3, SpeakString("Stop the heretic!")); + ;}break; + case 4: {DelayCommand(oDelay3, SpeakString("EEExcercise the Deeeeemons!")); + ;}break; + case 5: {DelayCommand(oDelay3, SpeakString("In the name of the father...I kill you!")); + ;}break; + case 6: {DelayCommand(oDelay3, SpeakString("You must be put to death for your blasphemy!")); + ;}break; + case 7: {DelayCommand(oDelay3, SpeakString("Too late for prayers now, heretic!")); + ;}break; + case 8: {DelayCommand(oDelay3, SpeakString("We will wash away your sins...with your blood!!!")); + ;}break; + case 9: {DelayCommand(oDelay3, SpeakString("Don't let the heretic escape!")); + ;}break; + case 10: {DelayCommand(oDelay3, SpeakString("Quick, the heretic is heading for the terminator!!!")); + ;}break; + } + } + else + { + iDice = d10(); + switch (iDice) + { + case 1: {DelayCommand(oDelay3, SpeakString("I will now cleanse your black soul!")); + ;}break; + case 2: {DelayCommand(oDelay3, SpeakString("Time to meet my boss upstairs!")); + ;}break; + case 3: {DelayCommand(oDelay3, SpeakString("Now you must die!")); + ;}break; + case 4: {DelayCommand(oDelay3, SpeakString("I will now deliver your penance!")); + ;}break; + case 5: {DelayCommand(oDelay3, SpeakString("I now absolve you....of your life!!!")); + ;}break; + case 6: {DelayCommand(oDelay3, SpeakString("Your blood must be spilled!")); + ;}break; + case 7: {DelayCommand(oDelay3, SpeakString("This battlefield shall be desicrated with your blood!")); + ;}break; + case 8: {DelayCommand(oDelay3, SpeakString("For your sin you must die!")); + ;}break; + case 9: {DelayCommand(oDelay3, SpeakString("I shall destroy the sinner, Father! *looks up to the heavens")); + ;}break; + case 10: {DelayCommand(oDelay3, SpeakString("You must be relieved of your tainted soul!!!")); + ;}break; + } + } + + DelayCommand(oDelay4, AllFacePC(oPC)); + DelayCommand(oDelay5, TeamSpeak()); + DelayCommand(oDelay6, AttackPlayer(oPC)); + + + +} + +//void main() {} + diff --git a/_module/nss/onpercieve_dark.nss b/_module/nss/onpercieve_dark.nss new file mode 100644 index 0000000..6cc0be3 --- /dev/null +++ b/_module/nss/onpercieve_dark.nss @@ -0,0 +1,33 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_percept +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default On Perception script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// +//#include "onpercept_dark" + +void main() +{ + ExecuteScript("nw_c2_default2", OBJECT_SELF); +} +/* +{ +object oPC = GetLastPerceived(); +object oMod = GetModule(); +int iJswitch = GetLocalInt(oPC, "join_switch"); +int iStatus = GetLocalInt(oMod, "war_won"); +int iFlag = GetLocalInt(oMod, "perc_switch"); + + if ((iStatus==1)&&(iFlag!=1)&&(GetIsPC(oPC))&&(iJswitch==1)) + { + DelayCommand(5.0, SetLocalInt(oMod, "perc_switch", 1)); + DelayCommand(1.0, Percieve(oPC)); + } + else + +} diff --git a/_module/nss/onpercieve_light.nss b/_module/nss/onpercieve_light.nss new file mode 100644 index 0000000..7963c03 --- /dev/null +++ b/_module/nss/onpercieve_light.nss @@ -0,0 +1,34 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_percept +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default On Perception script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// +//#include "onpercept_light" + +void main() +{ + ExecuteScript("nw_c2_default2", OBJECT_SELF); +} + +/*{ +object oPC = GetLastPerceived(); +object oMod = GetModule(); +int iJswitch = GetLocalInt(oPC, "join_switch"); +int iStatus = GetLocalInt(oMod, "war_won"); +int iFlag = GetLocalInt(oMod, "perc_switch"); + + if ((iStatus==1)&&(iFlag!=1)&&(GetIsPC(oPC))&&(iJswitch==1)) + { + FloatingTextStringOnCreature("** percieved **", oPC); + DelayCommand(5.0, SetLocalInt(oMod, "perc_switch", 1)); + DelayCommand(1.0, PercieveLight(oPC)); + } + else + +} diff --git a/_module/nss/open_inv.nss b/_module/nss/open_inv.nss new file mode 100644 index 0000000..400f04a --- /dev/null +++ b/_module/nss/open_inv.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +OpenInventory(oPC, oPC); +} diff --git a/_module/nss/openstore.nss b/_module/nss/openstore.nss new file mode 100644 index 0000000..4153392 --- /dev/null +++ b/_module/nss/openstore.nss @@ -0,0 +1,16 @@ +#include "nw_i0_plot" +void main() +{ + object oPC = GetPCSpeaker(); + string sStoreTag = GetLocalString(oPC, "STORE"); + object oStore = GetNearestObjectByTag(sStoreTag); + if (GetObjectType(oStore) == OBJECT_TYPE_STORE) + { + gplotAppraiseOpenStore(oStore, oPC); + } + else + { + ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK); + } + DeleteLocalString(oPC, "STORE"); +} diff --git a/_module/nss/pally_slot_imbue.nss b/_module/nss/pally_slot_imbue.nss new file mode 100644 index 0000000..05a83ce --- /dev/null +++ b/_module/nss/pally_slot_imbue.nss @@ -0,0 +1,6 @@ +#include "spellslot_imbue" + +void main() +{ +SpellSlot(IP_CONST_CLASS_PALADIN); +} diff --git a/_module/nss/palorcler.nss b/_module/nss/palorcler.nss new file mode 100644 index 0000000..6c1dccc --- /dev/null +++ b/_module/nss/palorcler.nss @@ -0,0 +1,17 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if ((GetLevelByClass(CLASS_TYPE_CLERIC, oPC)==0)&& + (GetLevelByClass(CLASS_TYPE_PALADIN, oPC)==0)) +return FALSE; + +return TRUE; +} + diff --git a/_module/nss/par_imbue.nss b/_module/nss/par_imbue.nss new file mode 100644 index 0000000..0497853 --- /dev/null +++ b/_module/nss/par_imbue.nss @@ -0,0 +1,6 @@ +#include "immune_imbue" + +void main() +{ +ImmuneImbue(IP_CONST_IMMUNITYMISC_PARALYSIS); +} diff --git a/_module/nss/parry_imbue.nss b/_module/nss/parry_imbue.nss new file mode 100644 index 0000000..902ab0e --- /dev/null +++ b/_module/nss/parry_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_PARRY, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/partyleader.nss b/_module/nss/partyleader.nss new file mode 100644 index 0000000..95ba03f --- /dev/null +++ b/_module/nss/partyleader.nss @@ -0,0 +1,8 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + int iResult; + + iResult = (GetFactionLeader(oPC) == oPC); + return iResult; +} diff --git a/_module/nss/patt_imbue.nss b/_module/nss/patt_imbue.nss new file mode 100644 index 0000000..63c0a38 --- /dev/null +++ b/_module/nss/patt_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_POWERATTACK); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/pc_sit.nss b/_module/nss/pc_sit.nss new file mode 100644 index 0000000..09f4d1d --- /dev/null +++ b/_module/nss/pc_sit.nss @@ -0,0 +1,21 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +oTarget = OBJECT_SELF; + +AssignCommand(oPC, ActionSit(oTarget)); + +} + diff --git a/_module/nss/perf_imbue.nss b/_module/nss/perf_imbue.nss new file mode 100644 index 0000000..fea72fb --- /dev/null +++ b/_module/nss/perf_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_PERFORM, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/phoenix_rod.nss b/_module/nss/phoenix_rod.nss new file mode 100644 index 0000000..94a0a92 --- /dev/null +++ b/_module/nss/phoenix_rod.nss @@ -0,0 +1,290 @@ +void LightsOn() +{ + object oArea = GetArea(OBJECT_SELF); + int x,y; + vector vLoc; + location lLoc; + string sLight; + string sLight2; + for(x=0;x<32;x++) + { + for(y=0;y<32;y++) + { + vLoc = Vector(IntToFloat(x),IntToFloat(y),0.0); + lLoc = Location(oArea,vLoc,0.0); + sLight = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".1"; + sLight2 = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".2"; + SetTileMainLightColor(lLoc,GetLocalInt(oArea,sLight),GetLocalInt(oArea,sLight2)); + DeleteLocalInt(oArea,sLight); + DeleteLocalInt(oArea,sLight2); + sLight = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".3"; + sLight2 = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".4"; + SetTileSourceLightColor(lLoc,GetLocalInt(oArea,sLight),GetLocalInt(oArea,sLight2)); + DeleteLocalInt(oArea,sLight); + DeleteLocalInt(oArea,sLight2); + } + } + RecomputeStaticLighting(oArea); +} + + +void LightsOut() +{ + object oArea = GetArea(OBJECT_SELF); + int x,y; + vector vLoc; + location lLoc; + string sLight; + for(x=0;x<32;x++) + { + for(y=0;y<32;y++) + { + vLoc = Vector(IntToFloat(x),IntToFloat(y),0.0); + lLoc = Location(oArea,vLoc,0.0); + //Save Color first for all lights + sLight = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".1"; + SetLocalInt(oArea,sLight,GetTileMainLight1Color(lLoc)); + sLight = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".2"; + SetLocalInt(oArea,sLight,GetTileMainLight2Color(lLoc)); + sLight = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".3"; + SetLocalInt(oArea,sLight,GetTileSourceLight1Color(lLoc)); + sLight = "LIGHT" + IntToString(x) + "." + IntToString(y) + ".4"; + SetLocalInt(oArea,sLight,GetTileSourceLight2Color(lLoc)); + SetTileMainLightColor(lLoc,TILE_MAIN_LIGHT_COLOR_BLACK,TILE_MAIN_LIGHT_COLOR_BLACK); + SetTileSourceLightColor(lLoc,TILE_MAIN_LIGHT_COLOR_BLACK,TILE_MAIN_LIGHT_COLOR_BLACK); + } + } + RecomputeStaticLighting(oArea); +} + + +void CleanTargs() +{ + object oSTarget1 = GetObjectByTag("FireworksSTarget1"); + object oSTarget2 = GetObjectByTag("FireworksSTarget2"); + object oSTarget3 = GetObjectByTag("FireworksSTarget3"); + object oSTarget4 = GetObjectByTag("FireworksSTarget4"); + object oSTarget5 = GetObjectByTag("FireworksSTarget5"); + object oSTarget6 = GetObjectByTag("FireworksSTarget6"); + object oSTarget7 = GetObjectByTag("FireworksSTarget7"); + object oSTarget8 = GetObjectByTag("FireworksSTarget8"); + object oSTarget9 = GetObjectByTag("FireworksSTarget9"); + object oSTarget10 = GetObjectByTag("FireworksSTarget10"); + object oSTarget11 = GetObjectByTag("FireworksSTarget11"); + object oSTarget12 = GetObjectByTag("FireworksSTarget12"); + object oMTarget = GetObjectByTag("FireworksMTarget3"); + object oMTarget1 = GetObjectByTag("FireworksMTarget1"); + object oMTarget2 = GetObjectByTag("FireworksMTarget2"); + object oLTarget = GetObjectByTag("FireworksLTarget3"); + object oLTarget1 = GetObjectByTag("FireworksLTarget1"); + object oLTarget2 = GetObjectByTag("FireworksLTarget2"); + float fTimeDelay = 3.0; + DestroyObject(oSTarget1,fTimeDelay); + DestroyObject(oSTarget2,fTimeDelay); + DestroyObject(oSTarget3,fTimeDelay); + DestroyObject(oSTarget4,fTimeDelay); + DestroyObject(oSTarget5,fTimeDelay); + DestroyObject(oSTarget6,fTimeDelay); + DestroyObject(oSTarget7,fTimeDelay); + DestroyObject(oSTarget8,fTimeDelay); + DestroyObject(oSTarget9,fTimeDelay); + DestroyObject(oSTarget10,fTimeDelay); + DestroyObject(oSTarget11,fTimeDelay); + DestroyObject(oSTarget12,fTimeDelay); + DestroyObject(oMTarget,fTimeDelay); + DestroyObject(oMTarget1,fTimeDelay); + DestroyObject(oMTarget2,fTimeDelay); + DestroyObject(oLTarget,fTimeDelay); + DestroyObject(oLTarget1,fTimeDelay); + DestroyObject(oLTarget2,fTimeDelay); +} + + + + +void SetWrath() +{ +object oTarget = GetWaypointByTag("center_arena"); + object oArea = GetArea(oTarget); + float z = 0.0; + float x,y,tx,ty; + float fAngle = 30.0; + int nCount; + vector nTarget = GetPosition(oTarget); + vector nCreate; + string sTag; + tx = nTarget.x; + ty = nTarget.y; + + //12 small targets in a clock pattern + for(nCount = 1;nCount < 13;nCount++) + { + x = tx + (cos(fAngle)*10); + y = ty + (sin(fAngle)*10); + sTag = "FireworksSTarget" + IntToString(nCount); + CreateObject(OBJECT_TYPE_PLACEABLE,"fireworksstarget",Location(oArea,Vector(x,y,z),0.0),FALSE,sTag); + fAngle += 30.0; + } + + x = tx; + y = ty; + //3 Medium and Large targets same x,y different z + for (nCount = 1;nCount < 4;nCount++) + { + + sTag = "FireworksLTarget" + IntToString(nCount); + CreateObject(OBJECT_TYPE_PLACEABLE,"fireworksltarget",Location(oArea,Vector(x,y,z),0.0),FALSE,sTag); + z += 1.5; + } + +} + +void WrathCast(float oDelay, int eEffect, object oTarget) +{ +DelayCommand(oDelay, +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(eEffect), +oTarget)); +} + +void ApplyWrathDamage(int iAmount, int dType, int pType, object oCreature) +{ +effect eEffect = EffectDamage(iAmount, dType, pType); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +eEffect, oCreature); +} + +void WrathDamage(object oPC) +{ +object oArea = GetArea(OBJECT_SELF); +object oCreature = GetFirstObjectInArea(oArea); +int iDice; +string sString; +while (GetIsObjectValid(oCreature)) + { + + if ((GetObjectType(oCreature)==OBJECT_TYPE_CREATURE)&& + (!GetIsPC(oCreature))&&(GetIsEnemy(oCreature, oPC))&& + (GetTag(oCreature)!="starfall")&&(GetTag(oCreature)!="reaper")) + { + ApplyWrathDamage(500, DAMAGE_TYPE_FIRE, DAMAGE_POWER_NORMAL, oCreature); + ApplyWrathDamage(500, DAMAGE_TYPE_COLD, DAMAGE_POWER_NORMAL, oCreature); + ApplyWrathDamage(500, DAMAGE_TYPE_DIVINE, DAMAGE_POWER_NORMAL, oCreature); + ApplyWrathDamage(500, DAMAGE_TYPE_NEGATIVE, DAMAGE_POWER_NORMAL, oCreature); + ApplyWrathDamage(500, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_NORMAL, oCreature); + ApplyWrathDamage(150, DAMAGE_TYPE_BLUDGEONING, DAMAGE_POWER_ENERGY, oCreature); + + } + if ((GetTag(oCreature)=="starfall")&&(GetIsEnemy(oCreature, oPC))) + { + PlayVoiceChat(VOICE_CHAT_LAUGH, oCreature); + iDice = d6(); + switch (iDice) + { + case 1: {sString = "After years of posessing the Phoenix Rod, I have developed immunity to its power!"; + break;} + case 2: {sString = "Your rod won't work on me, fool!"; + break;} + case 3: {sString = "Well what do you know, the phoenix must like me! Gonna have to fight your own battle, whelp!"; + break;} + case 4: {sString = "It is useless against me, mortal!"; + break;} + case 5: {sString = "Need help defeating me do you?"; + break;} + case 6: {sString = "Try again, grasshopper!"; + break;} + } + AssignCommand(oCreature, SpeakString(sString)); + } + oCreature =GetNextObjectInArea(oArea); + } +} + +void WrathMessage (object oPC) +{ + +SendMessageToPC(oPC, "500 Fire Damage to all creatures"); +SendMessageToPC(oPC, "500 Cold Damage to all creatures"); +SendMessageToPC(oPC, "500 Divine Damage to all creatures"); +SendMessageToPC(oPC, "500 Negative Damage to all creatures"); +SendMessageToPC(oPC, "500 Positive Damage to all creatures"); +SendMessageToPC(oPC, "500 Magical Damage to all creatures"); +SendMessageToPC(oPC, "A massive shockwave does 150 instant damage to all"); +} +void WrathSpell(object oPC, float oDelay) +{ + +object oSTarget1 = GetObjectByTag("FireworksSTarget1"); +object oSTarget2 = GetObjectByTag("FireworksSTarget2"); +object oSTarget3 = GetObjectByTag("FireworksSTarget3"); +object oSTarget4 = GetObjectByTag("FireworksSTarget4"); +object oSTarget5 = GetObjectByTag("FireworksSTarget5"); +object oSTarget6 = GetObjectByTag("FireworksSTarget6"); +object oSTarget7 = GetObjectByTag("FireworksSTarget7"); +object oSTarget8 = GetObjectByTag("FireworksSTarget8"); +object oSTarget9 = GetObjectByTag("FireworksSTarget9"); +object oSTarget10 = GetObjectByTag("FireworksSTarget10"); +object oSTarget11 = GetObjectByTag("FireworksSTarget11"); +object oSTarget12 = GetObjectByTag("FireworksSTarget12"); +object oLTarget = GetObjectByTag("FireworksLTarget3"); +ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(488), + oLTarget); +WrathCast(oDelay+1.0, VFX_FNF_FIRESTORM, oSTarget1); +WrathCast(oDelay+1.2, VFX_IMP_DIVINE_STRIKE_HOLY , oSTarget2); +WrathCast(oDelay+1.4, VFX_FNF_MYSTICAL_EXPLOSION, oSTarget3); +WrathCast(oDelay+1.6, VFX_FNF_ICESTORM, oSTarget4); +WrathCast(oDelay+1.8, VFX_FNF_FIRESTORM, oSTarget5); +WrathCast(oDelay+2.0, VFX_IMP_DIVINE_STRIKE_HOLY, oSTarget6); +WrathCast(oDelay+2.2, VFX_FNF_MYSTICAL_EXPLOSION, oSTarget7); +WrathCast(oDelay+2.4, VFX_FNF_ICESTORM, oSTarget8); +WrathCast(oDelay+2.6, VFX_FNF_FIRESTORM, oSTarget9); +WrathCast(oDelay+2.8, VFX_IMP_DIVINE_STRIKE_HOLY, oSTarget10); +WrathCast(oDelay+3.0, VFX_FNF_MYSTICAL_EXPLOSION, oSTarget11); +WrathCast(oDelay+3.2, VFX_FNF_ICESTORM, oSTarget12); +WrathCast(oDelay+1.9, VFX_FNF_HOWL_MIND, oSTarget3); +WrathCast(oDelay+2.3, VFX_FNF_HOWL_MIND, oSTarget6); +WrathCast(oDelay+2.9, VFX_FNF_HOWL_MIND, oSTarget9); +WrathCast(oDelay+3.1, VFX_FNF_HOWL_MIND, oSTarget12); +} + +void Wrath(object oPC, float oDelay) +{ +effect eEffect = EffectDamage(150, DAMAGE_TYPE_BLUDGEONING, DAMAGE_POWER_ENERGY); +SendMessageToPC(oPC, "The Phoenix's wrath is released:"); +SetWrath(); +//DelayCommand(0.0, LightsOut()); +DelayCommand(0.5, WrathSpell(oPC, oDelay)); +DelayCommand(8.0, WrathDamage(oPC)); +DelayCommand(7.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC)); +DelayCommand(8.2, WrathMessage(oPC)); +DelayCommand(10.5, CleanTargs()); +//DelayCommand(11.0, LightsOn()); +} + + + +void main() +{ + +object oPC = OBJECT_SELF; +FloatingTextStringOnCreature("** Release the Phoenix-Dragon **", oPC); +object oMod = GetModule(); +int iTime; +int iValidArea = GetLocalInt(oPC, "pvp_area"); +float dWrathDelay = 5.0; +object oTarget = GetWaypointByTag("center_arena"); + +SetLocalInt(oMod, "WrathTime", 1); +if ((GetIsDay()==TRUE)||(GetIsDawn()==TRUE)) + {DelayCommand(dWrathDelay+300.0, SetLocalInt(oMod, "WrathTime", 0));} +if ((GetIsNight()==TRUE)||(GetIsDusk()==TRUE)) + {DelayCommand(dWrathDelay+420.0, SetLocalInt(oMod, "WrathTime", 0));} + +Wrath(oPC, dWrathDelay); + +} + + + + + diff --git a/_module/nss/pier_imbue.nss b/_module/nss/pier_imbue.nss new file mode 100644 index 0000000..a6b7a2f --- /dev/null +++ b/_module/nss/pier_imbue.nss @@ -0,0 +1,8 @@ +#include "imbue_include" +void main() +{ +SetLocalInt(GetPCSpeaker(), "pfire_ldb", 1); +ImbueWeapon(VFX_FNF_GAS_EXPLOSION_EVIL, IP_CONST_DAMAGETYPE_PIERCING); +} + + diff --git a/_module/nss/pier_imbue_arm.nss b/_module/nss/pier_imbue_arm.nss new file mode 100644 index 0000000..a2376db --- /dev/null +++ b/_module/nss/pier_imbue_arm.nss @@ -0,0 +1,7 @@ +#include "imbue_include" +void main() +{ +ImbueArmour(VFX_FNF_GREATER_RUIN, IP_CONST_DAMAGETYPE_PIERCING); +} + + diff --git a/_module/nss/place_bet.nss b/_module/nss/place_bet.nss new file mode 100644 index 0000000..914c203 --- /dev/null +++ b/_module/nss/place_bet.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +int iWager = GetLocalInt(oPC, "wager"); +int iTeam = GetLocalInt(oPC, "team_bet"); +} diff --git a/_module/nss/player_leave.nss b/_module/nss/player_leave.nss new file mode 100644 index 0000000..ad297b8 --- /dev/null +++ b/_module/nss/player_leave.nss @@ -0,0 +1,8 @@ +void main() +{ +object oMod = GetModule(); +int oNum; +int oPlayers = GetLocalInt(oMod, "num_players"); +--oNum; +SetLocalInt(oMod, "num_players", oNum); +} diff --git a/_module/nss/player_sign.nss b/_module/nss/player_sign.nss new file mode 100644 index 0000000..8baabf7 --- /dev/null +++ b/_module/nss/player_sign.nss @@ -0,0 +1,49 @@ + + +void main() +{ + object oPC = GetFirstPC(); + object oMod = GetModule(); + int oCount=0; + int iDied, iKilled, aScore; + int iRankNo = GetLocalInt(oPC, "status"); + string oRank; + PlaySound("gui_select"); + string SpeakText="\n================================\n"; + SpeakText+="Kills/Deaths Score/Rank\n"; + SpeakText+="--------------------------------\n"; + int oPlayers = GetLocalInt(oMod, "num_players"); + while (GetIsPC(oPC) == TRUE) + { + ++oCount; + iKilled = GetLocalInt (oPC,"iKilled"); + iDied = GetLocalInt (oPC,"iDied"); + aScore = GetLocalInt(oPC, "a_score"); + oRank = GetLocalString(oPC, "rank"); + SpeakText +=IntToString(oCount); + SpeakText +=". "; + SpeakText += GetName(oPC); + SpeakText += ": "; + SpeakText += IntToString(iKilled); + SpeakText += "/"; + SpeakText += IntToString(iDied); + SpeakText += " "; + if (aScore==0){SpeakText +="NCC";} + else{SpeakText += IntToString(aScore);} + SpeakText += "/"; + SpeakText += IntToString(iRankNo)+". "+oRank; + SpeakText += "\n"; + if (aScore==0){SpeakText +="* NCC: No Challenges Completed.\n";} + // Get the next player + oPC = GetNextPC(); + + } + SpeakText+="\n"; + SpeakText+="Total: "; + SpeakText+=IntToString(oPlayers); + if (oPlayers==1) + {SpeakText+=" player.";} + else {SpeakText+=" players.";} + + SpeakString(SpeakText); +} diff --git a/_module/nss/po_imbue25.nss b/_module/nss/po_imbue25.nss new file mode 100644 index 0000000..141e0ff --- /dev/null +++ b/_module/nss/po_imbue25.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "podone_1", 1); +DamRes(12,2); +} diff --git a/_module/nss/po_imbue252.nss b/_module/nss/po_imbue252.nss new file mode 100644 index 0000000..0dee5b5 --- /dev/null +++ b/_module/nss/po_imbue252.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "podone_12", 1); +DamRes2(12,2); +} diff --git a/_module/nss/podone_1.nss b/_module/nss/podone_1.nss new file mode 100644 index 0000000..4744265 --- /dev/null +++ b/_module/nss/podone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/podone_12.nss b/_module/nss/podone_12.nss new file mode 100644 index 0000000..700eb79 --- /dev/null +++ b/_module/nss/podone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/podred_imbue_2.nss b/_module/nss/podred_imbue_2.nss new file mode 100644 index 0000000..fe5a1df --- /dev/null +++ b/_module/nss/podred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "podone_2", 1); +DamRes(12,3); +} diff --git a/_module/nss/podred_imbue_22.nss b/_module/nss/podred_imbue_22.nss new file mode 100644 index 0000000..8c52cab --- /dev/null +++ b/_module/nss/podred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "podone_22", 1); +DamRes2(12,3); +} diff --git a/_module/nss/podred_imbue_3.nss b/_module/nss/podred_imbue_3.nss new file mode 100644 index 0000000..89a9329 --- /dev/null +++ b/_module/nss/podred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "podone_3", 1); +DamRes(12,4); +} diff --git a/_module/nss/podred_imbue_32.nss b/_module/nss/podred_imbue_32.nss new file mode 100644 index 0000000..2be7bc8 --- /dev/null +++ b/_module/nss/podred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "pomax_reduction2", 1); +SetLocalInt(oPC, "podone_32", 1); +DamRes2(12,4); +} diff --git a/_module/nss/podred_imbue_4.nss b/_module/nss/podred_imbue_4.nss new file mode 100644 index 0000000..ecfd1af --- /dev/null +++ b/_module/nss/podred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "podone_4", 1); +DamRes(12,5); +} diff --git a/_module/nss/podred_imbue_5.nss b/_module/nss/podred_imbue_5.nss new file mode 100644 index 0000000..04c1b87 --- /dev/null +++ b/_module/nss/podred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "podone_5", 1); +SetLocalInt(oPC, "pomax_reduction", 1); +DamRes(12,6); +} diff --git a/_module/nss/poed_1.nss b/_module/nss/poed_1.nss new file mode 100644 index 0000000..6052640 --- /dev/null +++ b/_module/nss/poed_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "podone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/poed_12.nss b/_module/nss/poed_12.nss new file mode 100644 index 0000000..89d348a --- /dev/null +++ b/_module/nss/poed_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "podone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/pois_imbue.nss b/_module/nss/pois_imbue.nss new file mode 100644 index 0000000..b035f43 --- /dev/null +++ b/_module/nss/pois_imbue.nss @@ -0,0 +1,6 @@ +#include "immune_imbue" + +void main() +{ +ImmuneImbue(IP_CONST_IMMUNITYMISC_POISON); +} diff --git a/_module/nss/pomax_reached.nss b/_module/nss/pomax_reached.nss new file mode 100644 index 0000000..846b250 --- /dev/null +++ b/_module/nss/pomax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "pomax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pomax_reached1.nss b/_module/nss/pomax_reached1.nss new file mode 100644 index 0000000..78b8e0c --- /dev/null +++ b/_module/nss/pomax_reached1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "pomax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pomax_reached12.nss b/_module/nss/pomax_reached12.nss new file mode 100644 index 0000000..1d5ff04 --- /dev/null +++ b/_module/nss/pomax_reached12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "pomax_reduction2") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pomax_reached2.nss b/_module/nss/pomax_reached2.nss new file mode 100644 index 0000000..99e4b1f --- /dev/null +++ b/_module/nss/pomax_reached2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "pomax_reduction2") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pool_off.nss b/_module/nss/pool_off.nss new file mode 100644 index 0000000..8918c38 --- /dev/null +++ b/_module/nss/pool_off.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName pool_off +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/12/2004 3:05:24 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "pool_state") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pool_on.nss b/_module/nss/pool_on.nss new file mode 100644 index 0000000..b061725 --- /dev/null +++ b/_module/nss/pool_on.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName pool_off +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/12/2004 3:05:24 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "pool_state") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pool_switch.nss b/_module/nss/pool_switch.nss new file mode 100644 index 0000000..e38d375 --- /dev/null +++ b/_module/nss/pool_switch.nss @@ -0,0 +1,40 @@ +#include "nw_i0_generic" +void main() +{ + +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +int oState = GetLocalInt(oMod, "pswitch_state"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +effect eEffect2 = EffectVisualEffect(VFX_NONE); +if (oState!=1) +{ +SetLocalInt(oMod, "pool_state", 1); +SetLocalInt(oMod, "fountain_state", 1); +DelayCommand(0.0, PlaySound("sce_negative")); +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Rejeuvination facilities now inaccessable", oPC)); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP1); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP2); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP3); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP4); +} +else +{ +SetLocalInt(oMod, "pool_state", 0); +SetLocalInt(oMod, "fountain_state", 0); +DelayCommand(0.0, PlaySound("sce_positive")); +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Rejeuvination facilities now accessable", oPC)); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect2, oP1); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect2, oP2); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect2, oP3); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect2, oP4); +} +} diff --git a/_module/nss/poolrestore.nss b/_module/nss/poolrestore.nss new file mode 100644 index 0000000..ac540c9 --- /dev/null +++ b/_module/nss/poolrestore.nss @@ -0,0 +1,23 @@ +#include "x0_i0_petrify" + +void PoolRestore(object oPC) +{ +AssignCommand(oPC, PlaySound("sce_negative")); +object oMod = GetModule(); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +object oLever1 = GetObjectByTag("pool_lever"); +object oLever2 = GetObjectByTag("fount_lever"); +effect eEffect2 = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); +RemoveEffectOfType(oP1, GetEffectType(eEffect2)); +RemoveEffectOfType(oP2, GetEffectType(eEffect2)); +RemoveEffectOfType(oP3, GetEffectType(eEffect2)); +RemoveEffectOfType(oP4, GetEffectType(eEffect2)); +SetLocalInt(oMod, "fountain_state", 0); +SetLocalInt(oMod, "pool_state", 0); +} +//void main (){} diff --git a/_module/nss/pools.nss b/_module/nss/pools.nss new file mode 100644 index 0000000..d7c65de --- /dev/null +++ b/_module/nss/pools.nss @@ -0,0 +1,23 @@ +#include "x0_i0_petrify" +void ResetPools(object oPC) +{ + + object oMod = GetModule(); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oPC, PlaySound("sce_negative")); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); +} +void main(){} diff --git a/_module/nss/pored1_1.nss b/_module/nss/pored1_1.nss new file mode 100644 index 0000000..029fe95 --- /dev/null +++ b/_module/nss/pored1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "podone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "podone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/pored1_12.nss b/_module/nss/pored1_12.nss new file mode 100644 index 0000000..0dc9453 --- /dev/null +++ b/_module/nss/pored1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "podone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "podone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/pored_0.nss b/_module/nss/pored_0.nss new file mode 100644 index 0000000..5e0361f --- /dev/null +++ b/_module/nss/pored_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/pored_02.nss b/_module/nss/pored_02.nss new file mode 100644 index 0000000..e860dee --- /dev/null +++ b/_module/nss/pored_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/pored_10.nss b/_module/nss/pored_10.nss new file mode 100644 index 0000000..a55541c --- /dev/null +++ b/_module/nss/pored_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pored_11.nss b/_module/nss/pored_11.nss new file mode 100644 index 0000000..95484a4 --- /dev/null +++ b/_module/nss/pored_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "podone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/pored_12.nss b/_module/nss/pored_12.nss new file mode 100644 index 0000000..7e7a164 --- /dev/null +++ b/_module/nss/pored_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "podone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/pored_2.nss b/_module/nss/pored_2.nss new file mode 100644 index 0000000..e2dc1a6 --- /dev/null +++ b/_module/nss/pored_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "podone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/pored_22.nss b/_module/nss/pored_22.nss new file mode 100644 index 0000000..bcc5fdd --- /dev/null +++ b/_module/nss/pored_22.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "podone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/pored_3.nss b/_module/nss/pored_3.nss new file mode 100644 index 0000000..f788228 --- /dev/null +++ b/_module/nss/pored_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pored_32.nss b/_module/nss/pored_32.nss new file mode 100644 index 0000000..be27135 --- /dev/null +++ b/_module/nss/pored_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pored_4.nss b/_module/nss/pored_4.nss new file mode 100644 index 0000000..ac032da --- /dev/null +++ b/_module/nss/pored_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "podone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/pored_42.nss b/_module/nss/pored_42.nss new file mode 100644 index 0000000..3cb341f --- /dev/null +++ b/_module/nss/pored_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "podone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/pored_6.nss b/_module/nss/pored_6.nss new file mode 100644 index 0000000..c7b131f --- /dev/null +++ b/_module/nss/pored_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "podone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/pored_62.nss b/_module/nss/pored_62.nss new file mode 100644 index 0000000..13c56a3 --- /dev/null +++ b/_module/nss/pored_62.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "podone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/pored_7.nss b/_module/nss/pored_7.nss new file mode 100644 index 0000000..a4179a7 --- /dev/null +++ b/_module/nss/pored_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pored_8.nss b/_module/nss/pored_8.nss new file mode 100644 index 0000000..97bf875 --- /dev/null +++ b/_module/nss/pored_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "podone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/pored_9.nss b/_module/nss/pored_9.nss new file mode 100644 index 0000000..2ba252f --- /dev/null +++ b/_module/nss/pored_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "podone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "podone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/portal.nss b/_module/nss/portal.nss new file mode 100644 index 0000000..c115ceb --- /dev/null +++ b/_module/nss/portal.nss @@ -0,0 +1,21 @@ +#include "in_g_cutscene" + +void main() +{ +object oPC = GetLastUsedBy(); +object oArea = GetArea(OBJECT_SELF); + + +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); +effect eEffect3 = EffectVisualEffect(VFX_FNF_PWSTUN); +effect eEffect2 = EffectVisualEffect(VFX_IMP_ELEMENTAL_PROTECTION); + +DelayCommand(0.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, +eEffect, GetLocation(oPC))); +DelayCommand(0.1, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, +eEffect2, GetLocation(oPC))); +DelayCommand(0.2, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, +eEffect3, GetLocation(oPC))); + +GestaltJump(1.5, oPC, OBJECT_INVALID, "fw_portal_wp" ); +} diff --git a/_module/nss/portal2.nss b/_module/nss/portal2.nss new file mode 100644 index 0000000..c136660 --- /dev/null +++ b/_module/nss/portal2.nss @@ -0,0 +1,118 @@ + +#include "in_g_cutscene" + +void main() +{ +object oMod = GetModule(); +object oPC = GetLastUsedBy(); +if (!GetIsPC(oPC)) return; + +object oArea = GetArea(OBJECT_SELF); +object oTarget = GetWaypointByTag("fw_portal_wp"); + +int oS0 = GetLocalInt(oMod, "challenge"); +int oS1 = GetLocalInt(oMod, "sw_hw"); +int oS2 = GetLocalInt(oMod, "sw_dr"); +int oS3 = GetLocalInt(oMod, "sw_bl"); +int oS4 = GetLocalInt(oMod, "sw_pf"); +int oS5 = GetLocalInt(oMod, "sw_df"); +int oS6 = GetLocalInt(oMod, "sw_pm"); +int oS7 = GetLocalInt(oMod, "sw_bm"); +int oS8 = GetLocalInt(oMod, "sw_lm"); +int oS9 = GetLocalInt(oMod, "sw_ll"); +int oS10 = GetLocalInt(oMod, "sw_xx"); +int nInt = GetLocalInt(oMod, "challenge"); +int nInt2 = GetLocalInt(oMod, "duel_on"); +int oChest = GetLocalInt(oMod, "chest_here"); +int oGameMode = GetLocalInt(oMod, "gamemode"); +int oModMode = GetLocalInt(oMod, "mod_mode"); +int iHwar = GetLocalInt(oMod, "hwar_on"); +int iStatus = GetLocalInt(oMod, "war_won"); + +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); +effect eEffect3 = EffectVisualEffect(VFX_FNF_PWSTUN); +effect eEffect2 = EffectVisualEffect(VFX_IMP_ELEMENTAL_PROTECTION); +int Scene = GetLocalInt(oPC, "cutscene_on"); + +if (oModMode!=1) + { + if (iHwar==1) + { + if (iStatus!=1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("** Holy War in progress **", oPC); + return; + } + else if (iStatus==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must clear the arena first.", oPC); + return; + } + } + if (oChest!=1) + { + if ((nInt!=1)&&(nInt2!=1)&&(oS1!=1)&&(oS2!=1)&&(oS3!=1) + &&(oS4!=1)&&(oS5!=1)&&(oS6!=1)&&(oS7!=1)&&(oS8!=1) + &&(oS9!=1)&&(oS0!=1)&&(oS10!=1)) + { + object oMonster = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC); + if ((!GetIsEnemy(oPC, oMonster))||(oMonster==OBJECT_INVALID)) + { + if (Scene!=1) + { + DelayCommand(0.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oPC))); + DelayCommand(0.1, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect2, GetLocation(oPC))); + DelayCommand(0.2, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect3, GetLocation(oPC))); + GestaltPlayMusic(0.3, oArea, TRUE, TRACK_ORIGINAL); + GestaltPlayMusic(0.4, oArea, FALSE); + GestaltJump(1.5, oPC, OBJECT_INVALID, "lake_wp" ); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("The portal doesn't respond.", oPC); + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your battle first.", oPC); + return; + } + } + else + { + if (nInt==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish the super challenge first.", oPC); + } + else if (nInt2==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your duel first.", oPC); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your battle first.", oPC); + } + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must open the reward chest first.", oPC); + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("This feature is univalible in campaign manager mode.", oPC); + } +} diff --git a/_module/nss/portal3.nss b/_module/nss/portal3.nss new file mode 100644 index 0000000..ae1dc82 --- /dev/null +++ b/_module/nss/portal3.nss @@ -0,0 +1,110 @@ + +#include "in_g_cutscene" + +void main() +{ +object oMod = GetModule(); +object oPC = GetLastUsedBy(); +if (!GetIsPC(oPC)) return; + +object oArea = GetArea(OBJECT_SELF); +object oTarget = GetWaypointByTag("start_player_wp"); + +int oS0 = GetLocalInt(oMod, "challenge"); +int oS1 = GetLocalInt(oMod, "sw_hw"); +int oS2 = GetLocalInt(oMod, "sw_dr"); +int oS3 = GetLocalInt(oMod, "sw_bl"); +int oS4 = GetLocalInt(oMod, "sw_pf"); +int oS5 = GetLocalInt(oMod, "sw_df"); +int oS6 = GetLocalInt(oMod, "sw_pm"); +int oS7 = GetLocalInt(oMod, "sw_bm"); +int oS8 = GetLocalInt(oMod, "sw_lm"); +int oS9 = GetLocalInt(oMod, "sw_ll"); +int oS10 = GetLocalInt(oMod, "sw_xx"); +int nInt = GetLocalInt(oMod, "challenge"); +int nInt2 = GetLocalInt(oMod, "duel_on"); +int oChest = GetLocalInt(oMod, "chest_here"); +int oGameMode = GetLocalInt(oMod, "gamemode"); +int oModMode = GetLocalInt(oMod, "mod_mode"); +int iHwar = GetLocalInt(oMod, "hwar_on"); +int iStatus = GetLocalInt(oMod, "war_won"); + +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); +effect eEffect3 = EffectVisualEffect(VFX_FNF_PWSTUN); +effect eEffect2 = EffectVisualEffect(VFX_IMP_ELEMENTAL_PROTECTION); + + +if (oModMode!=1) + { + if (iHwar==1) + { + if (iStatus!=1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("** Holy War in progress **", oPC); + return; + } + else if (iStatus==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must clear the arena first.", oPC); + return; + } + } + if (oChest!=1) + { + if ((nInt!=1)&&(nInt2!=1)&&(oS1!=1)&&(oS2!=1)&&(oS3!=1) + &&(oS4!=1)&&(oS5!=1)&&(oS6!=1)&&(oS7!=1)&&(oS8!=1) + &&(oS9!=1)&&(oS0!=1)&&(oS10!=1)) + { + object oMonster = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC); + if ((!GetIsEnemy(oPC, oMonster))||(oMonster==OBJECT_INVALID)) + { + DelayCommand(0.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oPC))); + DelayCommand(0.1, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect2, GetLocation(oPC))); + DelayCommand(0.2, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect3, GetLocation(oPC))); + GestaltPlayMusic(0.3, oArea, TRUE, TRACK_ORIGINAL); + GestaltPlayMusic(0.4, oArea, FALSE); + GestaltJump(1.5, oPC, OBJECT_INVALID, "start_player_wp"); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your battle first.", oPC); + return; + } + } + else + { + if (nInt==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish the super challenge first.", oPC); + } + else if (nInt2==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your duel first.", oPC); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your battle first.", oPC); + } + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must open the reward chest first.", oPC); + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("This feature is univalible in campaign manager mode.", oPC); + } +} diff --git a/_module/nss/portal4.nss b/_module/nss/portal4.nss new file mode 100644 index 0000000..095aa39 --- /dev/null +++ b/_module/nss/portal4.nss @@ -0,0 +1,30 @@ + +#include "in_g_cutscene" + +void main() +{ +object oMod = GetModule(); +object oPC = GetLastUsedBy(); +object oArea = GetArea(oPC); +object oTarget = GetObjectByTag("portal002"); +if (!GetIsPC(oPC)) return; + + + +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); +effect eEffect3 = EffectVisualEffect(VFX_FNF_PWSTUN); +effect eEffect2 = EffectVisualEffect(VFX_IMP_ELEMENTAL_PROTECTION); + + + + DelayCommand(0.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oPC))); + DelayCommand(0.1, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect2, GetLocation(oPC))); + DelayCommand(0.2, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect3, GetLocation(oPC))); + GestaltPlayMusic(0.3, oArea, TRUE, TRACK_ORIGINAL); + GestaltPlayMusic(0.4, oArea, FALSE); + GestaltJump(1.5, oPC, OBJECT_INVALID, "arena_home"); + DestroyObject(oTarget, 3.0); +} diff --git a/_module/nss/portal5.nss b/_module/nss/portal5.nss new file mode 100644 index 0000000..92ad849 --- /dev/null +++ b/_module/nss/portal5.nss @@ -0,0 +1,30 @@ + +#include "in_g_cutscene" + +void main() +{ +object oMod = GetModule(); +object oPC = GetLastUsedBy(); +if (!GetIsPC(oPC)) return; + +object oArea = GetArea(OBJECT_SELF); +object oTarget = GetWaypointByTag("start_player_wp"); + + + +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); +effect eEffect3 = EffectVisualEffect(VFX_FNF_PWSTUN); +effect eEffect2 = EffectVisualEffect(VFX_IMP_ELEMENTAL_PROTECTION); + + + DelayCommand(0.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oPC))); + DelayCommand(0.1, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect2, GetLocation(oPC))); + DelayCommand(0.2, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect3, GetLocation(oPC))); + GestaltPlayMusic(0.3, oArea, TRUE, TRACK_ORIGINAL); + GestaltPlayMusic(0.4, oArea, FALSE); + GestaltJump(1.5, oPC, OBJECT_INVALID, "pc_final_wp"); + +} diff --git a/_module/nss/portal_final.nss b/_module/nss/portal_final.nss new file mode 100644 index 0000000..025d157 --- /dev/null +++ b/_module/nss/portal_final.nss @@ -0,0 +1,110 @@ + +#include "in_g_cutscene" + +void main() +{ +object oMod = GetModule(); +object oPC = GetLastUsedBy(); +if (!GetIsPC(oPC)) return; + +object oArea = GetArea(OBJECT_SELF); +object oTarget = GetWaypointByTag("fw_portal_wp"); + +int oS0 = GetLocalInt(oMod, "challenge"); +int oS1 = GetLocalInt(oMod, "sw_hw"); +int oS2 = GetLocalInt(oMod, "sw_dr"); +int oS3 = GetLocalInt(oMod, "sw_bl"); +int oS4 = GetLocalInt(oMod, "sw_pf"); +int oS5 = GetLocalInt(oMod, "sw_df"); +int oS6 = GetLocalInt(oMod, "sw_pm"); +int oS7 = GetLocalInt(oMod, "sw_bm"); +int oS8 = GetLocalInt(oMod, "sw_lm"); +int oS9 = GetLocalInt(oMod, "sw_ll"); +int oS10 = GetLocalInt(oMod, "sw_xx"); +int nInt = GetLocalInt(oMod, "challenge"); +int nInt2 = GetLocalInt(oMod, "duel_on"); +int oChest = GetLocalInt(oMod, "chest_here"); +int oGameMode = GetLocalInt(oMod, "gamemode"); +int oModMode = GetLocalInt(oMod, "mod_mode"); +int iHwar = GetLocalInt(oMod, "hwar_on"); +int iStatus = GetLocalInt(oMod, "war_won"); + +effect eEffect = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); +effect eEffect3 = EffectVisualEffect(VFX_FNF_PWSTUN); +effect eEffect2 = EffectVisualEffect(VFX_IMP_ELEMENTAL_PROTECTION); + + +if (oModMode!=1) + { + if (iHwar==1) + { + if (iStatus!=1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("** Holy War in progress **", oPC); + return; + } + else if (iStatus==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must clear the arena first.", oPC); + return; + } + } + if (oChest!=1) + { + if ((nInt!=1)&&(nInt2!=1)&&(oS1!=1)&&(oS2!=1)&&(oS3!=1) + &&(oS4!=1)&&(oS5!=1)&&(oS6!=1)&&(oS7!=1)&&(oS8!=1) + &&(oS9!=1)&&(oS0!=1)&&(oS10!=1)) + { + object oMonster = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC); + if ((!GetIsEnemy(oPC, oMonster))||(oMonster==OBJECT_INVALID)) + { + DelayCommand(0.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oPC))); + DelayCommand(0.1, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect2, GetLocation(oPC))); + DelayCommand(0.2, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect3, GetLocation(oPC))); + GestaltPlayMusic(0.3, oArea, TRUE, TRACK_ORIGINAL); + GestaltPlayMusic(0.4, oArea, FALSE); + GestaltJump(1.5, oPC, OBJECT_INVALID, "pc_final_wp" ); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your battle first.", oPC); + return; + } + } + else + { + if (nInt==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish the super challenge first.", oPC); + } + else if (nInt2==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your duel first.", oPC); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your battle first.", oPC); + } + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must open the reward chest first.", oPC); + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("This feature is univalible in campaign manager mode.", oPC); + } +} diff --git a/_module/nss/pos_imbue.nss b/_module/nss/pos_imbue.nss new file mode 100644 index 0000000..180b595 --- /dev/null +++ b/_module/nss/pos_imbue.nss @@ -0,0 +1,8 @@ +#include "imbue_include" +void main() +{ +SetLocalInt(GetPCSpeaker(), "posfire_ldb", 1); +ImbueWeapon(VFX_IMP_DIVINE_STRIKE_FIRE, IP_CONST_DAMAGETYPE_POSITIVE); +} + + diff --git a/_module/nss/pos_imbue_arm.nss b/_module/nss/pos_imbue_arm.nss new file mode 100644 index 0000000..cf37298 --- /dev/null +++ b/_module/nss/pos_imbue_arm.nss @@ -0,0 +1,7 @@ +#include "imbue_include" +void main() +{ +ImbueArmour(VFX_IMP_DIVINE_STRIKE_FIRE, IP_CONST_DAMAGETYPE_POSITIVE); +} + + diff --git a/_module/nss/potion_shop.nss b/_module/nss/potion_shop.nss new file mode 100644 index 0000000..7157c81 --- /dev/null +++ b/_module/nss/potion_shop.nss @@ -0,0 +1,21 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +oTarget = GetObjectByTag("potion_shop"); +PlaySound("it_potion"); +OpenStore(oTarget, oPC, 0, 0); + +} + diff --git a/_module/nss/pr_max_reache212.nss b/_module/nss/pr_max_reache212.nss new file mode 100644 index 0000000..db82cd2 --- /dev/null +++ b/_module/nss/pr_max_reache212.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName pr_max_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:51:48 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prmax_reduction22") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pr_max_reache22.nss b/_module/nss/pr_max_reache22.nss new file mode 100644 index 0000000..b8f1874 --- /dev/null +++ b/_module/nss/pr_max_reache22.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName pr_max_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:51:48 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prmax_reduction22") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pr_max_reached.nss b/_module/nss/pr_max_reached.nss new file mode 100644 index 0000000..70f8aec --- /dev/null +++ b/_module/nss/pr_max_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName pr_max_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:51:48 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prmax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pr_max_reached1.nss b/_module/nss/pr_max_reached1.nss new file mode 100644 index 0000000..480596b --- /dev/null +++ b/_module/nss/pr_max_reached1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName pr_max_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:51:48 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prmax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pr_max_reached12.nss b/_module/nss/pr_max_reached12.nss new file mode 100644 index 0000000..96610e4 --- /dev/null +++ b/_module/nss/pr_max_reached12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName pr_max_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:51:48 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prmax_reduction2") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/pr_max_reached2.nss b/_module/nss/pr_max_reached2.nss new file mode 100644 index 0000000..8bc925b --- /dev/null +++ b/_module/nss/pr_max_reached2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName pr_max_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:51:48 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prmax_reduction2") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/prc_pwondeath.nss b/_module/nss/prc_pwondeath.nss new file mode 100644 index 0000000..d41b165 --- /dev/null +++ b/_module/nss/prc_pwondeath.nss @@ -0,0 +1,15 @@ +//::////////////////////////////////////////////////// +//:: prc_pwondeath.nss +/* + Catch-all OnDeath event handler for NPCs. + + Tracks player kills. + */ +//::////////////////////////////////////////////////// +void main() +{ + object oPC = GetLastKiller(); + int oKil = GetLocalInt(oPC, "iKilled"); + oKil = oKil +1; + SetLocalInt(oPC, "iKilled", oKil); +} \ No newline at end of file diff --git a/_module/nss/prdone_1.nss b/_module/nss/prdone_1.nss new file mode 100644 index 0000000..15f03b4 --- /dev/null +++ b/_module/nss/prdone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/prdone_12.nss b/_module/nss/prdone_12.nss new file mode 100644 index 0000000..2a377d2 --- /dev/null +++ b/_module/nss/prdone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/prdred_imbue_1.nss b/_module/nss/prdred_imbue_1.nss new file mode 100644 index 0000000..6e589e5 --- /dev/null +++ b/_module/nss/prdred_imbue_1.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "prdone_1", 1); +DamRes(11,2); +} diff --git a/_module/nss/prdred_imbue_12.nss b/_module/nss/prdred_imbue_12.nss new file mode 100644 index 0000000..a38e5e5 --- /dev/null +++ b/_module/nss/prdred_imbue_12.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "prdone_12", 1); +DamRes2(11,2); +} diff --git a/_module/nss/prdred_imbue_132.nss b/_module/nss/prdred_imbue_132.nss new file mode 100644 index 0000000..ff46b78 --- /dev/null +++ b/_module/nss/prdred_imbue_132.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "prdone_32", 1); +SetLocalInt(oPC, "prmax_reduction22", 1); +DamRes2(11,4); +} diff --git a/_module/nss/prdred_imbue_2.nss b/_module/nss/prdred_imbue_2.nss new file mode 100644 index 0000000..5415d06 --- /dev/null +++ b/_module/nss/prdred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "prdone_2", 1); +DamRes(11, 3); +} diff --git a/_module/nss/prdred_imbue_22.nss b/_module/nss/prdred_imbue_22.nss new file mode 100644 index 0000000..087c4de --- /dev/null +++ b/_module/nss/prdred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "prdone_22", 1); +DamRes2(11, 3); +} diff --git a/_module/nss/prdred_imbue_3.nss b/_module/nss/prdred_imbue_3.nss new file mode 100644 index 0000000..edce9bc --- /dev/null +++ b/_module/nss/prdred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "prdone_3", 1); +DamRes(11,4); +} diff --git a/_module/nss/prdred_imbue_32.nss b/_module/nss/prdred_imbue_32.nss new file mode 100644 index 0000000..38d3efe --- /dev/null +++ b/_module/nss/prdred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "prdone_32", 1); +SetLocalInt(oPC, "prmax_reduction2", 1); +DamageReduction(11,4); +} diff --git a/_module/nss/prdred_imbue_4.nss b/_module/nss/prdred_imbue_4.nss new file mode 100644 index 0000000..5049cd8 --- /dev/null +++ b/_module/nss/prdred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "prdone_4", 1); +DamRes(11,5); +} diff --git a/_module/nss/prdred_imbue_5.nss b/_module/nss/prdred_imbue_5.nss new file mode 100644 index 0000000..2f22951 --- /dev/null +++ b/_module/nss/prdred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "prdone_5", 1); +SetLocalInt(oPC, "prmax_reduction", 1); +DamRes(11,6); +} diff --git a/_module/nss/prred1_1.nss b/_module/nss/prred1_1.nss new file mode 100644 index 0000000..c3d8b81 --- /dev/null +++ b/_module/nss/prred1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "prdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "prdone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred1_12.nss b/_module/nss/prred1_12.nss new file mode 100644 index 0000000..423ea4b --- /dev/null +++ b/_module/nss/prred1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "prdone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "prdone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred_0.nss b/_module/nss/prred_0.nss new file mode 100644 index 0000000..6cb9391 --- /dev/null +++ b/_module/nss/prred_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/prred_02.nss b/_module/nss/prred_02.nss new file mode 100644 index 0000000..8da47e3 --- /dev/null +++ b/_module/nss/prred_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/prred_1.nss b/_module/nss/prred_1.nss new file mode 100644 index 0000000..1a72e9a --- /dev/null +++ b/_module/nss/prred_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "prdone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred_10.nss b/_module/nss/prred_10.nss new file mode 100644 index 0000000..4a9adff --- /dev/null +++ b/_module/nss/prred_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/prred_11.nss b/_module/nss/prred_11.nss new file mode 100644 index 0000000..0453540 --- /dev/null +++ b/_module/nss/prred_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "prdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred_12.nss b/_module/nss/prred_12.nss new file mode 100644 index 0000000..1eb1de4 --- /dev/null +++ b/_module/nss/prred_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "prdone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred_2.nss b/_module/nss/prred_2.nss new file mode 100644 index 0000000..b1d8dc3 --- /dev/null +++ b/_module/nss/prred_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "prdone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred_212.nss b/_module/nss/prred_212.nss new file mode 100644 index 0000000..7a536b5 --- /dev/null +++ b/_module/nss/prred_212.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "prdone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred_22.nss b/_module/nss/prred_22.nss new file mode 100644 index 0000000..037b2d6 --- /dev/null +++ b/_module/nss/prred_22.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "prdone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred_3.nss b/_module/nss/prred_3.nss new file mode 100644 index 0000000..73e080d --- /dev/null +++ b/_module/nss/prred_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/prred_32.nss b/_module/nss/prred_32.nss new file mode 100644 index 0000000..aa449c6 --- /dev/null +++ b/_module/nss/prred_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/prred_4.nss b/_module/nss/prred_4.nss new file mode 100644 index 0000000..f95196b --- /dev/null +++ b/_module/nss/prred_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "prdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred_42.nss b/_module/nss/prred_42.nss new file mode 100644 index 0000000..9a70124 --- /dev/null +++ b/_module/nss/prred_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "prdone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred_6.nss b/_module/nss/prred_6.nss new file mode 100644 index 0000000..5ab6d2b --- /dev/null +++ b/_module/nss/prred_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "prdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred_62.nss b/_module/nss/prred_62.nss new file mode 100644 index 0000000..9cecd97 --- /dev/null +++ b/_module/nss/prred_62.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "prdone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred_7.nss b/_module/nss/prred_7.nss new file mode 100644 index 0000000..5337242 --- /dev/null +++ b/_module/nss/prred_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/prred_8.nss b/_module/nss/prred_8.nss new file mode 100644 index 0000000..ba51f06 --- /dev/null +++ b/_module/nss/prred_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "prdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/prred_9.nss b/_module/nss/prred_9.nss new file mode 100644 index 0000000..8f764fd --- /dev/null +++ b/_module/nss/prred_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "prdone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "prdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/purge_data.nss b/_module/nss/purge_data.nss new file mode 100644 index 0000000..5ba2e0f --- /dev/null +++ b/_module/nss/purge_data.nss @@ -0,0 +1,14 @@ +#include "strip" + +void main() +{ +object oPC = GetPCSpeaker(); +location lLocation = GetLocation(oPC); +SetLocalInt(oPC, "has_ticket", 1); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(VFX_IMP_DEATH), oPC); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(VFX_FNF_SUMMON_EPIC_UNDEAD), oPC); +DataStrip(oPC); +FloatingTextStringOnCreature("Data Tokens Removed", oPC); +} diff --git a/_module/nss/purge_items.nss b/_module/nss/purge_items.nss new file mode 100644 index 0000000..b8cd319 --- /dev/null +++ b/_module/nss/purge_items.nss @@ -0,0 +1,11 @@ +#include "strip" + +void main() +{ +object oPC = GetPCSpeaker(); +location lLocation = GetLocation(oPC); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(VFX_IMP_DEATH), oPC); +InvStrip(oPC); +FloatingTextStringOnCreature("Items Removed", oPC); +} diff --git a/_module/nss/purge_items2.nss b/_module/nss/purge_items2.nss new file mode 100644 index 0000000..08f83e5 --- /dev/null +++ b/_module/nss/purge_items2.nss @@ -0,0 +1,16 @@ +#include "strip" + +void main() +{ +object oPC = GetPCSpeaker(); +location lLocation = GetLocation(oPC); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(VFX_IMP_DEATH), oPC); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(VFX_IMP_SLOW), oPC); +int oGold = GetGold(oPC); +TakeGoldFromCreature(oGold, oPC, FALSE); +InvStrip(oPC); +GearStrip(oPC); +FloatingTextStringOnCreature("Items and Gold Removed", oPC); +} diff --git a/_module/nss/purge_items3.nss b/_module/nss/purge_items3.nss new file mode 100644 index 0000000..a6f0ef5 --- /dev/null +++ b/_module/nss/purge_items3.nss @@ -0,0 +1,15 @@ +#include "strip" + +void main() +{ +object oPC = GetPCSpeaker(); +location lLocation = GetLocation(oPC); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(VFX_IMP_DEATH), oPC); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(VFX_IMP_SLOW), oPC); +int oGold = GetGold(oPC); +TakeGoldFromCreature(oGold, oPC, FALSE); +InvStrip(oPC); +FloatingTextStringOnCreature("Items and Gold Removed", oPC); +} diff --git a/_module/nss/purge_items_all.nss b/_module/nss/purge_items_all.nss new file mode 100644 index 0000000..08619e3 --- /dev/null +++ b/_module/nss/purge_items_all.nss @@ -0,0 +1,12 @@ +#include "strip" + +void main() +{ +object oPC = GetPCSpeaker(); +location lLocation = GetLocation(oPC); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(VFX_IMP_DEATH), oPC); +InvStrip(oPC); +GearStrip(oPC); +FloatingTextStringOnCreature("Items Removed", oPC); +} diff --git a/_module/nss/purge_items_slot.nss b/_module/nss/purge_items_slot.nss new file mode 100644 index 0000000..56cb676 --- /dev/null +++ b/_module/nss/purge_items_slot.nss @@ -0,0 +1,11 @@ +#include "strip" + +void main() +{ +object oPC = GetPCSpeaker(); +location lLocation = GetLocation(oPC); +ApplyEffectToObject(DURATION_TYPE_INSTANT, +EffectVisualEffect(VFX_IMP_DEATH), oPC); +GearStrip(oPC); +FloatingTextStringOnCreature("Items Removed", oPC); +} diff --git a/_module/nss/pvote.nss b/_module/nss/pvote.nss new file mode 100644 index 0000000..6d48a0a --- /dev/null +++ b/_module/nss/pvote.nss @@ -0,0 +1,22 @@ +#include "nw_i0_generic" +void main() +{ + +object oMod = GetModule(); +object oCrystal1 = GetObjectByTag("crystal1"); +object oCrystal2 = GetObjectByTag("crystal2"); +object oCrystal3 = GetObjectByTag("crystal3"); +int oVote = GetLocalInt(oMod, "pvote"); +int oPlayers = GetLocalInt(oMod, "num_players"); +oVote=oVote+1; +SetLocalInt(oMod, "pvote", oVote); +int oResult = GetLocalInt(oMod, "pvote"); +if (oResult==oPlayers) +{ +AssignCommand(oCrystal1, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oCrystal2, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +AssignCommand(oCrystal3, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +SetLocalInt(oMod, "lever_state", 1); +RecomputeStaticLighting(GetArea(OBJECT_SELF)); +} +} diff --git a/_module/nss/pvp_exit.nss b/_module/nss/pvp_exit.nss new file mode 100644 index 0000000..6e5712f --- /dev/null +++ b/_module/nss/pvp_exit.nss @@ -0,0 +1,9 @@ +void main() +{ +object oPC = GetExitingObject(); + +if (!GetIsPC(oPC))return; + +SetImmortal(oPC, FALSE); +SetLocalInt(oPC, "pvp_area", 1); +} diff --git a/_module/nss/pvp_set.nss b/_module/nss/pvp_set.nss new file mode 100644 index 0000000..d71ccbf --- /dev/null +++ b/_module/nss/pvp_set.nss @@ -0,0 +1,134 @@ +#include "spawner" +#include "scorekeep" + + + +void main() +{ + +object oPC = GetEnteringObject(); + + AddJournalQuestEntry("JRNL_XPCHART", 1, oPC, FALSE, FALSE, FALSE); + AddJournalQuestEntry("JRNL_LA_BUYOFF", 1, oPC, FALSE, FALSE, FALSE); + AddJournalQuestEntry("JRNL_PRC8", 1, oPC, FALSE, FALSE, FALSE); + + +object oArea = GetArea(oPC); +SetImmortal(oPC, TRUE); +SetIsTemporaryFriend(oPC, GetObjectByTag("starfall")); +object oMod = GetModule(); +int oNum; +int oBeenBefore = 0; +if (GetItemPossessedBy(oPC, "nordock_token")!=OBJECT_INVALID){SetLocalInt(oMod, "nord_mode", 1);} +int oPCs = GetLocalInt(oMod, "num_players"); +++oNum; +SetLocalInt(oMod, "num_players", oNum); +if (oNum>1) +{ + Place("crystal_pvp", "crystal_pvp_wp"); +} +SetLocalInt(oPC, "hwscore", 1); +int oAlign = GetAlignmentGoodEvil(oPC); +int nInt = GetLocalInt(oMod, "initiate"); +if (nInt!=1) +{ + SetLocalInt(oMod, "initiate", 1); + if (oAlign==ALIGNMENT_EVIL) + { + SetLocalInt(oMod, "gamemode",1); + spawner (oPC, "mephisto", 2); + } + else + { + SetLocalInt(oMod, "gamemode",0); + spawner (oPC, "starfall", 2); + } +DelayCommand(8.0, AssignCommand(GetObjectByTag("starfall"), + PlayAnimation(ANIMATION_FIREFORGET_GREETING))); +DelayCommand(8.2, AssignCommand(GetObjectByTag("starfall"), + PlayVoiceChat(VOICE_CHAT_HELLO))); +DelayCommand(3.0, GetScore(oPC)); +DelayCommand(2.0, SetPlotFlag(GetObjectByTag("starfall"), TRUE)); +} +if (GetItemPossessedBy(oPC, "chapterstone")!=OBJECT_INVALID) + { + oBeenBefore=1; + } +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"xill")==1) + { + oBeenBefore=1; + } + oItem = GetNextItemInInventory(oPC); + } +if (oBeenBefore!=1) + { + object oGear = GetItemInSlot(INVENTORY_SLOT_ARMS, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_BELT, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_BOLTS, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_BOOTS, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_CHEST, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_CLOAK, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_HEAD, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_LEFTRING, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_NECK, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_RIGHTRING, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + object oStuff = GetFirstItemInInventory(oPC); + while(GetIsObjectValid(oStuff)) + { + DestroyObject(oStuff); + oStuff = GetNextItemInInventory(oPC); + } + DelayCommand(7.0, FloatingTextStringOnCreature("Welcome, " + GetName(oPC) + "! You have been stripped of all your belongings in accordance with the Arena policy", oPC)); + CreateItemOnObject("sxillwa", oPC, 1); + CreateItemOnObject("bzedyer", oPC, 1); + CreateItemOnObject("trqcva", oPC, 1); + CreateItemOnObject("fgnpde", oPC, 1); + CreateItemOnObject("qxcove", oPC, 1); + CreateItemOnObject("bsntfn", oPC, 1); + CreateItemOnObject("ahuvpw", oPC, 1); + CreateItemOnObject("arscod", oPC, 1); + CreateItemOnObject("deitzy", oPC, 1); + int nInt=GetGold(oPC); + AssignCommand(oPC, TakeGoldFromCreature(nInt, oPC, TRUE)); + + } + else + { + DelayCommand(6.0, FloatingTextStringOnCreature("Welcome back, " + GetName(oPC), oPC)); + + //Debugging + //GiveGoldToCreature(oPC,1000000); + //CreateItemOnObject("cursering", oPC, 1); + //DelayCommand(6.0, GiveGoldToCreature(oPC, 5000)); + //CreateItemOnObject("it_mboots007", oPC, 1); + //CreateItemOnObject("testkama", oPC, 1); + //CreateItemOnObject("testkama", oPC, 1); + //CreateItemOnObject("trqcva", oPC, 1); + //CreateItemOnObject("fgnpde", oPC, 1); + //CreateItemOnObject("debugsw", oPC, 1); + + } + DelayCommand(5.0, HouseKeep(oPC)); + DelayCommand(5.4, HouseKeep2(oPC)); + DelayCommand(5.8, HouseKeep3(oPC)); + DelayCommand(5.8, HouseKeep4(oPC)); + DelayCommand(6.0, HouseKeep5(oPC)); + DelayCommand(3.0, AddJournalQuestEntry("enter", 1, oPC, FALSE, FALSE)); +} diff --git a/_module/nss/pvp_set2.nss b/_module/nss/pvp_set2.nss new file mode 100644 index 0000000..f764057 --- /dev/null +++ b/_module/nss/pvp_set2.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetEnteringObject(); + +if (!GetIsPC(oPC))return; + +SetImmortal(oPC, TRUE); +SetIsTemporaryFriend(oPC, GetObjectByTag("starfall")); +SetLocalInt(oPC, "pvp_area", 0); +} diff --git a/_module/nss/pvp_set_duelmode.nss b/_module/nss/pvp_set_duelmode.nss new file mode 100644 index 0000000..478a848 --- /dev/null +++ b/_module/nss/pvp_set_duelmode.nss @@ -0,0 +1,70 @@ +#include "spawner" +#include "scorekeep" + + + +void main() +{ +object oPC = GetEnteringObject(); +SetImmortal(oPC, TRUE); +SetIsTemporaryFriend(oPC, GetObjectByTag("starfall")); +object oMod = GetModule(); +int oNum; +int oBeenBefore = 0; +int oPCs = GetLocalInt(oMod, "num_players"); +++oNum; +SetLocalInt(oMod, "num_players", oNum); +int oAlign = GetAlignmentGoodEvil(oPC); +int nInt = GetLocalInt(oMod, "initiate"); +if (nInt!=1) +{ + SetLocalInt(oMod, "initiate", 1); + if (oAlign==ALIGNMENT_EVIL) + { + SetLocalInt(oMod, "gamemode",1); + spawner (oPC, "mephisto", 2); + } + else + { + SetLocalInt(oMod, "gamemode",0); + spawner (oPC, "starfall", 2); + } +GetScore(oPC); +DelayCommand(2.0, SetPlotFlag(GetObjectByTag("starfall"), TRUE)); +} +if (GetItemPossessedBy(oPC, "chapterstone")!=OBJECT_INVALID) + { + oBeenBefore=1; + } +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"xill")==1) + { + oBeenBefore=1; + } + oItem = GetNextItemInInventory(oPC); + } +if (oBeenBefore!=1) + { + DelayCommand(7.0, FloatingTextStringOnCreature("Welcome, " + GetName(oPC) + "! You have been stripped of all your belongings in accordance with the Arena policy", oPC)); + CreateItemOnObject("sxillwa", oPC, 1); + CreateItemOnObject("bzedyer", oPC, 1); + CreateItemOnObject("trqcva", oPC, 1); + CreateItemOnObject("fgnpde", oPC, 1); + CreateItemOnObject("qxcove", oPC, 1); + CreateItemOnObject("bsntfn", oPC, 1); + CreateItemOnObject("ahuvpw", oPC, 1); + CreateItemOnObject("arscod", oPC, 1); + CreateItemOnObject("deitzy", oPC, 1); + int nInt=GetGold(oPC); + AssignCommand(oPC, TakeGoldFromCreature(nInt, oPC, TRUE)); + } +else + { + DelayCommand(6.0, FloatingTextStringOnCreature("Welcome back, " + GetName(oPC), oPC)); + } +DelayCommand(5.0, HouseKeep(oPC)); +DelayCommand(5.4, HouseKeep2(oPC)); +DelayCommand(3.0, AddJournalQuestEntry("enter", 1, oPC, FALSE, FALSE)); +} diff --git a/_module/nss/r_ab1.nss b/_module/nss/r_ab1.nss new file mode 100644 index 0000000..1c1c9e0 --- /dev/null +++ b/_module/nss/r_ab1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName r_ab1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 2:50:08 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "rangedab1") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/r_ab122.nss b/_module/nss/r_ab122.nss new file mode 100644 index 0000000..95900b3 --- /dev/null +++ b/_module/nss/r_ab122.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName r_ab1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 2:50:08 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "rangedab2") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/r_ab1222.nss b/_module/nss/r_ab1222.nss new file mode 100644 index 0000000..210c64b --- /dev/null +++ b/_module/nss/r_ab1222.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName r_ab1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 2:50:08 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "rangedab2") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/r_ab13.nss b/_module/nss/r_ab13.nss new file mode 100644 index 0000000..a1e6aaa --- /dev/null +++ b/_module/nss/r_ab13.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName r_ab1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 2:50:08 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "rangedab3") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/r_ab133.nss b/_module/nss/r_ab133.nss new file mode 100644 index 0000000..7c5a3c5 --- /dev/null +++ b/_module/nss/r_ab133.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName r_ab1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 2:50:08 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "rangedab1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/r_ab1333.nss b/_module/nss/r_ab1333.nss new file mode 100644 index 0000000..8d0e93d --- /dev/null +++ b/_module/nss/r_ab1333.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName r_ab1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 2:50:08 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "rangedab3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/r_ab1t1.nss b/_module/nss/r_ab1t1.nss new file mode 100644 index 0000000..7c5a3c5 --- /dev/null +++ b/_module/nss/r_ab1t1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName r_ab1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 2:50:08 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "rangedab1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/r_pool_switch.nss b/_module/nss/r_pool_switch.nss new file mode 100644 index 0000000..6db0c89 --- /dev/null +++ b/_module/nss/r_pool_switch.nss @@ -0,0 +1,33 @@ +#include "x0_i0_petrify" +#include "nw_i0_generic" +void main() +{ + +object oTarget; +object oTarget1; +object oPC = GetLastUsedBy(); +object oMod = GetModule(); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +int oState = GetLocalInt(oMod, "pool_state"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +effect eEffect2 = EffectVisualEffect(VFX_NONE); +if (oState!=1) +{ +SetLocalInt(oMod, "pool_state", 1); +DelayCommand(0.0, PlaySound("sce_positive")); +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Rejeuvination pools now inaccessable", oPC)); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP1); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP2); +} +else +{ +SetLocalInt(oMod, "pool_state", 0); +DelayCommand(0.0, PlaySound("sce_negative")); +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Rejeuvination pools now accessable", oPC)); +RemoveEffectOfType(oP1, GetEffectType(eEffect)); +RemoveEffectOfType(oP2, GetEffectType(eEffect)); +} +} diff --git a/_module/nss/rab1.nss b/_module/nss/rab1.nss new file mode 100644 index 0000000..f52eee9 --- /dev/null +++ b/_module/nss/rab1.nss @@ -0,0 +1,7 @@ +#include "att_imbue" + +void main() +{ +SetLocalInt(GetPCSpeaker(), "rangedab1", 1); +AttackBonus(1); +} diff --git a/_module/nss/rab12.nss b/_module/nss/rab12.nss new file mode 100644 index 0000000..0cb8668 --- /dev/null +++ b/_module/nss/rab12.nss @@ -0,0 +1,7 @@ +#include "att_imbue" + +void main() +{ +SetLocalInt(GetPCSpeaker(), "rangedab2", 1); +AttackBonus(2); +} diff --git a/_module/nss/rab2.nss b/_module/nss/rab2.nss new file mode 100644 index 0000000..24eb77c --- /dev/null +++ b/_module/nss/rab2.nss @@ -0,0 +1,8 @@ +#include "att_imbue" + +void main() +{ +SetLocalInt(GetPCSpeaker(), "rangff", 1); +SetLocalInt(GetPCSpeaker(), "rangedab3", 1); +AttackBonus(3); +} diff --git a/_module/nss/raise.nss b/_module/nss/raise.nss new file mode 100644 index 0000000..8671e31 --- /dev/null +++ b/_module/nss/raise.nss @@ -0,0 +1,46 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + + + +void Raise(object oPlayer) +{ + effect eVisual = EffectVisualEffect(VFX_IMP_RESTORATION); + + effect eBad = GetFirstEffect(oPlayer); + ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectResurrection(),oPlayer); + ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectHeal(GetMaxHitPoints(oPlayer)), oPlayer); + + //Search for negative effects + while(GetIsEffectValid(eBad)) + { + if (GetEffectType(eBad) == EFFECT_TYPE_ABILITY_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_AC_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_ATTACK_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_DAMAGE_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_DAMAGE_IMMUNITY_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_SAVING_THROW_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_SPELL_RESISTANCE_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_SKILL_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_BLINDNESS || + GetEffectType(eBad) == EFFECT_TYPE_DEAF || + GetEffectType(eBad) == EFFECT_TYPE_PARALYZE || + GetEffectType(eBad) == EFFECT_TYPE_NEGATIVELEVEL) + { + //Remove effect if it is negative. + RemoveEffect(oPlayer, eBad); + } + eBad = GetNextEffect(oPlayer); + } + //Fire cast spell at event for the specified target + SignalEvent(oPlayer, EventSpellCastAt(OBJECT_SELF, SPELL_RESTORATION, FALSE)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVisual, oPlayer); + + SetLocalInt(oPlayer, GetTag(OBJECT_SELF), TRUE); + + + } +//void main (){} diff --git a/_module/nss/randomlightenin2.nss b/_module/nss/randomlightenin2.nss new file mode 100644 index 0000000..61b19a4 --- /dev/null +++ b/_module/nss/randomlightenin2.nss @@ -0,0 +1,82 @@ + int nRow=4; //how many squares are there in a row +int nCol=4; //how many squares are there in a column +int nPercent=90; //how many percent chance for a lightning +//bolt on each heartbeat + +//ALRIGHT, don't change anything else! + +int nMaxx=10*nRow;//maximum vector X value +int nMaxy=10*nCol;//maximum vector Y value + + + +location GetRandomLocation(object oArea) +{ +int nX=Random(nMaxx)+1; +int nY=Random(nMaxy)+1; + +vector vPos=Vector(IntToFloat(nX), IntToFloat(nY), 0.0f); + +location lRandom=Location(oArea, vPos, 90.0f); + +return lRandom; +} + +void DoLightningDamage(object oTarget) +{ +//make a saving throw +int nSave=ReflexSave(oTarget, d20(2), SAVING_THROW_TYPE_ELECTRICITY, OBJECT_SELF); + +//only creature can make saving throws - this might not be +//necessary, but just in case. If the object type isn't a +//creature, we'll set the 'saving throw' to failed + +if (GetObjectType(oTarget) != OBJECT_TYPE_CREATURE) +nSave=0; + +if (nSave==0) //saving throw failed, damage oTarget +ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDamage(d20(2), DAMAGE_TYPE_ELECTRICAL, DAMAGE_POWER_ENERGY), oTarget); +else if (GetIsPC(oTarget)) //saving throw succesful. If a +//PC was the target, let them know how close they got. +SendMessageToPC(oTarget, "You somehow managed to step aside from that lightning bolt."); +} + +void HurtObject(object oTarget, location lTarget) +{ +//what kind of object? +int nType=GetObjectType(oTarget); + +//only creatures, placeables and doors can be hurt +if (nType==OBJECT_TYPE_CREATURE | OBJECT_TYPE_PLACEABLE | OBJECT_TYPE_DOOR) +{ +//Lightning effect strikes the object +ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_LIGHTNING_M), oTarget); +//possibly, damage is dealt +DoLightningDamage(oTarget); +} +//for other kinds of objects, lightning just strikes at +//location +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_LIGHTNING_M), lTarget); +} + + +void main() +{ +//there's nPercent chance of this happening +if (d100()>nPercent) return; + +//find a random location for the lightning bolt +location lTarget=GetRandomLocation(OBJECT_SELF); + +//is there an object near that location? +object oTarget=GetFirstObjectInShape(SHAPE_SPHERE, 5.0f, lTarget, FALSE, OBJECT_TYPE_ALL); + +//if there was an object, there's 5% chance of hitting that +//instead +if (GetIsObjectValid(oTarget) && d20()==1) +HurtObject(oTarget, lTarget); + +//Lightning strikes the location... +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_LIGHTNING_M), lTarget); + +} diff --git a/_module/nss/randomlightening.nss b/_module/nss/randomlightening.nss new file mode 100644 index 0000000..fa46e79 --- /dev/null +++ b/_module/nss/randomlightening.nss @@ -0,0 +1,82 @@ + int nRow=4; //how many squares are there in a row +int nCol=4; //how many squares are there in a column +int nPercent=45; //how many percent chance for a lightning +//bolt on each heartbeat + +//ALRIGHT, don't change anything else! + +int nMaxx=10*nRow;//maximum vector X value +int nMaxy=10*nCol;//maximum vector Y value + + + +location GetRandomLocation(object oArea) +{ +int nX=Random(nMaxx)+1; +int nY=Random(nMaxy)+1; + +vector vPos=Vector(IntToFloat(nX), IntToFloat(nY), 0.0f); + +location lRandom=Location(oArea, vPos, 90.0f); + +return lRandom; +} + +void DoLightningDamage(object oTarget) +{ +//make a saving throw +int nSave=ReflexSave(oTarget, d20(2), SAVING_THROW_TYPE_ELECTRICITY, OBJECT_SELF); + +//only creature can make saving throws - this might not be +//necessary, but just in case. If the object type isn't a +//creature, we'll set the 'saving throw' to failed + +if (GetObjectType(oTarget) != OBJECT_TYPE_CREATURE) +nSave=0; + +if (nSave==0) //saving throw failed, damage oTarget +ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDamage(d20(2), DAMAGE_TYPE_ELECTRICAL, DAMAGE_POWER_ENERGY), oTarget); +else if (GetIsPC(oTarget)) //saving throw succesful. If a +//PC was the target, let them know how close they got. +SendMessageToPC(oTarget, "You somehow managed to step aside from that lightning bolt."); +} + +void HurtObject(object oTarget, location lTarget) +{ +//what kind of object? +int nType=GetObjectType(oTarget); + +//only creatures, placeables and doors can be hurt +if (nType==OBJECT_TYPE_CREATURE | OBJECT_TYPE_PLACEABLE | OBJECT_TYPE_DOOR) +{ +//Lightning effect strikes the object +ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_LIGHTNING_M), oTarget); +//possibly, damage is dealt +DoLightningDamage(oTarget); +} +//for other kinds of objects, lightning just strikes at +//location +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_LIGHTNING_M), lTarget); +} + + +void main() +{ +//there's nPercent chance of this happening +if (d100()>nPercent) return; + +//find a random location for the lightning bolt +location lTarget=GetRandomLocation(OBJECT_SELF); + +//is there an object near that location? +object oTarget=GetFirstObjectInShape(SHAPE_SPHERE, 5.0f, lTarget, FALSE, OBJECT_TYPE_ALL); + +//if there was an object, there's 5% chance of hitting that +//instead +if (GetIsObjectValid(oTarget) && d20()==1) +HurtObject(oTarget, lTarget); + +//Lightning strikes the location... +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_LIGHTNING_M), lTarget); + +} diff --git a/_module/nss/rangeff1.nss b/_module/nss/rangeff1.nss new file mode 100644 index 0000000..3c36e14 --- /dev/null +++ b/_module/nss/rangeff1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName rangeff1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 2:54:06 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "rangff") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/rangeff12.nss b/_module/nss/rangeff12.nss new file mode 100644 index 0000000..a588e45 --- /dev/null +++ b/_module/nss/rangeff12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName rangeff1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/12/2004 2:54:06 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "rangff") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/rank.nss b/_module/nss/rank.nss new file mode 100644 index 0000000..2f17823 --- /dev/null +++ b/_module/nss/rank.nss @@ -0,0 +1,241 @@ +#include "spawner" +#include "x0_i0_petrify" + +void RemoveBonuses(object oPC) +{ + RemoveEffectOfType(oPC, EFFECT_TYPE_DAMAGE_INCREASE); + RemoveEffectOfType(oPC, EFFECT_TYPE_MOVEMENT_SPEED_INCREASE); + RemoveEffectOfType(oPC, EFFECT_TYPE_AC_INCREASE); + RemoveEffectOfType(oPC, EFFECT_TYPE_ATTACK_INCREASE); +} + +void ApplyBonuses(object oPC) +{ +if (GetLocalInt(GetModule(), "nordock")==1)return; + +int oPw = GetLocalInt(oPC, "rank_speed"); +int oAtt = GetLocalInt(oPC, "rank_attack"); +int oAC = GetLocalInt(oPC, "rank_ac"); +int oDm = GetLocalInt(oPC, "rank_damage"); +effect eEffect4; +effect eEffect = SupernaturalEffect(EffectDamageIncrease(DAMAGE_BONUS_20,DAMAGE_TYPE_DIVINE)); +// Apply Speed Bonus + +if (oPw>0) +{ +ApplyEffectToObject(DURATION_TYPE_PERMANENT, +SupernaturalEffect(EffectMovementSpeedIncrease(oPw)), oPC); +} +// Apply AC Bonus +if (oAC>0) +{ +ApplyEffectToObject(DURATION_TYPE_PERMANENT, +SupernaturalEffect(EffectACIncrease(oAC, AC_DODGE_BONUS, +AC_VS_DAMAGE_TYPE_ALL)), oPC); +} + +// Apply Attack Bonus +if (oAtt>0) +{ +ApplyEffectToObject(DURATION_TYPE_PERMANENT, +SupernaturalEffect(EffectAttackIncrease(oAtt)), oPC); +} +// Apply Damage Bonus +if (oDm>0) +{ +ApplyEffectToObject(DURATION_TYPE_PERMANENT, +SupernaturalEffect(EffectDamageIncrease(oDm, DAMAGE_TYPE_BLUDGEONING)),oPC); +ApplyEffectToObject(DURATION_TYPE_PERMANENT, +SupernaturalEffect(EffectDamageIncrease(oDm, DAMAGE_TYPE_PIERCING)),oPC); +ApplyEffectToObject(DURATION_TYPE_PERMANENT, +SupernaturalEffect(EffectDamageIncrease(oDm, DAMAGE_TYPE_SLASHING)),oPC); +} + +// If you have recieved divine power, retain after death + + +if (GetItemPossessedBy(oPC, "divine_talisman")!= OBJECT_INVALID) + { + eEffect4 = SupernaturalEffect(EffectDamageIncrease + (DAMAGE_BONUS_20,DAMAGE_TYPE_DIVINE)); + } +if (GetItemPossessedBy(oPC, "dark_talisman")!= OBJECT_INVALID) + { + eEffect4 = SupernaturalEffect(EffectDamageIncrease + (DAMAGE_BONUS_20,DAMAGE_TYPE_NEGATIVE)); + } + +DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect4, oPC)); +} +void GetRank(object oPC) +{ +if (GetLocalInt(GetModule(), "nordock")==1)return; +// Initialise +if (!GetIsPC(oPC)) {return;} +object oMod = GetModule(); +int oGameMode = GetLocalInt(oMod, "gamemode"); +int iDied = GetLocalInt (oPC,"iDied"); +int iKilled = GetLocalInt (oPC,"iKilled"); +int oRank; +int oStatus = GetLocalInt(oPC, "status"); +int oScheck = oStatus; +int eEffect; +int eEffect2 = VFX_IMP_IMPROVE_ABILITY_SCORE; +int eEffect3 = VFX_IMP_REDUCE_ABILITY_SCORE; +int oRR; +int oPromo; +string oTitle = GetLocalString(oPC,"rank"); +string oCheck = oTitle; +string oMsg; + + +// Determine Rank Rating Based on Kills / Deaths + +oRank = iKilled-(iDied/2); + +// Get Rank Bonus Effect Settings + +int oPw = GetLocalInt(oPC, "rank_speed"); +int oAtt = GetLocalInt(oPC, "rank_attack"); +int oAC = GetLocalInt(oPC, "rank_ac"); +int oDm = GetLocalInt(oPC, "rank_damage"); +int oPw_check = oPw; +int oAtt_check = oAtt; +int oAC_check = oAC; +int oDm_check = oDm; + + + + + + +// Set Rank Name Based on Rank Rating and Alignment + +if (oGameMode==1) + { + if (oRank<=4) { oTitle = "Scum";oRR = 1;} + if ((oRank>4)&&(oRank<=9)) { oTitle = "Lacky";oRR = 2;} + if ((oRank>9)&&(oRank<=14)) { oTitle = "Minion";oRR = 3;} + if ((oRank>14)&&(oRank<=19)) { oTitle = "Stalker";oRR = 4;} + if ((oRank>19)&&(oRank<=24)) { oTitle = "Assassin";oRR = 5;} + if ((oRank>24)&&(oRank<=29)) { oTitle = "Mercinary";oRR = 6;} + if ((oRank>29)&&(oRank<=34)) { oTitle = "Dark Leader";oRR = 7;} + if ((oRank>34)&&(oRank<=39)) { oTitle = "Death Bringer";oRR = 8;} + if ((oRank>39)&&(oRank<=44)) { oTitle = "Doom Lord";oRR = 1;oRR = 9;} + if ((oRank>44)&&(oRank<=49)) { oTitle = "Battlefiend";oRR = 10;} + if ((oRank>49)&&(oRank<=59)) { oTitle = "Slayer";oRR = 11;} + if ((oRank>59)&&(oRank<=69)) { oTitle = "Lord Slayer";oRR = 12;} + if ((oRank>69)&&(oRank<=79)) { oTitle = "Soul Reaver";oRR = 13;} + if ((oRank>79)&&(oRank<=89)) { oTitle = "Grand Darkmaster";oRR = 14;} + if ((oRank>89)&&(oRank<=99)) { oTitle = "Angel Slayer";oRR = 15;} + if ((oRank>99)&&(oRank<=109)) { oTitle = "Demon Champion";oRR = 16;} + if ((oRank>109)&&(oRank<=149)){ oTitle = "Demon Lord";oRR = 17;} + if ((oRank>149)&&(oRank<=199)){ oTitle = "Demon Prince";oRR = 18;} + if (oRank>199) { oTitle = "Chaos God";oRR = 19;} + eEffect = VFX_IMP_EVIL_HELP; + } +else + { + if (oRank<=4) { oTitle = "Fool";oRR = 1;} + if ((oRank>4)&&(oRank<=9)) { oTitle = "Grunt";oRR = 2;} + if ((oRank>9)&&(oRank<=14)) { oTitle = "Foot Soldier";oRR = 3;} + if ((oRank>14)&&(oRank<=19)) { oTitle = "Soldier";oRR = 4;} + if ((oRank>19)&&(oRank<=24)) { oTitle = "Gladiator";oRR = 5;} + if ((oRank>24)&&(oRank<=29)) { oTitle = "Captain";oRR = 6;} + if ((oRank>29)&&(oRank<=34)) { oTitle = "Man-at-arms";oRR = 7;} + if ((oRank>34)&&(oRank<=39)) { oTitle = "Knight";oRR = 8;} + if ((oRank>39)&&(oRank<=44)) { oTitle = "Champion";oRR = 9;} + if ((oRank>44)&&(oRank<=49)) { oTitle = "Defender";oRR = 10;} + if ((oRank>49)&&(oRank<=59)) { oTitle = "Battle Master";oRR = 11;} + if ((oRank>59)&&(oRank<=69)) { oTitle = "Warlord";oRR = 12;} + if ((oRank>69)&&(oRank<=79)) { oTitle = "Gand Master";oRR = 13;} + if ((oRank>79)&&(oRank<=89)) { oTitle = "Demon Slayer";oRR = 14;} + if ((oRank>89)&&(oRank<=99)) { oTitle = "Supreme Champion";oRR = 15;} + if ((oRank>99)&&(oRank<=109)) { oTitle = "Hero";oRR = 16;} + if ((oRank>109)&&(oRank<=149)){ oTitle = "Demi-god";oRR = 17;} + if ((oRank>149)&&(oRank<=199)){ oTitle = "Light Emperor";oRR = 18;} + if (oRank>199) { oTitle = "The Enlightened One";oRR = 19;} + eEffect = VFX_IMP_GOOD_HELP; + } + +// Award Bonus Powers Based on Rank + + + if (oRank<=4) { oPw=0;oAtt=0;oAC=0;oDm=0;} + if ((oRank>4)&&(oRank<=9)) { oPw=80;oAtt=0;oAC=0;oDm=0;} + if ((oRank>9)&&(oRank<=14)) { oPw=80;oAtt=2;oAC=1;oDm=1;} + if ((oRank>14)&&(oRank<=19)) { oPw=80;oAtt=2;oAC=2;oDm=2;} + if ((oRank>19)&&(oRank<=24)) { oPw=150;oAtt=4;oAC=2;oDm=2;} + if ((oRank>24)&&(oRank<=29)) { oPw=150;oAtt=4;oAC=2;oDm=4;} + if ((oRank>29)&&(oRank<=34)) { oPw=150;oAtt=6;oAC=4;oDm=4;} + if ((oRank>34)&&(oRank<=39)) { oPw=150;oAtt=6;oAC=4;oDm=6;} + if ((oRank>39)&&(oRank<=44)) { oPw=150;oAtt=8;oAC=4;oDm=6;} + if ((oRank>44)&&(oRank<=49)) { oPw=150;oAtt=8;oAC=6;oDm=8;} + if ((oRank>49)&&(oRank<=59)) { oPw=300;oAtt=10;oAC=6;oDm=8;} + if ((oRank>59)&&(oRank<=69)) { oPw=300;oAtt=10;oAC=6;oDm=10;} + if ((oRank>69)&&(oRank<=79)) { oPw=350;oAtt=12;oAC=6;oDm=10;} + if ((oRank>79)&&(oRank<=89)) { oPw=380;oAtt=12;oAC=8;oDm=12;} + if ((oRank>89)&&(oRank<=99)) { oPw=400;oAtt=14;oAC=8;oDm=12;} + if ((oRank>99)&&(oRank<=109)) { oPw=450;oAtt=14;oAC=8;oDm=14;} + if ((oRank>109)&&(oRank<=149)){ oPw=500;oAtt=16;oAC=10;oDm=14;} + if ((oRank>149)&&(oRank<=199)){ oPw=600;oAtt=18;oAC=12;oDm=18;} + if (oRank>199) { oPw=800;oAtt=20;oAC=16;oDm=20;} + +SetLocalInt(oPC, "rank_speed", oPw); +SetLocalInt(oPC, "rank_attack", oAtt); +SetLocalInt(oPC, "rank_ac", oAC); +SetLocalInt(oPC, "rank_damage", oDm); +SetLocalInt(oPC, "status", oRR); + + + + + + + +// Send bonus award Message if Rank is gained or lost + +if (oPw_check < oPw) {DelayCommand(4.0, SendMessageToPC(oPC, "Rank Bonus: Movement speed increased"));} +if (oAtt_check < oAtt) {DelayCommand(4.0, SendMessageToPC(oPC, "Rank Bonus: Attack increased +"+IntToString(oAtt)));} +if (oAC_check < oAC) {DelayCommand(4.0, SendMessageToPC(oPC, "Rank Bonus: AC increased +"+IntToString(oAC)));} +if (oDm_check < oDm) {DelayCommand(4.0, SendMessageToPC(oPC, "Rank Bonus: Physical damage increased +"+IntToString(oDm)));} + +if (oPw_check > oPw) {DelayCommand(4.0, SendMessageToPC(oPC, "Rank Lost: Movement speed bonus decreased"));} +if (oAtt_check > oAtt) {DelayCommand(4.0, SendMessageToPC(oPC, "Rank Lost: Attack bonus decreased +"+IntToString(oAtt)));} +if (oAC_check > oAC) {DelayCommand(4.0, SendMessageToPC(oPC, "Rank Lost: AC bonus decreased +"+IntToString(oAC)));} +if (oDm_check > oDm) {DelayCommand(4.0, SendMessageToPC(oPC, "Rank Lost: Physical damage bonus decreased +"+IntToString(oDm)));} + +DelayCommand(4.0, RemoveBonuses(oPC)); +DelayCommand(4.2, ApplyBonuses(oPC)); + +SetLocalString(oPC,"rank", oTitle); +if (oCheck != oTitle) + { + if ((oTitle!="Scum")&&(oTitle!="Fool")) + { + if (oScheck 0)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_040a.nss b/_module/nss/sc_040a.nss new file mode 100644 index 0000000..7e048c4 --- /dev/null +++ b/_module/nss/sc_040a.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_040 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 20/02/2005 1:37:49 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bets_placed") == 0)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_041.nss b/_module/nss/sc_041.nss new file mode 100644 index 0000000..bc1b81d --- /dev/null +++ b/_module/nss/sc_041.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_041 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 21/02/2005 2:12:14 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "team_bet") == 3)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_041a.nss b/_module/nss/sc_041a.nss new file mode 100644 index 0000000..5bbe4a1 --- /dev/null +++ b/_module/nss/sc_041a.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_041 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 21/02/2005 2:12:14 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "team_bet") != 3)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "team_bet") != 4)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sc_042.nss b/_module/nss/sc_042.nss new file mode 100644 index 0000000..4e018eb --- /dev/null +++ b/_module/nss/sc_042.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_042 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 28/02/2005 2:52:34 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetDeity(GetPCSpeaker()) == "")) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_043.nss b/_module/nss/sc_043.nss new file mode 100644 index 0000000..571820e --- /dev/null +++ b/_module/nss/sc_043.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_003 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 3/11/2004 3:30:42 AM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "balrogdead") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_dr") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sc_0431.nss b/_module/nss/sc_0431.nss new file mode 100644 index 0000000..9f6fd33 --- /dev/null +++ b/_module/nss/sc_0431.nss @@ -0,0 +1,19 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_003 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 3/11/2004 3:30:42 AM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "balrogdead") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_dr") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dr_on") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sc_043s.nss b/_module/nss/sc_043s.nss new file mode 100644 index 0000000..a2f8c6c --- /dev/null +++ b/_module/nss/sc_043s.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_003 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 3/11/2004 3:30:42 AM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "balrogdead") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_043s1.nss b/_module/nss/sc_043s1.nss new file mode 100644 index 0000000..533b842 --- /dev/null +++ b/_module/nss/sc_043s1.nss @@ -0,0 +1,19 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_003 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 3/11/2004 3:30:42 AM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "balrogdead") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "dr_on") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_bl") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sc_044.nss b/_module/nss/sc_044.nss new file mode 100644 index 0000000..af50da2 --- /dev/null +++ b/_module/nss/sc_044.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_044 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 28/02/2005 5:28:09 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dn_switch") < 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_044a.nss b/_module/nss/sc_044a.nss new file mode 100644 index 0000000..5342ba8 --- /dev/null +++ b/_module/nss/sc_044a.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_044 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 28/02/2005 5:28:09 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dn_switch") < 2)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_044b.nss b/_module/nss/sc_044b.nss new file mode 100644 index 0000000..de551bc --- /dev/null +++ b/_module/nss/sc_044b.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_044 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 28/02/2005 5:28:09 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dn_switch") < 3)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_044d.nss b/_module/nss/sc_044d.nss new file mode 100644 index 0000000..450b66f --- /dev/null +++ b/_module/nss/sc_044d.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_044 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 28/02/2005 5:28:09 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dn_switch") < 4)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_045.nss b/_module/nss/sc_045.nss new file mode 100644 index 0000000..caa80f2 --- /dev/null +++ b/_module/nss/sc_045.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_045 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 28/02/2005 5:31:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "dn_switch") == 4)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_046.nss b/_module/nss/sc_046.nss new file mode 100644 index 0000000..a356809 --- /dev/null +++ b/_module/nss/sc_046.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_046 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/03/2005 2:07:58 AM +//::////////////////////////////////////////////// +int StartingConditional() +{ + object oMod = GetModule(); + int oPCs = GetLocalInt(oMod, "num_players"); + // Inspect local variables + if(oPCs == 1) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_047.nss b/_module/nss/sc_047.nss new file mode 100644 index 0000000..6dec3e4 --- /dev/null +++ b/_module/nss/sc_047.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_047 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/03/2005 2:37:23 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "gamemode") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_048.nss b/_module/nss/sc_048.nss new file mode 100644 index 0000000..59cf3f8 --- /dev/null +++ b/_module/nss/sc_048.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_048 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 11/03/2005 11:19:49 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "star_music") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_048b.nss b/_module/nss/sc_048b.nss new file mode 100644 index 0000000..f446bfd --- /dev/null +++ b/_module/nss/sc_048b.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_048 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 11/03/2005 11:19:49 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "star_music") == 0)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_049.nss b/_module/nss/sc_049.nss new file mode 100644 index 0000000..83acf4c --- /dev/null +++ b/_module/nss/sc_049.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_049 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 12/03/2005 2:35:42 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "meph_spoke") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_050.nss b/_module/nss/sc_050.nss new file mode 100644 index 0000000..ffa08a6 --- /dev/null +++ b/_module/nss/sc_050.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_050 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 12/04/2005 11:36:14 AM +//::////////////////////////////////////////////// +#include "nw_i0_tool" + +int StartingConditional() +{ + + // Make sure the PC speaker has these items in their inventory + if(!HasItem(GetPCSpeaker(), "nordock_token")) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_051.nss b/_module/nss/sc_051.nss new file mode 100644 index 0000000..fbd37ac --- /dev/null +++ b/_module/nss/sc_051.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_051 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 12/04/2005 11:41:33 AM +//::////////////////////////////////////////////// +#include "nw_i0_tool" + +int StartingConditional() +{ + + // Make sure the PC speaker has these items in their inventory + if(!HasItem(GetPCSpeaker(), "nordock_token")) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_052.nss b/_module/nss/sc_052.nss new file mode 100644 index 0000000..da07c70 --- /dev/null +++ b/_module/nss/sc_052.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_052 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 15/04/2005 5:14:30 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "nord_mode") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_052b.nss b/_module/nss/sc_052b.nss new file mode 100644 index 0000000..da07c70 --- /dev/null +++ b/_module/nss/sc_052b.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_052 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 15/04/2005 5:14:30 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "nord_mode") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_053.nss b/_module/nss/sc_053.nss new file mode 100644 index 0000000..2692901 --- /dev/null +++ b/_module/nss/sc_053.nss @@ -0,0 +1,15 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_053 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 15/04/2005 5:16:30 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + // Inspect local variables + if((GetLocalInt(GetModule(), "nord_mode") == 1)&&(GetHitDice(GetPCSpeaker())==28)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_054.nss b/_module/nss/sc_054.nss new file mode 100644 index 0000000..d5d82a3 --- /dev/null +++ b/_module/nss/sc_054.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_054 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 15/04/2005 5:47:49 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "nord_mode") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_055.nss b/_module/nss/sc_055.nss new file mode 100644 index 0000000..8d22110 --- /dev/null +++ b/_module/nss/sc_055.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_055 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 15/04/2005 5:48:40 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "nord_mode") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_12.nss b/_module/nss/sc_12.nss new file mode 100644 index 0000000..7b36352 --- /dev/null +++ b/_module/nss/sc_12.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "f_spoke", 1); +} diff --git a/_module/nss/sc_13.nss b/_module/nss/sc_13.nss new file mode 100644 index 0000000..6154738 --- /dev/null +++ b/_module/nss/sc_13.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_012 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:46:03 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bossdead") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_13a.nss b/_module/nss/sc_13a.nss new file mode 100644 index 0000000..16785fa --- /dev/null +++ b/_module/nss/sc_13a.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_012 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:46:03 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bossdead") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_ll") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sc_13a1.nss b/_module/nss/sc_13a1.nss new file mode 100644 index 0000000..37bea4c --- /dev/null +++ b/_module/nss/sc_13a1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_012 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:46:03 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + if(!(GetLocalInt(GetPCSpeaker(), "lorddead") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_ll") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ll_on") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sc_13ab.nss b/_module/nss/sc_13ab.nss new file mode 100644 index 0000000..44e1cc3 --- /dev/null +++ b/_module/nss/sc_13ab.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_012 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:46:03 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "lorddead") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_xx") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sc_13ac.nss b/_module/nss/sc_13ac.nss new file mode 100644 index 0000000..569ad34 --- /dev/null +++ b/_module/nss/sc_13ac.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_012 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:46:03 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "bossdead") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_13ac1.nss b/_module/nss/sc_13ac1.nss new file mode 100644 index 0000000..77ad111 --- /dev/null +++ b/_module/nss/sc_13ac1.nss @@ -0,0 +1,19 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_012 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:46:03 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "lorddead") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_ll") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "ll_on") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sc_13aca.nss b/_module/nss/sc_13aca.nss new file mode 100644 index 0000000..dafa9e8 --- /dev/null +++ b/_module/nss/sc_13aca.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_012 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:46:03 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "lorddead") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_20.nss b/_module/nss/sc_20.nss new file mode 100644 index 0000000..aa14f42 --- /dev/null +++ b/_module/nss/sc_20.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d2a_complete") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "d3_complete") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sc_20b.nss b/_module/nss/sc_20b.nss new file mode 100644 index 0000000..478e0d8 --- /dev/null +++ b/_module/nss/sc_20b.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d3_complete") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_21.nss b/_module/nss/sc_21.nss new file mode 100644 index 0000000..5dc4ca6 --- /dev/null +++ b/_module/nss/sc_21.nss @@ -0,0 +1,19 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d3_complete") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "d4_complete") != 1)) + return FALSE; + + + return TRUE; +} diff --git a/_module/nss/sc_21b.nss b/_module/nss/sc_21b.nss new file mode 100644 index 0000000..8ae869b --- /dev/null +++ b/_module/nss/sc_21b.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d4_complete") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_21c.nss b/_module/nss/sc_21c.nss new file mode 100644 index 0000000..56bad45 --- /dev/null +++ b/_module/nss/sc_21c.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d5_complete") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_21ca.nss b/_module/nss/sc_21ca.nss new file mode 100644 index 0000000..af13bf5 --- /dev/null +++ b/_module/nss/sc_21ca.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d4_complete") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "d5_complete") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sc_21d.nss b/_module/nss/sc_21d.nss new file mode 100644 index 0000000..1a34be4 --- /dev/null +++ b/_module/nss/sc_21d.nss @@ -0,0 +1,19 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "luciferdead") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_ll") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_lm") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sc_21de.nss b/_module/nss/sc_21de.nss new file mode 100644 index 0000000..478e0d8 --- /dev/null +++ b/_module/nss/sc_21de.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d3_complete") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_21def.nss b/_module/nss/sc_21def.nss new file mode 100644 index 0000000..00e6c75 --- /dev/null +++ b/_module/nss/sc_21def.nss @@ -0,0 +1,34 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d4_complete") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_lm") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_ll") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_bm") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_pm") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_hd") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_pf") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_bl") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_dr") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_hw") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_21defa.nss b/_module/nss/sc_21defa.nss new file mode 100644 index 0000000..6a2ded8 --- /dev/null +++ b/_module/nss/sc_21defa.nss @@ -0,0 +1,34 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d5_complete") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_lm") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_ll") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_bm") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_pm") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_hd") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_pf") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_bl") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_dr") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_hw") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_21defa1.nss b/_module/nss/sc_21defa1.nss new file mode 100644 index 0000000..00e6c75 --- /dev/null +++ b/_module/nss/sc_21defa1.nss @@ -0,0 +1,34 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d4_complete") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_lm") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_ll") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_bm") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_pm") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_hd") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_pf") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_bl") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_dr") != 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "sw_hw") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_21defg.nss b/_module/nss/sc_21defg.nss new file mode 100644 index 0000000..a1f7260 --- /dev/null +++ b/_module/nss/sc_21defg.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d4_complete") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_21defga.nss b/_module/nss/sc_21defga.nss new file mode 100644 index 0000000..a1f7260 --- /dev/null +++ b/_module/nss/sc_21defga.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d4_complete") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_21dx.nss b/_module/nss/sc_21dx.nss new file mode 100644 index 0000000..99d7df5 --- /dev/null +++ b/_module/nss/sc_21dx.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "luciferdead") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_21dx1.nss b/_module/nss/sc_21dx1.nss new file mode 100644 index 0000000..9ad5d25 --- /dev/null +++ b/_module/nss/sc_21dx1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_011 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 4/11/2004 9:32:57 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "luciferdead") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_af.nss b/_module/nss/sc_af.nss new file mode 100644 index 0000000..9df1290 --- /dev/null +++ b/_module/nss/sc_af.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_021 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 26/01/2005 1:16:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "armour_af") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_af1.nss b/_module/nss/sc_af1.nss new file mode 100644 index 0000000..8cff749 --- /dev/null +++ b/_module/nss/sc_af1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_021 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 26/01/2005 1:16:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "armour_af1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_af1a.nss b/_module/nss/sc_af1a.nss new file mode 100644 index 0000000..723ddbe --- /dev/null +++ b/_module/nss/sc_af1a.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_020 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 26/01/2005 1:15:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "armour_af1") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_af1b.nss b/_module/nss/sc_af1b.nss new file mode 100644 index 0000000..7ab4168 --- /dev/null +++ b/_module/nss/sc_af1b.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_020 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 26/01/2005 1:15:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "armour_af") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sc_af2b.nss b/_module/nss/sc_af2b.nss new file mode 100644 index 0000000..7ab4168 --- /dev/null +++ b/_module/nss/sc_af2b.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_020 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 26/01/2005 1:15:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "armour_af") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/scenestart.nss b/_module/nss/scenestart.nss new file mode 100644 index 0000000..5e4736a --- /dev/null +++ b/_module/nss/scenestart.nss @@ -0,0 +1,59 @@ +#include "cutscene_ch1" +#include "cutscene_ch2" +#include "cutscene_ch3" +#include "cutscene_ch4" + + + + + +void RunCutscene(object oPC) +{ + +object oPlayer; +object oMod = GetModule(); +string sText; +int oChest; +int oMode = GetLocalInt(oMod, "gamemode"); +int nInt = GetLocalInt(oMod, "cutscene_on"); +int nInt2 = GetLocalInt(oMod, "cutscene_flag"); +int id1 = GetLocalInt(oMod, "d1"); +int id2 = GetLocalInt(oMod, "d2"); +int id2a = GetLocalInt(oMod, "d2a"); +int id3 = GetLocalInt(oMod, "d3"); +int id4 = GetLocalInt(oMod, "d4"); +int id5 = GetLocalInt(oMod, "d5"); +int iSFDuel = GetLocalInt(oMod, "duel_on"); +int iFinalBattle = GetLocalInt(oPC, "final_on"); +AssignCommand(oPC, ClearAllActions()); +SetLocked(GetObjectByTag("arena_gate"), TRUE); +SetLocalInt(oPC, "gate_locked", 1); + + if (oMode==1) + { + if (id1==1){sText = "Adept";oChest = 7;} + if (id2==1){sText = "Slayer";oChest = 1;} + if (id2a==1){sText = "Doom Lord";oChest = 3;} + if (id3==1){sText = "Dark Master";oChest = 4;} + if (id4==1){sText = "Soul Reaver";oChest = 2;} + if (id5==1){sText = "Demon Prince";oChest = 10;} + } + else + { + if (id1==1){sText = "Apprentice"; oChest = 7;} + if (id2==1){sText = "Warrior";oChest = 1;} + if (id2a==1){sText = "Warrior Lord";oChest = 3;} + if (id3==1){sText = "Grand Master";oChest = 4;} + if (id4==1){sText = "Hero";oChest = 5;} + if (id5==1){sText = "God";oChest = 9;} + } + + if (iSFDuel==1){oChest = 8;} + if ((oChest==9)||(oChest==10)) + {DelayCommand(6.0, CutScene2(oChest, sText, oPC));} + else if (oChest==8){CutScene3(oChest, oPC);} + else if (iFinalBattle==1){DelayCommand(6.0, CutScene4(oPC));return;} + else {DelayCommand(6.0, CutScene(oChest, sText, oPC));} + +} +//void main () {} diff --git a/_module/nss/score_calc.nss b/_module/nss/score_calc.nss new file mode 100644 index 0000000..ae8fef8 --- /dev/null +++ b/_module/nss/score_calc.nss @@ -0,0 +1,125 @@ +#include "in_g_cutscene" + +void RatingGet(object oPC) +{ +int iAv; +float fPerc; +int iPerc; +int tScore; +int iSwing; +int iHit; +int iDam; +int iScore; +int iKilled; +int iDied; +int iRankNo; +string sRank; +string sTookOut; +string sDeaths; +int iDice; +int iAlign; +float fAvDeath; +int iAvDeath; +int iFs; + +int iAlignment = GetAlignmentGoodEvil(oPC); +if (iAlignment == ALIGNMENT_EVIL){iAlign = 2;} +else {iAlign = 1;} + +iDied = GetLocalInt (oPC,"iDied"); +iKilled = GetLocalInt (oPC,"iKilled"); +iDam = GetLocalInt(oPC, "player_dd"); +iHit = GetLocalInt(oPC, "pc_hit"); +iSwing = GetLocalInt(oPC, "pc_swing"); +iScore = GetLocalInt(oPC, "a_score"); +sRank = GetLocalString(oPC, "rank"); +iRankNo = GetLocalInt(oPC, "status"); + + +string sTitle; +if (GetGender(oPC)==GENDER_MALE){sTitle="Sir";}else{sTitle="Lady";} + +// calculate final stats and score + +if (iHit!=0){iAv = iDam / iHit; } +else {iAv = 0;} + +if (iSwing!=0){fPerc = (IntToFloat(iHit) / IntToFloat(iSwing))*100;} +else {fPerc = 0.0;} + +iPerc = FloatToInt(fPerc); + +tScore = (iPerc * iAv); +if (tScore!=0){iScore+=tScore;} +else {iScore += 0;} + +SetLocalInt(oPC, "a_score", iScore); + + + + if (iPerc==0) { iFs=0;} + if ((iPerc>0)&&(iPerc<=10)) { iFs=1;} + if ((iPerc>10)&&(iPerc<=20)) { iFs=2;} + if ((iPerc>20)&&(iPerc<=30)) { iFs=3;} + if ((iPerc>30)&&(iPerc<=40)) { iFs=4;} + if ((iPerc>40)&&(iPerc<=65)) { iFs=5;} + if ((iPerc>65)&&(iPerc<=70)) { iFs=6;} + if ((iPerc>70)&&(iPerc<=75)) { iFs=7;} + if ((iPerc>75)&&(iPerc<=80)) { iFs=8;} + if ((iPerc>80)&&(iPerc<=85)) { iFs=9;} + if (iPerc>=85) { iFs=10;} + +SetLocalInt(oPC, "final_attack", iFs); +int iFatt = iFs; + +if (iDied==0) { iFs=10;} + if ((iDied>0)&&(iDied<=3)) { iFs=9;} + if ((iDied>3)&&(iDied<=5)) { iFs=8;} + if ((iDied>5)&&(iDied<=8)) { iFs=7;} + if ((iDied>8)&&(iDied<=12)) { iFs=6;} + if ((iDied>12)&&(iDied<=15)) { iFs=5;} + if ((iDied>15)&&(iDied<=18)) { iFs=4;} + if ((iDied>18)&&(iDied<=21)) { iFs=3;} + if ((iDied>21)&&(iDied<=25)) { iFs=2;} + if ((iDied>25)&&(iDied<=35)) { iFs=1;} + if (iDied>35) { iFs=0;} + +SetLocalInt(oPC, "final_defense", iFs); +int iFdef = iFs; + + +if (iAv==0) { iFs=0;} + if ((iAv>20)&&(iAv<=40)) { iFs=1;} + if ((iAv>40)&&(iAv<=50)) { iFs=2;} + if ((iAv>50)&&(iAv<=60)) { iFs=3;} + if ((iAv>60)&&(iAv<=70)) { iFs=4;} + if ((iAv>70)&&(iAv<=80)) { iFs=5;} + if ((iAv>80)&&(iAv<=90)) { iFs=6;} + if ((iAv>90)&&(iAv<=100)) { iFs=7;} + if ((iAv>100)&&(iAv<=150)) { iFs=8;} + if ((iAv>150)&&(iAv<=200)) { iFs=9;} + if (iAv>200) { iFs=10;} + +SetLocalInt(oPC, "final_damage", iFs); +int iFdam = iFs; + + + if (iScore<=2999) { iFs=0;} + if ((iScore>3000)&&(iScore<=5999)) { iFs=1;} + if ((iScore>6000)&&(iScore<=8999)) { iFs=2;} + if ((iScore>9000)&&(iScore<=11999)) { iFs=3;} + if ((iScore>12000)&&(iScore<=14999)) { iFs=4;} + if ((iScore>15000)&&(iScore<=17999)) { iFs=5;} + if ((iScore>18000)&&(iScore<=20999)) { iFs=6;} + if ((iScore>21000)&&(iScore<=23999)) { iFs=7;} + if ((iScore>24000)&&(iScore<=26999)) { iFs=8;} + if ((iScore>27000)&&(iScore<=34999)) { iFs=9;} + if (iScore>35000) { iFs=10;} + +int iFcalc = iFdam+iFatt+iFdef; +int iFscore = (iFcalc*3)+iFs; + +SetLocalInt(oPC, "aoc_rating", iFscore); +} + +//void main() {} diff --git a/_module/nss/score_patch.nss b/_module/nss/score_patch.nss new file mode 100644 index 0000000..e011862 --- /dev/null +++ b/_module/nss/score_patch.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetLastUsedBy(), "a_score", 700); +} diff --git a/_module/nss/score_switch.nss b/_module/nss/score_switch.nss new file mode 100644 index 0000000..d210048 --- /dev/null +++ b/_module/nss/score_switch.nss @@ -0,0 +1,65 @@ +#include "spawner" + +void main() +{ +object oPC = GetLastUsedBy(); +object oMod = GetModule(); +int iMode = GetLocalInt(oMod, "gamemode"); +int iDice; +string sMessage; +string sHost; +int iSwitch = GetLocalInt(oMod, "score_switch"); +int iStatus = GetLocalInt(oPC, "luciferdead"); + +if (GetLocalInt(oMod, "mod_mode")==1) +{ +PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("*** Not used in campaign manager mode ***", oPC); + return; +} + + +if (iStatus==1) + { + if (iSwitch==0) + { + SetLocalInt(oMod, "score_switch", 1); + Message(0.2, "Scoremode: Holy War Standings* SET *", oPC); + PlaySound("gui_select"); + PlaySound("sce_positive"); + } + else if (iSwitch==1) + { + SetLocalInt(oMod, "score_switch", 2); + Message(0.2, "Scoremode: Holy War PC Stats * SET *", oPC); + PlaySound("gui_select"); + PlaySound("sce_positive"); + } + else if (iSwitch==2) + { + SetLocalInt(oMod, "score_switch", 0); + Message(0.2, "Scoremode: Arena PC Stats * SET *", oPC); + PlaySound("gui_select"); + PlaySound("sce_positive"); + } + } +else + { + if (iMode==1) + {sHost = "Arch Angel Tyriel";} + else + {sHost = "Lord Lucifer";} + + PlaySound("sim_cntresist"); + iDice = d3(); + switch (iDice) + { + case 1: {sMessage = "*** No alternate score mode availible yet ***";}break; + case 2: {sMessage = "*** Defeat "+sHost+" to unlock this feature***";}break; + case 3: {sMessage = "*** This wil become availible when you unlock the Holy War feature ***";}break; + } + + FloatingTextStringOnCreature(sMessage, oPC); + } +} diff --git a/_module/nss/scorechek.nss b/_module/nss/scorechek.nss new file mode 100644 index 0000000..ce354f6 --- /dev/null +++ b/_module/nss/scorechek.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_028 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/01/2005 4:30:20 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "scre_state5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/scorechek1.nss b/_module/nss/scorechek1.nss new file mode 100644 index 0000000..f6e29a8 --- /dev/null +++ b/_module/nss/scorechek1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_028 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/01/2005 4:30:20 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "scre_state5") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/scorekeep.nss b/_module/nss/scorekeep.nss new file mode 100644 index 0000000..3777bcc --- /dev/null +++ b/_module/nss/scorekeep.nss @@ -0,0 +1,794 @@ +#include "rank" + + +void HouseKeep(object oPC) +{ +int oStop = 0; +int oStop2 = 0; +int oCount = 0; +int oCount2 = 0; + +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"xill")==1) + { + ++oCount; + } + if (FindSubString(GetResRef(oItem),"zedy")==1) + { + ++oCount2; + } + oItem = GetNextItemInInventory(oPC); + } + +oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"xill")==1) + { + + if ((oStop!=1)&&(oCount>1)) + { + oStop = 1; + DestroyObject(oItem); + } + } + if (FindSubString(GetResRef(oItem),"zedy")==1) + { + + if ((oStop2!=1)&&(oCount2>1)) + { + oStop2 = 1; + DestroyObject(oItem); + } + } + + oItem = GetNextItemInInventory(oPC); + } +} + +void HouseKeep2 (object oPC) +{ +int oStop3 = 0; +int oStop4 = 0; +int oCount3 = 0; +int oCount4 = 0; +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"rqcv")==1) + { + ++oCount3; + } + if (FindSubString(GetResRef(oItem),"gnpd")==1) + { + ++oCount4; + } + oItem = GetNextItemInInventory(oPC); + } +oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"rqcv")==1) + { + + if ((oStop3!=1)&&(oCount3>1)) + { + oStop3 = 1; + DestroyObject(oItem); + } + } + if (FindSubString(GetResRef(oItem),"gnpd")==1) + { + + if ((oStop4!=1)&&(oCount4>1)) + { + oStop4 = 1; + DestroyObject(oItem); + } + } + oItem = GetNextItemInInventory(oPC); + } +} + +void HouseKeep3 (object oPC) +{ +int oStop3 = 0; +int oStop4 = 0; +int oCount3 = 0; +int oCount4 = 0; +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"xcov")==1) + { + ++oCount3; + } + if (FindSubString(GetResRef(oItem),"sntf")==1) + { + ++oCount4; + } + oItem = GetNextItemInInventory(oPC); + } +oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"xcov")==1) + { + + if ((oStop3!=1)&&(oCount3>1)) + { + oStop3 = 1; + DestroyObject(oItem); + } + } + if (FindSubString(GetResRef(oItem),"sntf")==1) + { + + if ((oStop4!=1)&&(oCount4>1)) + { + oStop4 = 1; + DestroyObject(oItem); + } + } + oItem = GetNextItemInInventory(oPC); + } +} + + +void HouseKeep4 (object oPC) +{ +int oStop3 = 0; +int oStop4 = 0; +int oCount3 = 0; +int oCount4 = 0; +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"huvp")==1) + { + ++oCount3; + } + if (FindSubString(GetResRef(oItem),"rsco")==1) + { + ++oCount4; + } + oItem = GetNextItemInInventory(oPC); + } +oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"huvp")==1) + { + if ((oStop3!=1)&&(oCount3>1)) + { + oStop3 = 1; + DestroyObject(oItem); + } + } + if (FindSubString(GetResRef(oItem),"rsco")==1) + { + if ((oStop4!=1)&&(oCount4>1)) + { + oStop4 = 1; + DestroyObject(oItem); + } + } + oItem = GetNextItemInInventory(oPC); + } +} + +void HouseKeep5 (object oPC) +{ +int oStop3 = 0; +int oStop4 = 0; +int oCount3 = 0; +int oCount4 = 0; +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"eitz")==1) + { + ++oCount3; + } + oItem = GetNextItemInInventory(oPC); + } +oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"eitz")==1) + { + if ((oStop3!=1)&&(oCount3>1)) + { + oStop3 = 1; + DestroyObject(oItem); + } + } + oItem = GetNextItemInInventory(oPC); + } +} + + +void StoreHits(object oPC) +{ +location lPC = GetLocation(oPC); +string oHits = IntToString(GetLocalInt(oPC, "pc_hit")); +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"xcov")==1) + { + CopyObject(oItem,lPC, oPC, oHits); + DelayCommand(0.5, DestroyObject(oItem)); + return; + } + oItem = GetNextItemInInventory(oPC); + } +} + +void StoreSwings(object oPC) +{ +location lPC = GetLocation(oPC); +string oHits = IntToString(GetLocalInt(oPC, "pc_swing")); +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"huvp")==1) + { + CopyObject(oItem,lPC, oPC, oHits); + DelayCommand(0.5, DestroyObject(oItem)); + return; + } + oItem = GetNextItemInInventory(oPC); + } +} + +void StoreDamage(object oPC) +{ +location lPC = GetLocation(oPC); +string oDamage = IntToString(GetLocalInt(oPC, "player_dd")); +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"sntf")==1) + { + CopyObject(oItem,lPC, oPC, oDamage); + DelayCommand(0.5, DestroyObject(oItem)); + return; + } + oItem = GetNextItemInInventory(oPC); + } +} + + + +void StoreKills(object oPC) +{ +location lPC = GetLocation(oPC); +string oKills = IntToString(GetLocalInt(oPC, "iKilled")); +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"xill")==1) + { + CopyObject(oItem,lPC, oPC, oKills); + DelayCommand(0.5, DestroyObject(oItem)); + return; + } + oItem = GetNextItemInInventory(oPC); + } +} + +void StoreDeaths(object oPC) +{ +location lPC = GetLocation(oPC); +string oDeaths = IntToString(GetLocalInt(oPC, "iDied")); +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"zedy")==1) + { + CopyObject(oItem,lPC, oPC, oDeaths); + DelayCommand(0.5, DestroyObject(oItem)); + return; + } + oItem = GetNextItemInInventory(oPC); + } +} + + + void StoreAOCscore(object oPC) +{ +location lPC = GetLocation(oPC); +string oDeaths = IntToString(GetLocalInt(oPC, "a_score")); +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"rsco")==1) + { + CopyObject(oItem,lPC, oPC, oDeaths); + DelayCommand(0.5, DestroyObject(oItem)); + return; + } + oItem = GetNextItemInInventory(oPC); + } +} + + void StoreDeity(object oPC) +{ +location lPC = GetLocation(oPC); +string oDeaths = IntToString(GetLocalInt(oPC, "dt_num")); +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"eitz")==1) + { + CopyObject(oItem,lPC, oPC, oDeaths); + DelayCommand(0.5, DestroyObject(oItem)); + return; + } + oItem = GetNextItemInInventory(oPC); + } +} + +void GetScore(object oPC) +{ + int oKills; + int oDeaths; + int oChal; + int oMonst; + int oHit; + int oDam; + int oSwing; + int oScore; + int oDeity; + object oLake = GetObjectByTag("lake_wp1"); + object oRug = GetObjectByTag("npc_rug"); + string oJourn; + object oMod = GetModule(); + int oMode = GetLocalInt(oMod, "gamemode"); + if (GetItemPossessedBy(oPC, "duel_pass2")!=OBJECT_INVALID) + { + SetLocalInt(oPC, "starfall_dead", 1); + if (oMode==1){AddJournalQuestEntry("mephisto", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("starfall", 1, oPC, FALSE, FALSE);} + } + if (oMode==1) + {oJourn = "tyriel";} + else + {oJourn = "lucifer";} + object oItem = GetFirstItemInInventory(oPC); + while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"xill")==1) + { + oKills = StringToInt(GetTag(oItem)); + } + if (FindSubString(GetResRef(oItem),"zedy")==1) + { + oDeaths = StringToInt(GetTag(oItem)); + } + if (FindSubString(GetResRef(oItem),"rqcv")==1) + { + oChal = StringToInt(GetTag(oItem)); + } + if (FindSubString(GetResRef(oItem),"gnpd")==1) + { + oMonst = StringToInt(GetTag(oItem)); + } + if (FindSubString(GetResRef(oItem),"xcov")==1) + { + oHit = StringToInt(GetTag(oItem)); + } + if (FindSubString(GetResRef(oItem),"sntf")==1) + { + oDam = StringToInt(GetTag(oItem)); + } + if (FindSubString(GetResRef(oItem),"huvp")==1) + { + oSwing = StringToInt(GetTag(oItem)); + } + if (FindSubString(GetResRef(oItem),"rsco")==1) + { + oScore = StringToInt(GetTag(oItem)); + } + if (FindSubString(GetResRef(oItem),"eitz")==1) + { + oDeity = StringToInt(GetTag(oItem)); + } + oItem = GetNextItemInInventory(oPC); + } + SetLocalInt(oPC, "iKilled", oKills); + SetLocalInt(oPC, "iDied", oDeaths); + SetLocalInt(oPC, "pc_hit", oHit); + SetLocalInt(oPC, "player_dd", oDam); + SetLocalInt(oPC, "pc_swing", oSwing); + SetLocalInt(oPC, "a_score", oScore); + SetLocalInt(oPC, "dt_num", oDeity); + + if (oMode==1) + { + switch (oChal) + { + case 1: + {SetLocalInt(oMod, "d1_complete",1); + AddJournalQuestEntry("boss1_0", 1, oPC, FALSE, FALSE); + }break; + + case 2: + {SetLocalInt(oMod, "d1_complete",1); + SetLocalInt(oMod, "d2_complete",1); + AddJournalQuestEntry("boss1_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss2_0", 1, oPC, FALSE, FALSE); + }break; + + case 3: + {SetLocalInt(oMod, "d1_complete",1); + SetLocalInt(oMod, "d2_complete",1); + SetLocalInt(oMod, "d2a_complete",1); + AddJournalQuestEntry("boss1_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss2_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss3_0", 1, oPC, FALSE, FALSE); + }break; + + case 4: + {SetLocalInt(oMod, "d1_complete",1); + SetLocalInt(oMod, "d2_complete",1); + SetLocalInt(oMod, "d2a_complete",1); + SetLocalInt(oMod, "d3_complete",1); + AddJournalQuestEntry("boss1_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss2_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss3_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss4_0", 1, oPC, FALSE, FALSE); + }break; + + case 5: + {SetLocalInt(oMod, "d1_complete",1); + SetLocalInt(oMod, "d2_complete",1); + SetLocalInt(oMod, "d2a_complete",1); + SetLocalInt(oMod, "d3_complete",1); + SetLocalInt(oMod, "d4_complete",1); + AddJournalQuestEntry("boss1_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss2_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss3_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss4_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss5_0", 1, oPC, FALSE, FALSE); + }break; + case 6: + {SetLocalInt(oMod, "d1_complete",1); + SetLocalInt(oMod, "d2_complete",1); + SetLocalInt(oMod, "d2a_complete",1); + SetLocalInt(oMod, "d3_complete",1); + SetLocalInt(oMod, "d4_complete",1); + SetLocalInt(oMod, "d5_complete",1); + AddJournalQuestEntry("boss1_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss2_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss3_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss4_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss5_0", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss6_0", 1, oPC, FALSE, FALSE); + if (GetLocalInt(oMod, "portthere")!=1) + {SetLocalInt(oMod, "portthere", 1); + Place("fw_portal1", "fw_portal_wp");} + if ((GetLocalInt(oMod, "npchere")!=1)&& + (GetItemPossessedBy(oPC, "show_ticket")==OBJECT_INVALID)) + { + if (GetGender(oPC) == GENDER_MALE) + {PlaceCreature("dark_love_f", "lake_wp1");} + else{PlaceCreature("dark_love_m", "lake_wp1");} + } + else if ((GetLocalInt(oMod, "npchere")!=1)&& + (GetItemPossessedBy(oPC, "show_ticket")!=OBJECT_INVALID)) + { + if (GetGender(oPC) == GENDER_MALE) + {PlaceCreature("dark_love_f", "npc_rug");} + else{PlaceCreature("dark_love_m", "npc_rug");} + } + }break; + + + + + } + } + else + { + switch (oChal) + { + case 1: + {SetLocalInt(oMod, "d1_complete",1); + AddJournalQuestEntry("boss1", 1, oPC, FALSE, FALSE); + }break; + + case 2: + {SetLocalInt(oMod, "d1_complete",1); + SetLocalInt(oMod, "d2_complete",1); + AddJournalQuestEntry("boss1", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss2", 1, oPC, FALSE, FALSE); + }break; + + case 3: + {SetLocalInt(oMod, "d1_complete",1); + SetLocalInt(oMod, "d2_complete",1); + SetLocalInt(oMod, "d2a_complete",1); + AddJournalQuestEntry("boss1", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss2", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss3", 1, oPC, FALSE, FALSE); + }break; + + case 4: + {SetLocalInt(oMod, "d1_complete",1); + SetLocalInt(oMod, "d2_complete",1); + SetLocalInt(oMod, "d2a_complete",1); + SetLocalInt(oMod, "d3_complete",1); + AddJournalQuestEntry("boss1", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss2", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss3", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss4", 1, oPC, FALSE, FALSE); + }break; + + case 5: + {SetLocalInt(oMod, "d1_complete",1); + SetLocalInt(oMod, "d2_complete",1); + SetLocalInt(oMod, "d2a_complete",1); + SetLocalInt(oMod, "d3_complete",1); + SetLocalInt(oMod, "d4_complete",1); + AddJournalQuestEntry("boss1", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss2", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss3", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss4", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss5", 1, oPC, FALSE, FALSE); + }break; + case 6: + {SetLocalInt(oMod, "d1_complete",1); + SetLocalInt(oMod, "d2_complete",1); + SetLocalInt(oMod, "d2a_complete",1); + SetLocalInt(oMod, "d3_complete",1); + SetLocalInt(oMod, "d4_complete",1); + SetLocalInt(oMod, "d5_complete",1); + AddJournalQuestEntry("boss1", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss2", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss3", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss4", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss5", 1, oPC, FALSE, FALSE); + AddJournalQuestEntry("boss6", 1, oPC, FALSE, FALSE); + if (GetLocalInt(oMod, "portthere")!=1) + {SetLocalInt(oMod, "portthere", 1); + Place("fw_portal1", "fw_portal_wp");} + if ((GetLocalInt(oMod, "npchere")!=1)&& + (GetItemPossessedBy(oPC, "show_ticket")==OBJECT_INVALID)) + { + if (GetGender(oPC) == GENDER_MALE) + {PlaceCreature("light_love_f", "lake_wp1");} + else{PlaceCreature("light_love_m", "lake_wp1");} + } + else if ((GetLocalInt(oMod, "npchere")!=1)&& + (GetItemPossessedBy(oPC, "show_ticket")!=OBJECT_INVALID)) + { + if (GetGender(oPC) == GENDER_MALE) + {PlaceCreature("light_love_f", "npc_rug");} + else{PlaceCreature("light_love_m", "npc_rug");} + } + }break; + } + } +switch (oMonst) +{ +case 1: +{SetLocalInt(oPC, "wurmdead",1);}break; + + +case 2: +{SetLocalInt(oPC, "wurmdead",1); +SetLocalInt(oPC, "balrogdead",1);}break; + +case 3: +{SetLocalInt(oPC, "wurmdead",1); +SetLocalInt(oPC, "balrogdead",1); +SetLocalInt(oPC, "doppledead",1);}break; + +case 4: +{SetLocalInt(oPC, "wurmdead",1); +SetLocalInt(oPC, "balrogdead",1); +SetLocalInt(oPC, "doppledead",1); +SetLocalInt(oPC, "pitfienddead",1);}break; + +case 5: +{SetLocalInt(oPC, "wurmdead",1); +SetLocalInt(oPC, "balrogdead",1); +SetLocalInt(oPC, "doppledead",1); +SetLocalInt(oPC, "pitfienddead",1); +SetLocalInt(oPC, "hdfienddead",1);}break; + +case 6: +{SetLocalInt(oPC, "wurmdead",1); +SetLocalInt(oPC, "balrogdead",1); +SetLocalInt(oPC, "doppledead",1); +SetLocalInt(oPC, "pitfienddead",1); +SetLocalInt(oPC, "hdfienddead",1); +SetLocalInt(oPC, "paledead",1);}break; + +case 7: +{SetLocalInt(oPC, "wurmdead",1); +SetLocalInt(oPC, "balrogdead",1); +SetLocalInt(oPC, "doppledead",1); +SetLocalInt(oPC, "pitfienddead",1); +SetLocalInt(oPC, "hdfienddead",1); +SetLocalInt(oPC, "paledead",1); +SetLocalInt(oPC, "marilithdead",1);}break; + +case 8: +{SetLocalInt(oPC, "wurmdead",1); +SetLocalInt(oPC, "balrogdead",1); +SetLocalInt(oPC, "doppledead",1); +SetLocalInt(oPC, "pitfienddead",1); +SetLocalInt(oPC, "hdfienddead",1); +SetLocalInt(oPC, "paledead",1); +SetLocalInt(oPC, "marilithdead",1); +SetLocalInt(oPC, "bossdead",1);}break; + +case 9: +{SetLocalInt(oPC, "wurmdead",1); +SetLocalInt(oPC, "balrogdead",1); +SetLocalInt(oPC, "doppledead",1); +SetLocalInt(oPC, "pitfienddead",1); +SetLocalInt(oPC, "hdfienddead",1); +SetLocalInt(oPC, "paledead",1); +SetLocalInt(oPC, "marilithdead",1); +SetLocalInt(oPC, "bossdead",1); +SetLocalInt(oPC, "lorddead",1);}break; + +case 10: +{SetLocalInt(oPC, "wurmdead",1); +SetLocalInt(oPC, "balrogdead",1); +SetLocalInt(oPC, "doppledead",1); +SetLocalInt(oPC, "pitfienddead",1); +SetLocalInt(oPC, "hdfienddead",1); +SetLocalInt(oPC, "paledead",1); +SetLocalInt(oPC, "marilithdead",1); +SetLocalInt(oPC, "bossdead",1); +SetLocalInt(oPC, "lorddead",1); +SetLocalInt(oPC, "luciferdead",1); +AddJournalQuestEntry(oJourn, 1, oPC, FALSE, FALSE); +}break; +} +switch (oDeity) +{ +case 1: +{SetDeity(oPC, "Baccob");}break; + +case 2: +{SetDeity(oPC, "Corellon");}break; + +case 3: +{SetDeity(oPC, "Ehlonna");}break; + +case 4: +{SetDeity(oPC, "Erythnul");}break; + +case 5: +{SetDeity(oPC, "Fharlanghn");}break; + +case 6: +{SetDeity(oPC, "Garl Glittergold");}break; + +case 7: +{SetDeity(oPC, "Gruumish");}break; + +case 8: +{SetDeity(oPC, "Heironeous");}break; + +case 9: +{SetDeity(oPC, "Hextor");}break; + +case 10: +{SetDeity(oPC, "Kord");}break; + +case 11: +{SetDeity(oPC, "Moradin");}break; + +case 12: +{SetDeity(oPC, "Nerull");}break; + +case 13: +{SetDeity(oPC, "Obad-Hai");}break; + +case 14: +{SetDeity(oPC, "Olidammara");}break; + +case 15: +{SetDeity(oPC, "Pelor");}break; + +case 16: +{SetDeity(oPC, "Saint Cuthburt");}break; + +case 17: +{SetDeity(oPC, "Vecna");}break; + +case 18: +{SetDeity(oPC, "Wee Jas");}break; + +case 19: +{SetDeity(oPC, "Yondalla");}break; + +case 20: +{SetDeity(oPC, "Mystra");}break; + +case 21: +{SetDeity(oPC, "Tyr");}break; +} +if (GetDeity(oPC)==""){SendMessageToPC(oPC, "You are godless.");} +else {SendMessageToPC(oPC, GetDeity(oPC)+" watches over you.");} + +DelayCommand(4.0, GetRank(oPC)); +} + + +void StoreChall(object oPC) +{ +int oChal; +object oMod = GetModule(); + +if (GetLocalInt(oMod, "d1_complete")==1){oChal = 1;} +if (GetLocalInt(oMod, "d2_complete")==1){oChal = 2;} +if (GetLocalInt(oMod, "d2a_complete")==1){oChal = 3;} +if (GetLocalInt(oMod, "d3_complete")==1){oChal = 4;} +if (GetLocalInt(oMod, "d4_complete")==1){oChal = 5;} +if (GetLocalInt(oMod, "d5_complete")==1){oChal = 6;} + +location lPC = GetLocation(oPC); +string oKills = IntToString(oChal); +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"rqcv")==1) + { + CopyObject(oItem,lPC, oPC, oKills); + DelayCommand(0.5, DestroyObject(oItem)); + return; + } + oItem = GetNextItemInInventory(oPC); + } + + + +} + +void StoreMon(object oPC) +{ +int oMonDead; + +if (GetLocalInt(oPC, "wurmdead")==1){oMonDead = 1;} +if (GetLocalInt(oPC, "balrogdead")==1){oMonDead = 2;} +if (GetLocalInt(oPC, "doppledead")==1){oMonDead = 3;} +if (GetLocalInt(oPC, "pitfienddead")==1){oMonDead = 4;} +if (GetLocalInt(oPC, "hdfienddead")==1){oMonDead = 5;} +if (GetLocalInt(oPC, "paledead")==1){oMonDead = 6;} +if (GetLocalInt(oPC, "marilithdead")==1){oMonDead = 7;} +if (GetLocalInt(oPC, "bossdead")==1){oMonDead = 8;} +if (GetLocalInt(oPC, "lorddead")==1){oMonDead = 9;} +if (GetLocalInt(oPC, "luciferdead")==1){oMonDead = 10;} +location lPC = GetLocation(oPC); +string oKills = IntToString(oMonDead); +object oItem = GetFirstItemInInventory(oPC); +while (GetIsObjectValid(oItem)) + { + if (FindSubString(GetResRef(oItem),"gnpd")==1) + { + CopyObject(oItem,lPC, oPC, oKills); + DelayCommand(0.5, DestroyObject(oItem)); + return; + } + oItem = GetNextItemInInventory(oPC); + } + + + +} + + + + +//void main () {} + diff --git a/_module/nss/scroll_shop.nss b/_module/nss/scroll_shop.nss new file mode 100644 index 0000000..a0a67a5 --- /dev/null +++ b/_module/nss/scroll_shop.nss @@ -0,0 +1,21 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +oTarget = GetObjectByTag("scroll_shop"); +PlaySound("it_paper"); +OpenStore(oTarget, oPC, 0, 0); + +} + diff --git a/_module/nss/search_imbue.nss b/_module/nss/search_imbue.nss new file mode 100644 index 0000000..3a1ffd5 --- /dev/null +++ b/_module/nss/search_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_SEARCH, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/seeing_imbue.nss b/_module/nss/seeing_imbue.nss new file mode 100644 index 0000000..1b8ba11 --- /dev/null +++ b/_module/nss/seeing_imbue.nss @@ -0,0 +1,6 @@ +#include "ts_imbue" + +void main() +{ +TrueSight(); +} diff --git a/_module/nss/send01.nss b/_module/nss/send01.nss new file mode 100644 index 0000000..43106e2 --- /dev/null +++ b/_module/nss/send01.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("Prelude")); +} diff --git a/_module/nss/send02.nss b/_module/nss/send02.nss new file mode 100644 index 0000000..423dce7 --- /dev/null +++ b/_module/nss/send02.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("Chapter1")); +} diff --git a/_module/nss/send03.nss b/_module/nss/send03.nss new file mode 100644 index 0000000..9304ad0 --- /dev/null +++ b/_module/nss/send03.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("Chapter1E")); +} diff --git a/_module/nss/send04.nss b/_module/nss/send04.nss new file mode 100644 index 0000000..188a099 --- /dev/null +++ b/_module/nss/send04.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("Chapter2")); +} diff --git a/_module/nss/send05.nss b/_module/nss/send05.nss new file mode 100644 index 0000000..7272f13 --- /dev/null +++ b/_module/nss/send05.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("Chapter2E")); +} diff --git a/_module/nss/send06.nss b/_module/nss/send06.nss new file mode 100644 index 0000000..98bc201 --- /dev/null +++ b/_module/nss/send06.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("Chapter3")); +} diff --git a/_module/nss/send07.nss b/_module/nss/send07.nss new file mode 100644 index 0000000..cda752d --- /dev/null +++ b/_module/nss/send07.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("Chapter4")); +} diff --git a/_module/nss/send08.nss b/_module/nss/send08.nss new file mode 100644 index 0000000..3ed566b --- /dev/null +++ b/_module/nss/send08.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("XP1-Chapter 1")); +} diff --git a/_module/nss/send09.nss b/_module/nss/send09.nss new file mode 100644 index 0000000..bf8b535 --- /dev/null +++ b/_module/nss/send09.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("XP1-Interlude")); +} diff --git a/_module/nss/send10.nss b/_module/nss/send10.nss new file mode 100644 index 0000000..243789b --- /dev/null +++ b/_module/nss/send10.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("XP1-Chapter 2")); +} diff --git a/_module/nss/send11.nss b/_module/nss/send11.nss new file mode 100644 index 0000000..aa54618 --- /dev/null +++ b/_module/nss/send11.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("XP2_Chapter1")); +} diff --git a/_module/nss/send12.nss b/_module/nss/send12.nss new file mode 100644 index 0000000..301fd63 --- /dev/null +++ b/_module/nss/send12.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("XP2_Chapter2")); +} diff --git a/_module/nss/send13.nss b/_module/nss/send13.nss new file mode 100644 index 0000000..75f90fa --- /dev/null +++ b/_module/nss/send13.nss @@ -0,0 +1,6 @@ +void main() +{ +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_DOMINATE_MONSTER,GetPCSpeaker()); +DelayCommand(2.0,StartNewModule("XP2_Chapter3")); +} diff --git a/_module/nss/sendbane.nss b/_module/nss/sendbane.nss new file mode 100644 index 0000000..400bb80 --- /dev/null +++ b/_module/nss/sendbane.nss @@ -0,0 +1,47 @@ +void main() +{ +object oPC = GetPCSpeaker(); +ActionPauseConversation(); + object oGear = GetItemInSlot(INVENTORY_SLOT_ARMS, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_BELT, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_BOLTS, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_BOOTS, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_CHEST, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_CLOAK, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_HEAD, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_LEFTRING, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_NECK, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_RIGHTRING, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + object oStuff = GetFirstItemInInventory(oPC); + while(GetIsObjectValid(oStuff)) + { + DestroyObject(oStuff); + oStuff = GetNextItemInInventory(oPC); + } + SetXP(oPC, 325000); + CreateItemOnObject("queststone", oPC, 1); + CreateItemOnObject("keepstone", oPC, 1); + CreateItemOnObject("treestone", oPC, 1); + CreateItemOnObject("dwarfstone", oPC, 1); + CreateItemOnObject("chapterstone", oPC, 1); + int nInt=GetGold(oPC); + AssignCommand(oPC, TakeGoldFromCreature(nInt, oPC, TRUE)); + GiveGoldToCreature(oPC, 13000000); + ApplyEffectToObject(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_IMP_DOMINATE_S), oPC); + DelayCommand(4.0,StartNewModule("Dragon's Bane")); +} diff --git a/_module/nss/set_28.nss b/_module/nss/set_28.nss new file mode 100644 index 0000000..b46ee5a --- /dev/null +++ b/_module/nss/set_28.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_004 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/10/2004 4:09:25 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some XP + SetXP(GetPCSpeaker(), 378000); + +} diff --git a/_module/nss/set_40.nss b/_module/nss/set_40.nss new file mode 100644 index 0000000..b512142 --- /dev/null +++ b/_module/nss/set_40.nss @@ -0,0 +1,13 @@ +//:://///////////////////////////////////////////// +//:: FileName at_004 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/10/2004 4:09:25 PM +//::////////////////////////////////////////////// +void main() +{ + // Give the speaker some XP + SetXP(GetPCSpeaker(), 780000); + +} diff --git a/_module/nss/set_all_chall_0.nss b/_module/nss/set_all_chall_0.nss new file mode 100644 index 0000000..a9ccdcd --- /dev/null +++ b/_module/nss/set_all_chall_0.nss @@ -0,0 +1,27 @@ +//:://///////////////////////////////////////////// +//:: FileName set_all_chall_0 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 7/12/2004 1:07:13 AM +//::////////////////////////////////////////////// +#include "cleanup" + +void main() +{ + object oPC = GetPCSpeaker(); + object oMod = GetModule(); + // Set the variables + SetLocalInt(oMod, "hwar_on", 0); + SetLocalInt(oMod, "d1", 0); + SetLocalInt(oMod, "d2", 0); + SetLocalInt(oMod, "d2a", 0); + SetLocalInt(oMod, "d3", 0); + SetLocalInt(oMod, "d4", 0); + SetLocalInt(oMod, "d5", 0); + SetLocalInt(oMod, "challenge", 0); + SetLocalInt(oMod, "xcheck", 0); + SetLocalInt(oPC, "cutscene_on", 0); + SetLocalInt(oMod, "cutscene_flag", 0); + CleanArea(oPC); +} diff --git a/_module/nss/setbook.nss b/_module/nss/setbook.nss new file mode 100644 index 0000000..b6cfbd4 --- /dev/null +++ b/_module/nss/setbook.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetLastClosedBy(); +SetLocalInt(oPC, "bookshelf_opened",1); +SetLocked(OBJECT_SELF, TRUE); +} diff --git a/_module/nss/setspoke.nss b/_module/nss/setspoke.nss new file mode 100644 index 0000000..bc3e898 --- /dev/null +++ b/_module/nss/setspoke.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetPCSpeaker(), "final_Sspoke", 1); +} diff --git a/_module/nss/setxp_hi.nss b/_module/nss/setxp_hi.nss new file mode 100644 index 0000000..e28db1c --- /dev/null +++ b/_module/nss/setxp_hi.nss @@ -0,0 +1,12 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int oXP = GetLocalInt(oPC, "TARGET_XP"); +effect eVis = EffectVisualEffect(VFX_FNF_LOS_HOLY_10); +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_AID, oPC); + +DelayCommand(2.5, SetXP(oPC, oXP)); +DelayCommand(2.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oPC)); +DelayCommand(2.75, ActionResumeConversation()); +} diff --git a/_module/nss/setxp_lo.nss b/_module/nss/setxp_lo.nss new file mode 100644 index 0000000..dbf5905 --- /dev/null +++ b/_module/nss/setxp_lo.nss @@ -0,0 +1,12 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int oXP = GetLocalInt(oPC, "TARGET_XP"); +effect eVis = EffectVisualEffect(VFX_FNF_LOS_EVIL_10); +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_NEGATIVE_ENERGY_BURST, oPC); + +DelayCommand(2.5, SetXP(oPC, oXP)); +DelayCommand(2.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oPC)); +DelayCommand(2.75, ActionResumeConversation()); +} diff --git a/_module/nss/sf_cutscene.nss b/_module/nss/sf_cutscene.nss new file mode 100644 index 0000000..9b7ffb0 --- /dev/null +++ b/_module/nss/sf_cutscene.nss @@ -0,0 +1,223 @@ +#include "cutscene_ch1" + +void FinalPlace(int iPlace, string sObj, string sWay) +{ +object oTarget2 = GetWaypointByTag(sWay); +location lTarget2 = GetLocation(oTarget2); +object oSpawn2 = CreateObject(iPlace, sObj, lTarget2); +} + +void MakeFire(string oPlaceable, string sWaypoint) +{ +effect eLight = EffectVisualEffect(VFX_DUR_LIGHT_BLUE_20); +object oTarget = GetWaypointByTag(sWaypoint); +location lTarget = GetLocation(oTarget); +object oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, oPlaceable, lTarget); +ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLight, oSpawn); +} + + +void CutsceneEffect4(float oDelay, int iDuration, int oEffect, object oTarget) +{ + +int nInt; +nInt = GetObjectType(oTarget); +effect eEffect; +eEffect = EffectVisualEffect(oEffect); +DelayCommand(oDelay, ApplyEffectToObject(iDuration, + eEffect, oTarget)); +} + + +void FlyOff2(object oPC) +{ +GestaltApplyEffect(1.0, oPC, EffectVisualEffect(VFX_IMP_PULSE_WIND), INSTANT); +GestaltApplyEffect(0.0, oPC, EffectDisappear(), PERMANENT); +} + + +void TakeFlight2(float oDelay, object oPC) +{ +DelayCommand(oDelay, FlyOff2(oPC)); +} + + +void main() +{ +object oPC = OBJECT_SELF; +object oMod = GetModule(); +object oArea = GetArea(oPC); +object oTarget; +object oTarget1; +object oSpawn; +object oStarfall = GetObjectByTag("starfall"); +object oCaster; +object oWP1=GetWaypointByTag("limbo_portal_wp"); +object oPort = GetWaypointByTag("limbo_portal_pc"); +location iLocation = GetLocation(GetWaypointByTag("limbo_portal_sf")); +location iLocation2 = GetLocation(GetWaypointByTag("limbo_portal_pc")); +location lTarget; +int iMode = GetLocalInt(oMod, "gamemode"); + + + // Initiate cutscene mode + +GestaltStartCutscene(oPC, "",TRUE,TRUE,TRUE,FALSE,2); + +// Fade camera in + +GestaltCameraFade(0.0, oPC, FADE_IN,FADE_SPEED_FAST); + +GestaltSpeak(2.0, oStarfall, "Congratulations "+GetName(oPC)+". You have trancended beyond your limitations as a mortal!", + ANIMATION_FIREFORGET_VICTORY2); + +GestaltSpeak(8.0, oPC, "I have?", + ANIMATION_LOOPING_TALK_PLEADING, 2.0); + +GestaltSpeak(12.0, oStarfall, "Yes! You have conquored every arena challenge and defeated me in a duel!", + ANIMATION_NONE); + +GestaltSpeak(19.0, oStarfall, "Come, I have something to show you!", + ANIMATION_NONE); + + + + +oCaster = oStarfall; +oTarget = oPC; +GestaltFace(20.0, oStarfall, 0.0, 2, oTarget); +CutsceneEffect4(25.0, DURATION_TYPE_PERMANENT, VFX_DUR_GLOBE_INVULNERABILITY , oPC); +GestaltActionSpellCast(23.0, oStarfall, oPC, + SPELL_LIGHTNING_BOLT, TRUE, PROJECTILE_PATH_TYPE_DEFAULT, "", TRUE, FALSE); +GestaltSpeak(26.0, oStarfall, "The atmosphere isn't safe where we are going! That energy sphere will protect you!", + ANIMATION_NONE); +GestaltSpeak(30.0, oStarfall, "Let's go!", + ANIMATION_NONE); +GestaltActionSpellCast(33.0, oStarfall, oPC, + SPELL_POWER_WORD_STUN, TRUE, PROJECTILE_PATH_TYPE_DEFAULT, "", TRUE, FALSE); + +GestaltApplyEffect(35.0, oPC, EffectVisualEffect(VFX_IMP_ELEMENTAL_PROTECTION), INSTANT); +GestaltApplyEffect(35.2, oStarfall, EffectVisualEffect(VFX_IMP_ELEMENTAL_PROTECTION), INSTANT); + +GestaltJump(36.5, oStarfall, OBJECT_INVALID, "limbo_portal_sf"); +GestaltJump(36.5, oPC, OBJECT_INVALID, "limbo_portal_pc"); + +GestaltSpeak(45.0, oStarfall, "Hmmm...", + ANIMATION_NONE); + +if (iMode==1){GestaltAnimate(48.0, oStarfall, ANIMATION_FIREFORGET_TAUNT);} +else{GestaltAnimate(48.0, oStarfall, ANIMATION_FIREFORGET_VICTORY2);} +CutsceneEffect(49.0, VFX_FNF_FIREBALL, "sf_fire1"); +CutsceneEffect(49.3, VFX_FNF_FIREBALL, "sf_fire2"); +CutsceneEffect(49.6, VFX_FNF_FIREBALL, "sf_fire3"); + +DelayCommand(49.2, MakeFire("sf_fire", "sf_fire1")); +DelayCommand(49.5, MakeFire("sf_fire", "sf_fire2")); +DelayCommand(49.7, MakeFire("sf_fire", "sf_fire3")); + + +GestaltSpeak(54.0, oStarfall, "That's better....", + ANIMATION_NONE); +GestaltSpeak(60.0, oStarfall, "Welcome to Limbo, the place where time does not exist.", + ANIMATION_NONE); + +GestaltSpeak(64.0, oPC, "Why have you brought me here?", + ANIMATION_NONE); + +GestaltSpeak(67.0, oStarfall, "That's a good question.", + ANIMATION_NONE); + +GestaltSpeak(70.0, oStarfall, "You have been brought here so that time can pass in the 3rd realm without us having to wait.", + ANIMATION_NONE); + +GestaltSpeak(76.0, oPC, "Wait for what?", + ANIMATION_LOOPING_TALK_PLEADING, 2.0); + +GestaltSpeak(80.0, oStarfall, "Why, your initiation ceremony of course!", + ANIMATION_FIREFORGET_VICTORY2); + +GestaltSpeak(86.0, oStarfall, "You are the first mortal who has ever trancended to become the supreme arena champion!", + ANIMATION_LOOPING_TALK_PLEADING, 4.0); + +GestaltSpeak(92.0, oStarfall, "Therefore, we will have a great ceremony to induct you into the fellowship of supreme champions.", + ANIMATION_NONE); + + GestaltSpeak(106.0, oPC, "I see...", + ANIMATION_NONE); + +GestaltSpeak(109.0, oStarfall, "Just take the portal when you are ready. Then, my friend, you shall certainly see!", + ANIMATION_NONE); + +GestaltSpeak(113.0, oPC, "What portal???", + ANIMATION_LOOPING_TALK_FORCEFUL, 4.0); + +GestaltSpeak(116.0, oStarfall, "This portal...", + ANIMATION_NONE); + +object oTarget2 = GetWaypointByTag("limbo_portal_wp"); +DelayCommand(118.0, AssignCommand(oStarfall, +ActionCastFakeSpellAtLocation(SPELL_BANISHMENT, +GetLocation(oTarget2), PROJECTILE_PATH_TYPE_DEFAULT))); +CutsceneEffect(119.5, VFX_FNF_FIREBALL, "limbo_portal_wp"); +DelayCommand(119.6, CutscenePlace("limbo_portal", "limbo_portal_wp")); + + + + +DelayCommand(124.0, PlayVoiceChat(VOICE_CHAT_LAUGH, oStarfall)); + +GestaltFace (125.0, oStarfall, 0.0, 2, oPC); + +GestaltSpeak(127.0, oStarfall, "See you there...", + ANIMATION_FIREFORGET_GREETING); + +GestaltFace (128.5, oStarfall, 0.0, 2, oWP1); + +TakeFlight2(129.0, oStarfall); + +DelayCommand(135.0, FinalPlace(OBJECT_TYPE_CREATURE, "starfall", "starfall_wp")); +DelayCommand(136.0, FinalPlace(OBJECT_TYPE_PLACEABLE, "limbo_portal", "arena_home")); + + + +// Set up camera + +SetLocalFloat(oPC,"fCameraDirection",210.0); +SetLocalFloat(oPC,"fCameraRange",16.0); +SetLocalFloat(oPC,"fCameraPitch",75.0); + +// camera choreograpgy + +GestaltCameraMove (0.0, + 210.0,16.0,75.0, + 232.0, 10.0,70.0, + 10.0,30.0,oPC); + +GestaltCameraMove (10.0, + 232.0,10.0,70.0, + 232.0,10.0,70.0, + 30.0,30.0,oPC); + +GestaltCameraMove (40.0, + 232.0,10.0,70.0, + 232.0,25.0,75.0, + 10.0,30.0,oPC); + + GestaltCameraMove (50.0, + 232.0,25.0,75.0, + 400.0,18.0,65.0, + 35.0,30.0,oPC); + +GestaltCameraMove (85.0, + 400.0,18.0,65.0, + 420.0,14.0,75.0, + 35.0,30.0,oPC); +// Fade camera out + +GestaltCameraFade (135.0, oPC, FADE_OUT, FADE_SPEED_SLOW, 3.0); + +// end of cutscene + +GestaltStopCutscene (138.0, oPC); + +} diff --git a/_module/nss/sf_death.nss b/_module/nss/sf_death.nss new file mode 100644 index 0000000..e889ce9 --- /dev/null +++ b/_module/nss/sf_death.nss @@ -0,0 +1,262 @@ +//#include "NW_I0_GENERIC" +//#include "spawner" +//#include "rank" + +#include "in_g_cutscene" +#include "x0_i0_petrify" + +void JoinTeam3(object oSelf, object oPC) +{ + int iDone = 0; + object oCreature; + object oTeam; + string sSide; + +oCreature = GetFirstObjectInArea(OBJECT_SELF); +while ((GetObjectType(oCreature)!=OBJECT_TYPE_CREATURE)|| + (!GetIsEnemy(oCreature, oSelf))||(GetIsPC(oCreature))|| + (GetTag(oCreature)=="starfall")||(GetTag(oCreature)=="reaper")) + { + oCreature =GetNextObjectInArea(OBJECT_SELF); + } +//FloatingTextStringOnCreature(GetName(OBJECT_SELF), oPC); +//FloatingTextStringOnCreature(GetName(oCreature), oPC); + +if ((GetResRef(oCreature)=="dragon1")||(GetResRef(oCreature)=="zep_halfdrafn001")|| + (GetResRef(oCreature)=="zep_marilithb001")||(GetResRef(oCreature)=="bard2")|| + (GetResRef(oCreature)=="zep_pitfiend001")||(GetResRef(oCreature)=="zep_balrog001")|| + (GetResRef(oCreature)=="dopple")||(GetResRef(oCreature)=="mistress2")|| + (GetResRef(oCreature)=="notime3")||(GetResRef(oCreature)=="notime4")|| + (GetResRef(oCreature)=="darcher")||(GetResRef(oCreature)=="death")) + { + sSide = "You have joined the Champions of Darkness"; + SetLocalInt(oPC, "pc_side", 2); + } +else + { + sSide = "You have joined the Champions of Light"; + SetLocalInt(oPC, "pc_side", 1); + } + +AdjustReputation(oPC, oCreature, 100); +SetIsTemporaryFriend(oPC, oCreature); + +oTeam = GetFirstFactionMember(oCreature, FALSE); +while (GetIsObjectValid(oTeam)) + { + //AdjustReputation(oPC, oTeam, 100); + SetIsTemporaryFriend(oPC, oTeam, FALSE); + oTeam = GetNextFactionMember(oCreature, FALSE); + } +FloatingTextStringOnCreature(sSide, oPC); +} + +void LastHit4() +{ + + object oMod = GetModule(); + object oPC = GetLastDamager(OBJECT_SELF); + int oDam = GetTotalDamageDealt(); + string oAtt; + string oSelf; + string oMon; + object oDest; + int oHit; + int oMhit; + int oPCdam; + int oSDTaken; + int oUDTaken; + int oSDDealt; + int oUDDealt; + int iSFhit; + int iSFdam; + int iFBhit; + int iFBdam; + int oHWdam; + int oHWhit; + int iCHdam; + int iCHhit; + int iArenaChall =GetLocalInt(oMod, "challenge"); + int iSFDuel =GetLocalInt(oMod, "duel_on"); + int iWarWon = GetLocalInt(oMod, "war_won"); + int iJoinSwitch = GetLocalInt(oPC, "join_switch"); + int iHwar = GetLocalInt(oMod, "hwar_on"); + //FloatingTextStringOnCreature("duel on: "+IntToString(GetLocalInt(oMod, "duel_on")), oPC); + + + + if (GetIsPC(oPC)) + { + oHit = GetLocalInt(oPC, "pc_hit"); + oPCdam = GetLocalInt(oPC, "player_dd"); + ++oHit; + oPCdam+=oDam; + SetLocalInt(oPC, "pc_hit", oHit); + SetLocalInt(oPC, "player_dd", oPCdam); + if (iHwar==1) + { + oHWdam = GetLocalInt(oPC, "pc_HWdam"); + oHWhit = GetLocalInt(oPC, "pc_HWhit"); + ++oHWhit; + oHWdam+=oDam; + SetLocalInt(oPC, "pc_HWhit", oHWhit); + SetLocalInt(oPC, "pc_HWdam", oHWdam); + } + if (iArenaChall==1) + { + iCHdam = GetLocalInt(oPC, "pc_CHdam"); + iCHhit = GetLocalInt(oPC, "pc_CHhit"); + iCHdam+=oDam; + ++iCHhit; + SetLocalInt(oPC, "pc_CHhit", iCHhit); + SetLocalInt(oPC, "pc_CHdam", iCHdam); + } + } +} + + +void SEffect(float oDelay, int oEffect, string oWaypoint) +{ +object oTarget; +oTarget = GetObjectByTag(oWaypoint); +int nInt; +nInt = GetObjectType(oTarget); +effect eEffect; +eEffect = EffectVisualEffect(oEffect); +if (nInt != OBJECT_TYPE_WAYPOINT) + DelayCommand(oDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, + eEffect, oTarget)); +else + DelayCommand(oDelay, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oTarget))); +} + + + void ResetFac(object oPC) +{ + + object oMod = GetModule(); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oPC, PlaySound("sce_negative")); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); +} + + + +void spawner5(string oCreature) +{ + + object oTarget = GetWaypointByTag("starfall_wp"); + location lTarget = GetLocation(oTarget); + object oSpawn = CreateObject(OBJECT_TYPE_CREATURE, oCreature, lTarget); + +} + + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oTarget= OBJECT_SELF; + object oSpawner = GetObjectByTag("spawner"); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oItem1, oItem2; + int oDam = GetTotalDamageDealt(); + int oGameMode = GetLocalInt(oMod, "gamemode"); + int nInt1 = GetLocalInt(oMod, "st1"); + int nInt2 = GetLocalInt(oMod, "st2"); + int nInt3 = GetLocalInt(oMod, "st3"); + int nInt4 = GetLocalInt(oMod, "st4"); + int nInt5 = GetLocalInt(oMod, "st5"); + + location lTarget; + int nInt; + int iSFdam; + int iSFhit; + int iSFswing; + + int iKilled = GetLocalInt(oPC, "iKilled"); + LastHit4(); + iSFdam = GetLocalInt(oPC, "pc_SFdam"); + iSFhit = GetLocalInt(oPC, "pc_SFhit"); + iSFdam+=oDam; + ++iSFhit; + SetLocalInt(oPC, "pc_SFhit", iSFhit); + SetLocalInt(oPC, "pc_SFdam", iSFdam); + if (GetName(GetLastWeaponUsed(oPC))=="") + { + iSFswing = GetLocalInt(oPC, "pc_SFswing"); + ++iSFswing; + SetLocalInt(oPC, "pc_SFswing", iSFswing); + } + + + + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + //GetRank(oPC); + AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + + DelayCommand(2.0, PlaySound("sce_neutral")); + DelayCommand(2.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + if (nInt5==1) + { + int iMode = GetLocalInt(oMod, "gamemode"); + if (iMode==1) + {AddJournalQuestEntry("mephisto", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("starfall", 1, oPC, FALSE, FALSE);} + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + SetLocalInt(oPC, "starfall_dead", 1); + oItem1 = GetItemPossessedBy(oPC, "duel_pass"); + if (GetIsObjectValid(oItem1)) + {DestroyObject(oItem1);} + CreateItemOnObject("duel_pass2", oPC); + + } + string oStar = GetTag(oTarget); + SEffect(7.0, VFX_DUR_ELEMENTAL_SHIELD, oStar); + SEffect(8.0, VFX_IMP_LIGHTNING_M, oStar); + SEffect(8.5, VFX_IMP_LIGHTNING_M, oStar); + SEffect(8.7, VFX_IMP_LIGHTNING_M, oStar); + SEffect(9.2, VFX_IMP_LIGHTNING_M, oStar); + SEffect(9.6, VFX_IMP_LIGHTNING_M, oStar); + SEffect(9.7, VFX_IMP_LIGHTNING_M, oStar); + SEffect(9.8, VFX_IMP_LIGHTNING_M, oStar); + SEffect(9.9, VFX_FNF_MYSTICAL_EXPLOSION, oStar); + + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + if (oGameMode==1) + { + DelayCommand(9.6, spawner5 ("mephisto")); + } + else + { + DelayCommand(9.6, spawner5 ("starfall")); + } + + DelayCommand(9.8, SetIsTemporaryFriend(oPC, GetObjectByTag("starfall"))); + SetPlotFlag(oTarget, TRUE); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + ResetFac(oPC); + ExecuteScript("nw_c2_default7", OBJECT_SELF); + +} diff --git a/_module/nss/sf_onconv.nss b/_module/nss/sf_onconv.nss new file mode 100644 index 0000000..8612953 --- /dev/null +++ b/_module/nss/sf_onconv.nss @@ -0,0 +1,35 @@ + + +void main() +{ + object oPC = GetLastSpeaker(); + object oMod = GetModule(); + int iMode = GetLocalInt(GetModule(), "gamemode"); + int nInt1 = GetLocalInt(oPC, "luciferdead"); + int nInt2 = GetLocalInt(oPC, "starfall_dead"); + int nInt3 = GetLocalInt(oMod, "d1_complete"); + int nInt4 = GetLocalInt(oMod, "d2_complete"); + int nInt5 = GetLocalInt(oMod, "d2a_complete"); + int nInt6 = GetLocalInt(oMod, "d3_complete"); + int nInt7 = GetLocalInt(oMod, "d4_complete"); + int nInt8 = GetLocalInt(oMod, "d5_complete"); + + if ((nInt1==1)&&(nInt2==1)&&(nInt3==1)&&(nInt4==1)&& + (nInt5==1)&&(nInt6==1)&&(nInt7==1)&&(nInt8==1)&& + (GetItemPossessedBy(oPC, "final_ring")==OBJECT_INVALID)) + { + ExecuteScript("sf_cutscene", oPC); + } + else + { + if (iMode==1) + { + PlaySound("vs_nx2mephm_yes"); + } + else + { + PlaySound("vs_nnwgrdm2_yes"); + } + ActionStartConversation(oPC, "angel4", FALSE, FALSE); + } +} diff --git a/_module/nss/sf_percept.nss b/_module/nss/sf_percept.nss new file mode 100644 index 0000000..9f4bbc0 --- /dev/null +++ b/_module/nss/sf_percept.nss @@ -0,0 +1,51 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_percept +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default On Perception script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// + +void SetFacingWaypoint(object oPC, string sWaypoint) +{ +object oTarget = GetWaypointByTag(sWaypoint); +vector vFace=GetPosition(oTarget); +AssignCommand(oPC, SetFacingPoint(vFace)); +} + + +void main() +{ +object oPC = GetLastPerceived(); +object oMod = GetModule(); +object oCaster; +object oTarget; + +//if (!GetLastPerceptionSeen()) return; +int iMode = GetLocalInt(oMod, "duel_on"); +if ((iMode!=1)&&(GetIsPC(oPC))&&(GetIsDead(oPC))) + { + location iLocation = GetLocation(oPC); + location iLocation2 = GetLocation(GetWaypointByTag("starfall_wp")); + oCaster = OBJECT_SELF; + oTarget = oPC; + if (GetDistanceToObject(oPC)<2.0) + { + AssignCommand(oCaster, ActionMoveToLocation(iLocation)); + DelayCommand(5.0, AssignCommand(oCaster, ActionMoveToLocation(iLocation2))); + } + AssignCommand(oCaster, ActionCastSpellAtObject + (SPELL_RESURRECTION, oTarget, METAMAGIC_ANY, TRUE, 20, + PROJECTILE_PATH_TYPE_DEFAULT, FALSE)); + + DelayCommand(10.0, SetFacingWaypoint(oCaster, "sf_facing")); + } +else + { + ExecuteScript("nw_c2_default2", OBJECT_SELF); + } +} diff --git a/_module/nss/sf_score.nss b/_module/nss/sf_score.nss new file mode 100644 index 0000000..e07701b --- /dev/null +++ b/_module/nss/sf_score.nss @@ -0,0 +1,132 @@ + + +void main() +{ + + // Get the first player + object oPC = GetPCSpeaker(); + //object oPC = GetFirstPC(); + object oMod = GetModule(); + float fPerc; + int iHeav; + int iHell; + int iDied; + int iKilled; + int hVLoss; + int hLLoss; + int iHit; + int iPCdamage; + int iHvcas; + int iHlcas; + int iHvTotCas; + int iHlTotCas; + int aDamage; + int iDice; + int iSwing; + int iHitPerc; + int iHWkills; + int iHWdeaths; + int iHWdam; + int iHWhit; + int iHWswing; + int aScore; + int iHWPCkillTot; + int iHWPCdeathTot; + int iSwitch = GetLocalInt(oMod, "score_switch"); + int iChamp = GetLocalInt(oPC, "champ_won"); + + string sPRes2; + string sPRes; + string oRank; + string oDam; + string iMessage; + string SpeakText; + string sChamp = GetLocalString(oMod, "sChamp"); + + PlaySound("gui_select"); + + //generate message + + iDice = d8(); + switch(iDice) + { + case 1: {iMessage = "Victory is written in blood!";}break; + case 2: {iMessage = "Winning a war is about making others die for their country!";}break; + case 3: {iMessage = "A stained soul is a remorseless weapon!";}break; + case 4: {iMessage = "Honour and glory are mortal enemies!";}break; + case 5: {iMessage = "A strong sword is useless to a weak heart!";}break; + case 6: {iMessage = "A blunt sword and a sharp wit are better than the converse!";}break; + case 7: {iMessage = "Love and war know nothing true of each other!";}break; + case 8: {iMessage = "Good and evil can not exist without each other!";}break; + case 9: {iMessage = "The blood of the earth begets the blood of mankind!";}break; + case 10: {iMessage = "Indifference is the true enemy of hatred!";}break; + } + if (iChamp==1) + {iMessage = "Congratulations! You are the Holy War Champion";} + + + + + + // initialise stat integers + + iDied = GetLocalInt (oPC,"iDied"); + iKilled = GetLocalInt (oPC,"iKilled"); + iPCdamage = GetLocalInt(oPC, "player_dd"); + iHit = GetLocalInt(oPC, "pc_hit"); + iSwing = GetLocalInt(oPC, "pc_swing"); + aScore = GetLocalInt(oPC, "a_score"); + + + + // Calculate average damage (divide by zero will crash the script) + + if (iHit!=0) + {aDamage = iPCdamage / iHit;} + else {aDamage = 0;} + + // Calculate Hit % + + if (iSwing!=0) + { + fPerc = (IntToFloat(iHit) / IntToFloat(iSwing)) * 100.0; + iHitPerc = FloatToInt(fPerc); + + } + else + {iHitPerc=0;} + + + + // generate text for scoreboard + + SpeakText = "\n====================\n"; + SpeakText += GetName(oPC); + SpeakText += "\n--------------------\n"; + SpeakText += "Rank: "; + SpeakText += GetLocalString(oPC, "rank"); + SpeakText += "\n\nKills: "; + SpeakText += IntToString(iKilled); + SpeakText += "\nDeaths: "; + SpeakText += IntToString(iDied); + SpeakText += "\nHits: "; + SpeakText += IntToString(iHit); + SpeakText += "\nAccuracy: "; + SpeakText += IntToString(iHitPerc); + SpeakText += "%"; + SpeakText += "\nTotal Damage: "; + SpeakText += IntToString(iPCdamage); + SpeakText += "\nAverage Damage: "; + SpeakText += IntToString(aDamage); + SpeakText += "\nArena Score: "; + if (aScore==0){ SpeakText += "NCC";} + else {SpeakText += IntToString(aScore);} + SpeakText += "\n\n--------------------\n"; + //SpeakText += iMessage; + +// Display the scoreboard details + + SpeakString(SpeakText); + } + +// [Reset Holy War Scores] [Reset Holy War Scores] diff --git a/_module/nss/sfabj_imbue.nss b/_module/nss/sfabj_imbue.nss new file mode 100644 index 0000000..a2488aa --- /dev/null +++ b/_module/nss/sfabj_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_SPELLFOCUSABJ); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/sfcon_imbue.nss b/_module/nss/sfcon_imbue.nss new file mode 100644 index 0000000..2773487 --- /dev/null +++ b/_module/nss/sfcon_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_SPELLFOCUSCON); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/sfdiv_imbue.nss b/_module/nss/sfdiv_imbue.nss new file mode 100644 index 0000000..6856bb9 --- /dev/null +++ b/_module/nss/sfdiv_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_SPELLFOCUSDIV); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/sfenc_imbue.nss b/_module/nss/sfenc_imbue.nss new file mode 100644 index 0000000..620866e --- /dev/null +++ b/_module/nss/sfenc_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_SPELLFOCUSENC); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/sfevo_imbue.nss b/_module/nss/sfevo_imbue.nss new file mode 100644 index 0000000..ff5ea28 --- /dev/null +++ b/_module/nss/sfevo_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_SPELLFOCUSEVO); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/sfill_imbue.nss b/_module/nss/sfill_imbue.nss new file mode 100644 index 0000000..3a00807 --- /dev/null +++ b/_module/nss/sfill_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_SPELLFOCUSILL); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/sfnec_imbue.nss b/_module/nss/sfnec_imbue.nss new file mode 100644 index 0000000..c54f4a6 --- /dev/null +++ b/_module/nss/sfnec_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_SPELLFOCUSNEC); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/shamm_imbue25.nss b/_module/nss/shamm_imbue25.nss new file mode 100644 index 0000000..5510426 --- /dev/null +++ b/_module/nss/shamm_imbue25.nss @@ -0,0 +1,8 @@ +#include "ac_imbue2" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "shammdone_1", 1); +DodgeBonus(1); +} diff --git a/_module/nss/shammdone_1.nss b/_module/nss/shammdone_1.nss new file mode 100644 index 0000000..27d36dd --- /dev/null +++ b/_module/nss/shammdone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/shammed_1.nss b/_module/nss/shammed_1.nss new file mode 100644 index 0000000..7029778 --- /dev/null +++ b/_module/nss/shammed_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/shammed_11.nss b/_module/nss/shammed_11.nss new file mode 100644 index 0000000..7fff981 --- /dev/null +++ b/_module/nss/shammed_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/shammed_7.nss b/_module/nss/shammed_7.nss new file mode 100644 index 0000000..15252d7 --- /dev/null +++ b/_module/nss/shammed_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/shammmax_reached.nss b/_module/nss/shammmax_reached.nss new file mode 100644 index 0000000..c6c73d7 --- /dev/null +++ b/_module/nss/shammmax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammmax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/shammred1_1.nss b/_module/nss/shammred1_1.nss new file mode 100644 index 0000000..d04a231 --- /dev/null +++ b/_module/nss/shammred1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/shammred_0.nss b/_module/nss/shammred_0.nss new file mode 100644 index 0000000..7044dd3 --- /dev/null +++ b/_module/nss/shammred_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/shammred_10.nss b/_module/nss/shammred_10.nss new file mode 100644 index 0000000..9f41556 --- /dev/null +++ b/_module/nss/shammred_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/shammred_12.nss b/_module/nss/shammred_12.nss new file mode 100644 index 0000000..4adc710 --- /dev/null +++ b/_module/nss/shammred_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/shammred_2.nss b/_module/nss/shammred_2.nss new file mode 100644 index 0000000..c2ec405 --- /dev/null +++ b/_module/nss/shammred_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/shammred_3.nss b/_module/nss/shammred_3.nss new file mode 100644 index 0000000..02239fb --- /dev/null +++ b/_module/nss/shammred_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/shammred_4.nss b/_module/nss/shammred_4.nss new file mode 100644 index 0000000..ad6c1b3 --- /dev/null +++ b/_module/nss/shammred_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/shammred_6.nss b/_module/nss/shammred_6.nss new file mode 100644 index 0000000..c6c835f --- /dev/null +++ b/_module/nss/shammred_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/shammred_8.nss b/_module/nss/shammred_8.nss new file mode 100644 index 0000000..5ef02d4 --- /dev/null +++ b/_module/nss/shammred_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/shammred_9.nss b/_module/nss/shammred_9.nss new file mode 100644 index 0000000..f13acff --- /dev/null +++ b/_module/nss/shammred_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "shammdone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/shapechange.nss b/_module/nss/shapechange.nss new file mode 100644 index 0000000..d068226 --- /dev/null +++ b/_module/nss/shapechange.nss @@ -0,0 +1,78 @@ +void ShapeChange(object oPC, int iType); + +void main() +{ +object oPC = GetPCSpeaker(); +string sThousand = GetLocalString(oPC, "THOUSAND"); +string sHundred = GetLocalString(oPC, "HUNDRED"); +string sTen = GetLocalString(oPC, "TEN"); +string sOne = GetLocalString(oPC, "ONE"); +string sType = sThousand + sHundred + sTen + sOne; +int iType = StringToInt(sType); +if ( + 311504 + ) + { + ExecuteScript("clear_app",OBJECT_SELF); + ActionResumeConversation(); + return; + } + +ShapeChange(oPC, iType); +ExecuteScript("clear_app",OBJECT_SELF); +ActionResumeConversation(); +} + +void ShapeChange(object oPC, int iType) +{ +effect eVis = EffectVisualEffect(VFX_FNF_GREATER_RUIN); +ActionPauseConversation(); +ActionCastFakeSpellAtObject(SPELL_INCENDIARY_CLOUD, oPC); +DelayCommand(2.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oPC)); +DelayCommand(3.3, SetCreatureAppearanceType(oPC, iType)); +} diff --git a/_module/nss/shield_check.nss b/_module/nss/shield_check.nss new file mode 100644 index 0000000..bdf9694 --- /dev/null +++ b/_module/nss/shield_check.nss @@ -0,0 +1,16 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); + +if (GetBaseItemType(GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oPC))==BASE_ITEM_TOWERSHIELD) + return FALSE; + +return TRUE; +} + diff --git a/_module/nss/shield_shop.nss b/_module/nss/shield_shop.nss new file mode 100644 index 0000000..cf7469d --- /dev/null +++ b/_module/nss/shield_shop.nss @@ -0,0 +1,24 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +if (GetItemPossessedBy(oPC, "nordock_token")!=OBJECT_INVALID) +oTarget = GetObjectByTag("n_shield"); +else +oTarget = GetObjectByTag("shield_shop"); +PlaySound("it_metalbluntlrg"); +OpenStore(oTarget, oPC, 0, 0); + +} + diff --git a/_module/nss/shop_insurance.nss b/_module/nss/shop_insurance.nss new file mode 100644 index 0000000..e8cdf17 --- /dev/null +++ b/_module/nss/shop_insurance.nss @@ -0,0 +1,11 @@ + +void main() +{ + + object oPC = GetPCSpeaker(); + //SetLocalInt(oPC, "haggle", 0); + CreateItemOnObject("insurance", oPC); + TakeGoldFromCreature(40000, oPC); + SetLocalInt(oPC, "refund", 40000); + PlaySound("it_coins"); + } diff --git a/_module/nss/shop_insurance2.nss b/_module/nss/shop_insurance2.nss new file mode 100644 index 0000000..f6a250e --- /dev/null +++ b/_module/nss/shop_insurance2.nss @@ -0,0 +1,11 @@ + +void main() +{ + + object oPC = GetPCSpeaker(); + //SetLocalInt(oPC, "haggle", 0); + CreateItemOnObject("insurance", oPC); + TakeGoldFromCreature(30000, oPC); + SetLocalInt(oPC, "refund", 30000); + PlaySound("it_coins"); + } diff --git a/_module/nss/shop_insurance3.nss b/_module/nss/shop_insurance3.nss new file mode 100644 index 0000000..438be83 --- /dev/null +++ b/_module/nss/shop_insurance3.nss @@ -0,0 +1,11 @@ + +void main() +{ + + object oPC = GetPCSpeaker(); + //SetLocalInt(oPC, "haggle", 0); + CreateItemOnObject("insurance", oPC); + TakeGoldFromCreature(20000, oPC); + SetLocalInt(oPC, "refund", 20000); + PlaySound("it_coins"); + } diff --git a/_module/nss/show2.nss b/_module/nss/show2.nss new file mode 100644 index 0000000..41a988e --- /dev/null +++ b/_module/nss/show2.nss @@ -0,0 +1,172 @@ +#include "g_startfireworks" +#include "cutscene_ch1" +#include "cutscene_ch2" + + /*case 1: iVoice = VOICE_CHAT_ATTACK;break; + case 2: iVoice = VOICE_CHAT_BATTLECRY1;break; + case 3: iVoice = VOICE_CHAT_BATTLECRY2;break; + case 4: iVoice = VOICE_CHAT_BATTLECRY3;break; + case 5: iVoice = VOICE_CHAT_THREATEN;break; + case 6: iVoice = VOICE_CHAT_CHEER;break; + case 7: iVoice = VOICE_CHAT_CUSS;break; + case 8: iVoice = VOICE_CHAT_FLEE;break; + case 9: iVoice = VOICE_CHAT_GOODBYE;break; + case 10: iVoice = VOICE_CHAT_THANKS;break; + case 11: iVoice = VOICE_CHAT_WEAPONSUCKS;break; + case 12: iVoice = VOICE_CHAT_LAUGH;break; + case 13: iVoice = VOICE_CHAT_HELLO;break; + case 14: iVoice = VOICE_CHAT_FOLLOWME;break; + case 15: iVoice = VOICE_CHAT_GOODIDEA;break; + case 16: iVoice = VOICE_CHAT_REST;break; + case 17: iVoice = VOICE_CHAT_YES;break; + + GestaltApplyEffect(0.0, oPC, eEffect, INSTANT, 0.0, ""); + GestaltActionAnimate(0.0, oPC, ANIMATION_FIREFORGET_BOW); +*/ +void FWEffect2(float oDelay, int oEffect, string oWaypoint) +{ +object oTarget; +oTarget = GetObjectByTag(oWaypoint); +int nInt; +nInt = GetObjectType(oTarget); +effect eEffect; +eEffect = EffectVisualEffect(oEffect); +if (nInt != OBJECT_TYPE_WAYPOINT) + DelayCommand(oDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, + eEffect, oTarget)); +else + DelayCommand(oDelay, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oTarget))); +} + + +void main() +{ +object oMod = GetModule(); +object oPC = GetPCSpeaker(); + +object oNPC = OBJECT_SELF; +object oArea = GetArea(oPC); +object oSource = GetObjectByTag("FireworksSource"); + +object oWP1 = GetWaypointByTag("pc_rug"); +object oWP2 = GetWaypointByTag("npc_rug"); +object oWP3 = GetWaypointByTag("show_face"); +object oWP4 = GetWaypointByTag("rug_aim"); +object oWP4a = GetWaypointByTag("rug_aim2"); +object oWP5 = GetWaypointByTag("lake_wp"); +object oWP6 = GetWaypointByTag("lake_wp1"); + +SetLocalInt(oSource,"FireworkCount", 10); +//SetLocalInt(oMod, "one_only", 0); + + +GestaltStartCutscene(oPC, "",TRUE,TRUE,TRUE,TRUE,2); +GestaltCameraFade(0.0, oPC, FADE_IN,FADE_SPEED_SLOW); + +DelayCommand(25.0, StartShow(oPC)); + + +GestaltActionMove(0.0,oNPC, oWP2, FALSE, 0.0, 0.0); +GestaltActionMove(0.5,oPC, oWP1, FALSE, 0.0, 0.0); + +GestaltFace(2.0, oPC, 0.0, 2, oNPC); +GestaltFace(2.2, oNPC, 0.0, 2, oPC); + +GestaltFace(15.0, oPC, 0.0, 2, oWP3); +GestaltFace(15.5, oNPC, 0.0, 2, oWP3); + +GestaltActionAnimate(15.5, oPC, ANIMATION_LOOPING_SIT_CROSS, 210.0); + +GestaltSpeak(5.0, oPC, "I can hardly wait!", + ANIMATION_NONE); +GestaltSpeak(9.0, oNPC, "I too never tire of watching the colored lights.....ok ready?", + ANIMATION_NONE); +GestaltSpeak(13.0, oPC, "Let's go!", + ANIMATION_NONE); +GestaltSpeak(17.0, oNPC, "Ok...here goes...!", + ANIMATION_NONE); + +GestaltActionSpellCast(19.0, oNPC, oWP3, SPELL_ISAACS_GREATER_MISSILE_STORM, + TRUE); +FWEffect2(21.0, VFX_IMP_LIGHTNING_M, "show_face"); + +GestaltActionAnimate(22.0, oNPC, ANIMATION_LOOPING_SIT_CROSS, 400.0); +GestaltSpeak(23.0, oNPC, "Ok! Time to sit back, relax and watch the sky ignite!", + ANIMATION_NONE); + +CSvoice(55.0, oPC, 6); +CSvoice(56.0, oNPC, 6); + +CSvoice(60.0, oPC, 6); +CSvoice(61.0, oNPC, 6); +CSvoice(63.0, oPC, 12); +CSvoice(62.0, oNPC, 12); + +CSvoice(89.0, oPC, 6); +CSvoice(88.0, oNPC, 6); + +CSvoice(121.0, oPC, 6); +CSvoice(120.0, oNPC, 6); +CSvoice(122.0, oPC, 12); +CSvoice(123.0, oNPC, 12); + +CSvoice(130.0, oPC, 12); +CSvoice(130.0, oNPC, 12); + + +GestaltSpeak(134.0, oPC, "WOW! That was awesome!", + ANIMATION_NONE); +GestaltSpeak(138.0, oNPC, "Yeah, that was a good one!", + ANIMATION_NONE); +GestaltSpeak(139.0, oNPC, "Come back anytime. I'll be here ready to go!", + ANIMATION_NONE); +CSvoice(142.0, oPC, 10); +CSvoice(144.5, oNPC, 12); +CSvoice(146.5, oNPC, 10); + + +SetLocalFloat(oPC,"fCameraDirection",290.0); +SetLocalFloat(oPC,"fCameraRange",12.0); +SetLocalFloat(oPC,"fCameraPitch",65.0); + + +GestaltCameraMove (0.0, + 290.0,12.0,65.0, + 390.0,7.0,80.0, + 10.0,30.0,oPC); + + +GestaltCameraMove (12.0, + 390.0,7.0,80.0, + 530.0,11.0,85.0, + 7.0,30.0,oPC); + + +GestaltCameraMove (25.0, + 530.0,11.0,85.0, + 555.0,13.0,100.0, + 12.0,30.0,oPC); + +GestaltCameraMove (108.0, + 555.0,13.0,100.0, + 555.0,20.0,100.0, + 3.0,30.0,oPC); + +GestaltCameraMove (115.0, + 555.0,20.0,100.0, + 555.0,20.0,70.0, + 15.0,30.0,oPC); + + + +GestaltCameraMove (132.0, + 555.0,20.0,70.0, + 710.0,9.0,80.0, + 5.0,30.0,oPC); + + +GestaltCameraFade (147.0, oPC, FADE_OUT, FADE_SPEED_SLOW); +GestaltStopCutscene (150.0, oPC); + +} diff --git a/_module/nss/show_begin.nss b/_module/nss/show_begin.nss new file mode 100644 index 0000000..fea49cb --- /dev/null +++ b/_module/nss/show_begin.nss @@ -0,0 +1,236 @@ +#include "g_startfireworks" +#include "cutscene_ch1" +#include "cutscene_ch2" + + /*case 1: iVoice = VOICE_CHAT_ATTACK;break; + case 2: iVoice = VOICE_CHAT_BATTLECRY1;break; + case 3: iVoice = VOICE_CHAT_BATTLECRY2;break; + case 4: iVoice = VOICE_CHAT_BATTLECRY3;break; + case 5: iVoice = VOICE_CHAT_THREATEN;break; + case 6: iVoice = VOICE_CHAT_CHEER;break; + case 7: iVoice = VOICE_CHAT_CUSS;break; + case 8: iVoice = VOICE_CHAT_FLEE;break; + case 9: iVoice = VOICE_CHAT_GOODBYE;break; + case 10: iVoice = VOICE_CHAT_THANKS;break; + case 11: iVoice = VOICE_CHAT_WEAPONSUCKS;break; + case 12: iVoice = VOICE_CHAT_LAUGH;break; + case 13: iVoice = VOICE_CHAT_HELLO;break; + case 14: iVoice = VOICE_CHAT_FOLLOWME;break; + case 15: iVoice = VOICE_CHAT_GOODIDEA;break; + case 16: iVoice = VOICE_CHAT_REST;break; + case 17: iVoice = VOICE_CHAT_YES;break; + + GestaltApplyEffect(0.0, oPC, eEffect, INSTANT, 0.0, ""); + GestaltActionAnimate(0.0, oPC, ANIMATION_FIREFORGET_BOW); +*/ +void FWEffect(float oDelay, int oEffect, string oWaypoint) +{ +object oTarget; +oTarget = GetObjectByTag(oWaypoint); +int nInt; +nInt = GetObjectType(oTarget); +effect eEffect; +eEffect = EffectVisualEffect(oEffect); +if (nInt != OBJECT_TYPE_WAYPOINT) + DelayCommand(oDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, + eEffect, oTarget)); +else + DelayCommand(oDelay, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oTarget))); +} + + +void main() +{ +object oMod = GetModule(); +object oPC = GetEnteringObject(); +int oPCs = GetLocalInt(oMod, "num_players"); +int iShow = GetLocalInt(oPC, "show_seen"); +MusicBackgroundPlay(GetArea(oPC)); + +if (!GetIsPC(oPC))return; + +if (oPCs>1) return; + +if (GetLocalInt(oPC, "show_seen")==1)return; + +if (GetItemPossessedBy(oPC, "show_ticket")!=OBJECT_INVALID)return; + +SetLocalInt(oPC, "show_seen", 1); + +CreateItemOnObject("show_ticket", oPC); + +object oNPC = GetObjectByTag("love_npc"); +object oArea = GetArea(oPC); + +object oWP1 = GetWaypointByTag("pc_rug"); +object oWP2 = GetWaypointByTag("npc_rug"); +object oWP3 = GetWaypointByTag("show_face"); +object oWP4 = GetWaypointByTag("rug_aim"); +object oWP4a = GetWaypointByTag("rug_aim2"); +object oWP5 = GetWaypointByTag("lake_wp"); +object oWP6 = GetWaypointByTag("lake_wp1"); +object oSource = GetObjectByTag("FireworksSource"); + +SetLocalInt(oMod, "chest_here", 0); +SetLocalInt(oSource,"FireworkCount", 0); +SetLocalInt(oMod, "one_only", 0); + +GestaltStartCutscene(oPC, "",TRUE,TRUE,TRUE,TRUE,2); +GestaltCameraFade(0.0, oPC, FADE_IN,FADE_SPEED_SLOW); + + + +DelayCommand(70.0, StartShow(oPC)); + +GestaltActionUnequip(0.0, oNPC, INVENTORY_SLOT_BOOTS); + +GestaltFace(0.0, oPC, 0.0, 2, oWP6); +GestaltFace(0.0, oNPC, 0.0, 2, oWP5); + +CSvoice(1.0, oNPC, 13); +CSvoice(2.5, oPC, 13); + +GestaltSpeak(4.0, oNPC, "This is gonna be great!", + ANIMATION_FIREFORGET_VICTORY3); +GestaltSpeak(8.0, oPC, "Where are we?", + ANIMATION_LOOPING_LOOK_FAR, 4.0); +GestaltSpeak(12.0, oNPC, "You need to relax, "+GetName(oPC)+"! All that combat has got you uptight hasn't it! Do you really need that weapon?", + ANIMATION_LOOPING_TALK_PLEADING, 6.0); +CSvoice(14.0, oPC, 12); +CSvoice(18.0, oPC, 12); +GestaltSpeak(17.0, oPC, "I guess you're right....let me put this away", + ANIMATION_LOOPING_TALK_LAUGHING, 3.0); +GestaltActionUnequip(21.0, oPC, INVENTORY_SLOT_LEFTHAND); +GestaltActionUnequip(21.5, oPC, INVENTORY_SLOT_RIGHTHAND); +CSvoice(23.0, oNPC, 15); +GestaltSpeak(27.0, oNPC, "Come, I have a surprise for you!", + ANIMATION_NONE); +GestaltSpeak(30.0, oPC, "After you...", + ANIMATION_FIREFORGET_BOW); +GestaltActionMove(32.0,oNPC, oWP4, FALSE, 0.0, 0.0); +GestaltActionMove(32.5,oPC, oWP4a, FALSE, 0.0, 0.0); + +GestaltSpeak(42.0, oNPC, "Take a seat, it's almost time!", + ANIMATION_NONE); + +GestaltActionMove(42.1,oNPC, oWP2, FALSE, 0.0, 0.0); +GestaltActionMove(43.1,oPC, oWP1, FALSE, 0.0, 0.0); + +GestaltFace(45.1, oNPC, 0.0, 2, oWP3); +GestaltFace(46.6, oPC, 0.0, 2, oWP3); + +GestaltActionAnimate(47.0, oPC, ANIMATION_LOOPING_SIT_CROSS, 237.0); + +GestaltSpeak(48.0, oPC, "Time?", + ANIMATION_NONE); +GestaltSpeak(52.0, oNPC, "There's going to be a lunar eclipse tonight....absolutely perfect for my surprise.....ok ready?", + ANIMATION_NONE); +GestaltSpeak(56.0, oPC, "Sure!", + ANIMATION_NONE); +GestaltSpeak(61.0, oNPC, "Ok...here goes...!", + ANIMATION_NONE); + +GestaltActionSpellCast(63.0, oNPC, oWP3, SPELL_ISAACS_GREATER_MISSILE_STORM, + TRUE); +FWEffect(66.0, VFX_IMP_LIGHTNING_M, "show_face"); + +GestaltActionAnimate(67.0, oNPC, ANIMATION_LOOPING_SIT_CROSS, 400.0); +GestaltSpeak(68.0, oNPC, "That should do it! Now just sit back, relax and enjoy the show.", + ANIMATION_NONE); + +CSvoice(75.0, oPC, 6); +CSvoice(76.0, oNPC, 6); + +CSvoice(86.0, oPC, 6); +CSvoice(85.0, oNPC, 6); + +CSvoice(140.0, oPC, 6); +CSvoice(141.0, oNPC, 6); +CSvoice(143.0, oPC, 12); +CSvoice(142.0, oNPC, 12); + +CSvoice(189.0, oPC, 6); +CSvoice(188.0, oNPC, 6); + +CSvoice(205.0, oPC, 6); +CSvoice(206.0, oNPC, 6); +CSvoice(207.0, oPC, 12); +CSvoice(208.0, oNPC, 12); + +CSvoice(238.0, oPC, 12); +CSvoice(239.0, oNPC, 12); +CSvoice(240.0, oPC, 6); +CSvoice(241.0, oNPC, 6); +CSvoice(250.0, oPC, 12); +CSvoice(251.0, oNPC, 12); + + +GestaltSpeak(258.0, oPC, "WOW! That was intense!", + ANIMATION_NONE); +GestaltSpeak(261.0, oNPC, "I'm so glad you liked it!", + ANIMATION_NONE); +GestaltSpeak(264.0, oNPC, "Come back anytime. I'd love to watch it with you again.", + ANIMATION_NONE); +CSvoice(268.0, oPC, 10); +CSvoice(270.5, oNPC, 12); +CSvoice(272.5, oNPC, 10); + + +SetLocalFloat(oPC,"fCameraDirection",280.0); +SetLocalFloat(oPC,"fCameraRange",10.0); +SetLocalFloat(oPC,"fCameraPitch",70.0); + +GestaltCameraMove (0.0, + 280.0,10.0,70.0, + 300.0,8.0,75.0, + 10.0,30.0,oPC); + + +GestaltCameraMove (10.0, + 300.0,8.0,75.0, + 320.0,8.0,80.0, + 3.0,30.0,oPC); + +GestaltCameraMove (36.0, + 320.0,8.0,80.0, + 400.0,10.0,65.0, + 4.0,30.0,oPC); + +GestaltCameraMove (40.0, + 400.0,10.0,65.0, + 410.0,8.0,70.0, + 4.0,30.0,oPC); + + +GestaltCameraMove (58.0, + 410.0,8.0,70.0, + 530.0,9.0,80.0, + 6.0,30.0,oPC); + + +GestaltCameraMove (64.0, + 530.0,9.0,80.0, + 555.0,15.0,85.0, + 6.0,30.0,oPC); + +GestaltCameraMove (180.0, + 555.0,15.0,85.0, + 555.0,15.0,100.0, + 20.0,30.0,oPC); + +GestaltCameraMove (220.0, + 555.0,15.0,100.0, + 555.0,20.0,100.0, + 6.0,30.0,oPC); + + GestaltCameraMove (262.0, + 555.0,20.0,100.0, + 720.0,8.0,75.0, + 12.0,30.0,oPC); + + +GestaltCameraFade (278.0, oPC, FADE_OUT, FADE_SPEED_SLOW); +GestaltStopCutscene (281.0, oPC); +} + diff --git a/_module/nss/shrine_pulse.nss b/_module/nss/shrine_pulse.nss new file mode 100644 index 0000000..57c7dca --- /dev/null +++ b/_module/nss/shrine_pulse.nss @@ -0,0 +1,12 @@ + +void main() +{ +object oPC = GetEnteringObject(); +int iShrine = GetLocalInt(oPC, "shrine"); +effect eEffect = EffectVisualEffect(VFX_IMP_SPELL_MANTLE_USE); +if (iShrine!=1){return;} +else + { + ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oPC); + } +} diff --git a/_module/nss/silent_imbue.nss b/_module/nss/silent_imbue.nss new file mode 100644 index 0000000..71253a3 --- /dev/null +++ b/_module/nss/silent_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_MOVE_SILENTLY, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/silent_parry.nss b/_module/nss/silent_parry.nss new file mode 100644 index 0000000..902ab0e --- /dev/null +++ b/_module/nss/silent_parry.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_PARRY, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/slash_imbue.nss b/_module/nss/slash_imbue.nss new file mode 100644 index 0000000..cd36a01 --- /dev/null +++ b/_module/nss/slash_imbue.nss @@ -0,0 +1,8 @@ +#include "imbue_include" +void main() +{ +SetLocalInt(GetPCSpeaker(), "sfire_ldb", 1); +ImbueWeapon(VFX_FNF_GAS_EXPLOSION_EVIL, IP_CONST_DAMAGETYPE_SLASHING); +} + + diff --git a/_module/nss/slash_imbue_arm.nss b/_module/nss/slash_imbue_arm.nss new file mode 100644 index 0000000..8aec455 --- /dev/null +++ b/_module/nss/slash_imbue_arm.nss @@ -0,0 +1,7 @@ +#include "imbue_include" +void main() +{ +ImbueArmour(VFX_FNF_GREATER_RUIN, IP_CONST_DAMAGETYPE_SLASHING); +} + + diff --git a/_module/nss/sldone_1.nss b/_module/nss/sldone_1.nss new file mode 100644 index 0000000..dbfd04b --- /dev/null +++ b/_module/nss/sldone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sldone_12.nss b/_module/nss/sldone_12.nss new file mode 100644 index 0000000..abc1df3 --- /dev/null +++ b/_module/nss/sldone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sldred_imbue_1.nss b/_module/nss/sldred_imbue_1.nss new file mode 100644 index 0000000..afa2eba --- /dev/null +++ b/_module/nss/sldred_imbue_1.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sldone_1", 1); +DamRes(13,2); +} diff --git a/_module/nss/sldred_imbue_12.nss b/_module/nss/sldred_imbue_12.nss new file mode 100644 index 0000000..04a44b0 --- /dev/null +++ b/_module/nss/sldred_imbue_12.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sldone_12", 1); +DamRes2(13,2); +} diff --git a/_module/nss/sldred_imbue_2.nss b/_module/nss/sldred_imbue_2.nss new file mode 100644 index 0000000..ffcd4d3 --- /dev/null +++ b/_module/nss/sldred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sldone_2", 1); +DamRes(13, 3); +} diff --git a/_module/nss/sldred_imbue_22.nss b/_module/nss/sldred_imbue_22.nss new file mode 100644 index 0000000..0206cc6 --- /dev/null +++ b/_module/nss/sldred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sldone_22", 1); +DamRes2(13, 3); +} diff --git a/_module/nss/sldred_imbue_3.nss b/_module/nss/sldred_imbue_3.nss new file mode 100644 index 0000000..659dc67 --- /dev/null +++ b/_module/nss/sldred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sldone_3", 1); +DamRes(13,4); +} diff --git a/_module/nss/sldred_imbue_32.nss b/_module/nss/sldred_imbue_32.nss new file mode 100644 index 0000000..63d76aa --- /dev/null +++ b/_module/nss/sldred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "slmax_reduction2", 1); +SetLocalInt(oPC, "sldone_32", 1); +DamRes2(13,4); +} diff --git a/_module/nss/sldred_imbue_4.nss b/_module/nss/sldred_imbue_4.nss new file mode 100644 index 0000000..74dae4a --- /dev/null +++ b/_module/nss/sldred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sldone_4", 1); +DamRes(13,5); +} diff --git a/_module/nss/sldred_imbue_5.nss b/_module/nss/sldred_imbue_5.nss new file mode 100644 index 0000000..f98026d --- /dev/null +++ b/_module/nss/sldred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sldone_5", 1); +SetLocalInt(oPC, "slmax_reduction", 1); +DamRes(5,5); +} diff --git a/_module/nss/sldred_imbue_51.nss b/_module/nss/sldred_imbue_51.nss new file mode 100644 index 0000000..bcf47fb --- /dev/null +++ b/_module/nss/sldred_imbue_51.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sldone_5", 1); +SetLocalInt(oPC, "slmax_reduction", 1); +DamRes(13,6); +} diff --git a/_module/nss/sleep.nss b/_module/nss/sleep.nss new file mode 100644 index 0000000..6bea32f --- /dev/null +++ b/_module/nss/sleep.nss @@ -0,0 +1,26 @@ +#include "x0_i0_petrify" + +void main() +{ +int oHour = GetTimeHour(); +int oSec = GetTimeSecond(); +int oMin = GetTimeMinute(); +int oMil = GetTimeMillisecond(); +object oPC = GetLastPCRested(); +effect eSnore = EffectVisualEffect(VFX_IMP_SLEEP); +effect eBlind = EffectBlindness(); +if (GetLastRestEventType() == REST_EVENTTYPE_REST_STARTED) +{ +oHour = oHour+8; +SetTime(oHour, oMin, oSec, oMil); +ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eSnore, oPC, 10.0); +ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eBlind, oPC, 30.0); +DelayCommand(8.0, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eSnore, oPC, 10.0)); +} +int nLastRestType=GetLastRestEventType(); +if (nLastRestType == REST_EVENTTYPE_REST_FINISHED ||nLastRestType == REST_EVENTTYPE_REST_CANCELLED ) +{ +RemoveEffectOfType(oPC, GetEffectType(eBlind)); +FloatingTextStringOnCreature("You slept for 8 hours", oPC); +} +} diff --git a/_module/nss/slmax_limit.nss b/_module/nss/slmax_limit.nss new file mode 100644 index 0000000..a018754 --- /dev/null +++ b/_module/nss/slmax_limit.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName slmax_limit +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:00:11 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "slmax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/slmax_limit1.nss b/_module/nss/slmax_limit1.nss new file mode 100644 index 0000000..7fb5e6d --- /dev/null +++ b/_module/nss/slmax_limit1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName slmax_limit +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:00:11 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "slmax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/slmax_limit12.nss b/_module/nss/slmax_limit12.nss new file mode 100644 index 0000000..2e29659 --- /dev/null +++ b/_module/nss/slmax_limit12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName slmax_limit +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:00:11 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "slmax_reduction2") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/slmax_limit2.nss b/_module/nss/slmax_limit2.nss new file mode 100644 index 0000000..16ac87e --- /dev/null +++ b/_module/nss/slmax_limit2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName slmax_limit +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 10:00:11 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "slmax_reduction2") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/slred1_1.nss b/_module/nss/slred1_1.nss new file mode 100644 index 0000000..dd33ebc --- /dev/null +++ b/_module/nss/slred1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "sldone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sldone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred1_12.nss b/_module/nss/slred1_12.nss new file mode 100644 index 0000000..796fd74 --- /dev/null +++ b/_module/nss/slred1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "sldone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sldone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred_0.nss b/_module/nss/slred_0.nss new file mode 100644 index 0000000..739507a --- /dev/null +++ b/_module/nss/slred_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/slred_02.nss b/_module/nss/slred_02.nss new file mode 100644 index 0000000..11814bb --- /dev/null +++ b/_module/nss/slred_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/slred_1.nss b/_module/nss/slred_1.nss new file mode 100644 index 0000000..2c2c028 --- /dev/null +++ b/_module/nss/slred_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "sldone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred_10.nss b/_module/nss/slred_10.nss new file mode 100644 index 0000000..1d18428 --- /dev/null +++ b/_module/nss/slred_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/slred_11.nss b/_module/nss/slred_11.nss new file mode 100644 index 0000000..fd8bdb3 --- /dev/null +++ b/_module/nss/slred_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sldone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred_12.nss b/_module/nss/slred_12.nss new file mode 100644 index 0000000..378c0e6 --- /dev/null +++ b/_module/nss/slred_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sldone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred_122.nss b/_module/nss/slred_122.nss new file mode 100644 index 0000000..a99fe95 --- /dev/null +++ b/_module/nss/slred_122.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "sldone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred_2.nss b/_module/nss/slred_2.nss new file mode 100644 index 0000000..7241fcc --- /dev/null +++ b/_module/nss/slred_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sldone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred_22.nss b/_module/nss/slred_22.nss new file mode 100644 index 0000000..475c84e --- /dev/null +++ b/_module/nss/slred_22.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sldone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred_3.nss b/_module/nss/slred_3.nss new file mode 100644 index 0000000..d3a3e62 --- /dev/null +++ b/_module/nss/slred_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/slred_32.nss b/_module/nss/slred_32.nss new file mode 100644 index 0000000..0f78415 --- /dev/null +++ b/_module/nss/slred_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/slred_4.nss b/_module/nss/slred_4.nss new file mode 100644 index 0000000..24aab4d --- /dev/null +++ b/_module/nss/slred_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sldone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred_42.nss b/_module/nss/slred_42.nss new file mode 100644 index 0000000..41debee --- /dev/null +++ b/_module/nss/slred_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sldone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred_6.nss b/_module/nss/slred_6.nss new file mode 100644 index 0000000..7ecf105 --- /dev/null +++ b/_module/nss/slred_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sldone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred_62.nss b/_module/nss/slred_62.nss new file mode 100644 index 0000000..9fdb7e2 --- /dev/null +++ b/_module/nss/slred_62.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sldone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred_7.nss b/_module/nss/slred_7.nss new file mode 100644 index 0000000..581b453 --- /dev/null +++ b/_module/nss/slred_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/slred_8.nss b/_module/nss/slred_8.nss new file mode 100644 index 0000000..8d670b9 --- /dev/null +++ b/_module/nss/slred_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sldone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/slred_9.nss b/_module/nss/slred_9.nss new file mode 100644 index 0000000..bc219de --- /dev/null +++ b/_module/nss/slred_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sldone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sldone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/smith_makeit.nss b/_module/nss/smith_makeit.nss new file mode 100644 index 0000000..121c8be --- /dev/null +++ b/_module/nss/smith_makeit.nss @@ -0,0 +1,73 @@ +#include "x2_inc_ws_smith" + +void MakeNewWeapon(object oPC); +void LightShow(); + +void main() +{ +object oPC = GetPCSpeaker(); +object oItem = GetRightHandWeapon(oPC); + if (GetIsObjectValid(oItem) == FALSE) + { return; } + ActionPauseConversation(); + MakeNewWeapon(oPC); + return; +} + +void MakeNewWeapon(object oPC) +{ + wsEnhanceItem(oPC, oPC); + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2)); + PlaySound("sff_explblind"); + LightShow(); +} + +void LightShow() +{ +object oPC = GetPCSpeaker(); +object oAnv = OBJECT_SELF; +object oWSA = GetNearestObjectByTag("SpearRack", oAnv, 2); +object oWSB = GetNearestObjectByTag("x2_medium_crate4"); +object oFgA = GetNearestObjectByTag("CEPTCandleThin"); +object oFgB = GetNearestObjectByTag("CEPTCandlePlain"); +object oBar = GetNearestObjectByTag("Ankh", oAnv, 2); +effect eBlu = EffectVisualEffect(VFX_DUR_LIGHT_BLUE_10); +effect eRed = EffectVisualEffect(VFX_DUR_LIGHT_RED_10); +effect eOrg = EffectVisualEffect(VFX_DUR_LIGHT_ORANGE_10); +effect eYel = EffectVisualEffect(VFX_DUR_LIGHT_YELLOW_10); +effect ePur = EffectVisualEffect(VFX_DUR_LIGHT_PURPLE_10); +effect eMag = EffectVisualEffect(VFX_IMP_MAGBLUE); +effect eSon = EffectVisualEffect(VFX_IMP_SUPER_HEROISM); +ApplyEffectToObject(DURATION_TYPE_INSTANT,eSon,oPC); +ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eBlu,oFgA,0.5); +DelayCommand(0.125,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eOrg,oAnv,0.25)); +DelayCommand(0.25,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eOrg,oWSB,0.5)); +DelayCommand(0.375,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,ePur,oBar,0.25)); +DelayCommand(0.5,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eRed,oFgB,0.5)); +DelayCommand(0.625,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eYel,oWSA,0.25)); +DelayCommand(0.75,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,ePur,oWSB,0.5)); +DelayCommand(0.875,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eOrg,oWSA,0.25)); +DelayCommand(1.0,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eBlu,oBar,0.5)); +DelayCommand(1.125,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eBlu,oFgB,0.25)); +DelayCommand(1.25,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eOrg,oFgA,0.5)); +DelayCommand(1.375,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,ePur,oWSB,0.25)); +DelayCommand(1.5,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eYel,oAnv,0.5)); +DelayCommand(1.625,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eRed,oBar,0.25)); +DelayCommand(1.75,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eOrg,oFgB,0.5)); +DelayCommand(1.875,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eOrg,oWSA,0.25)); +DelayCommand(2.0,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eBlu,oFgA,0.5)); +DelayCommand(2.125,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eRed,oAnv,0.25)); +DelayCommand(2.25,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eYel,oWSB,0.5)); +DelayCommand(2.375,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,ePur,oBar,0.25)); +DelayCommand(2.5,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,ePur,oWSA,0.5)); +DelayCommand(2.625,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eOrg,oFgA,0.25)); +DelayCommand(2.75,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eBlu,oAnv,0.5)); +DelayCommand(2.875,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eOrg,oFgB,0.25)); +DelayCommand(3.0,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,ePur,oBar,0.5)); +DelayCommand(3.125,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eOrg,oWSA,0.25)); +DelayCommand(3.25,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eRed,oFgA,0.5)); +DelayCommand(3.375,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,ePur,oWSB,0.25)); +DelayCommand(3.5,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eBlu,oFgB,0.5)); +DelayCommand(3.625,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eOrg,oBar,0.25)); +DelayCommand(3.75,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eRed,oAnv,0.5)); +} diff --git a/_module/nss/so_imbue25.nss b/_module/nss/so_imbue25.nss new file mode 100644 index 0000000..ca7d97c --- /dev/null +++ b/_module/nss/so_imbue25.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sodone_1", 1); +DamRes(10,2); +} diff --git a/_module/nss/so_imbue252.nss b/_module/nss/so_imbue252.nss new file mode 100644 index 0000000..4ffd052 --- /dev/null +++ b/_module/nss/so_imbue252.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sodone_12", 1); +DamRes2(10,2); +} diff --git a/_module/nss/soak_imbue.nss b/_module/nss/soak_imbue.nss new file mode 100644 index 0000000..6dc00eb --- /dev/null +++ b/_module/nss/soak_imbue.nss @@ -0,0 +1,374 @@ +#include "spawner" +#include "prc_x2_itemprop" + + +////////////////////////////////////////////// +// Damage Reduction Subroutine +/////////////////////////////////////////////// + +void Reduce (object oItem, int oDamage, int oSoak) +{ +itemproperty ipAdd; +int oPowerup = oSoak; + +switch (oDamage) +{ +case 1: oDamage = IP_CONST_DAMAGEREDUCTION_12; break; +case 2: oDamage = IP_CONST_DAMAGEREDUCTION_14; break; +case 3: oDamage = IP_CONST_DAMAGEREDUCTION_16; break; +case 4: oDamage = IP_CONST_DAMAGEREDUCTION_18; break; +case 5: oDamage = IP_CONST_DAMAGEREDUCTION_20; break; +} + + +switch (oSoak) +{ +case 1: oSoak = IP_CONST_DAMAGESOAK_30_HP; break; +case 2: oSoak = IP_CONST_DAMAGESOAK_35_HP; break; +case 3: oSoak = IP_CONST_DAMAGESOAK_40_HP; break; +case 4: oSoak = IP_CONST_DAMAGESOAK_45_HP; break; +case 5: oSoak = IP_CONST_DAMAGESOAK_50_HP; break; +} +IPRemoveMatchingItemProperties(oItem, ITEM_PROPERTY_DAMAGE_REDUCTION, -1); +ipAdd = ItemPropertyDamageReduction(oDamage, oSoak); +IPSafeAddItemProperty(oItem, ipAdd); +if (oPowerup==5) + { + PCEffect(3.5,VFX_FNF_GAS_EXPLOSION_MIND, OBJECT_SELF); + DelayCommand(4.0, FloatingTextStringOnCreature + ("*** Full Powerup ***", GetLastUsedBy())); + } +} + +/////////////////////////////////////////////// +/// Damage Resistance Subroutine +////////////////////////////////////////////////// + + +void ResApply (object oItem, int oDamage, int oSoak) +{ +itemproperty ipAdd; +int oPowerup = oSoak; + +switch (oDamage) +{ +case 1: oDamage = IP_CONST_DAMAGETYPE_BLUDGEONING; break; +case 2: oDamage = IP_CONST_DAMAGETYPE_ACID; break; +case 3: oDamage = IP_CONST_DAMAGETYPE_COLD; break; +case 4: oDamage = IP_CONST_DAMAGETYPE_DIVINE; break; +case 5: oDamage = IP_CONST_DAMAGETYPE_ELECTRICAL; break; +case 6: oDamage = IP_CONST_DAMAGETYPE_FIRE; break; +case 7: oDamage = IP_CONST_DAMAGETYPE_MAGICAL; break; +case 8: oDamage = IP_CONST_DAMAGETYPE_NEGATIVE; break; +case 10: oDamage = IP_CONST_DAMAGETYPE_SONIC; break; +case 11: oDamage = IP_CONST_DAMAGETYPE_PIERCING; break; +case 12: oDamage = IP_CONST_DAMAGETYPE_POSITIVE; break; +case 13: oDamage = IP_CONST_DAMAGETYPE_SLASHING; break; +} + + +switch (oSoak) +{ +case 1: oSoak = IP_CONST_DAMAGERESIST_20; break; +case 2: oSoak = IP_CONST_DAMAGERESIST_25; break; +case 3: oSoak = IP_CONST_DAMAGERESIST_30; break; +case 4: oSoak = IP_CONST_DAMAGERESIST_35; break; +case 5: oSoak = IP_CONST_DAMAGERESIST_40; break; +case 6: oSoak = IP_CONST_DAMAGERESIST_45; break; +case 7: oSoak = IP_CONST_DAMAGERESIST_50; break; +} + +ipAdd = ItemPropertyDamageResistance(oDamage, oSoak); +IPSafeAddItemProperty(oItem, ipAdd); +if (oPowerup==6) + { + PCEffect(3.5,VFX_FNF_GAS_EXPLOSION_MIND, OBJECT_SELF); + DelayCommand(4.0, FloatingTextStringOnCreature + ("*** Full Powerup ***", GetLastUsedBy())); + } +} + +//////////////////////////////////////////////////// +/// Damage Bonus Subroutine +/////////////////////////////////////////////////// + +void ResApply2 (object oItem, int oDamage, int oSoak) +{ +itemproperty ipAdd; +int oPowerup = oSoak; + +switch (oDamage) +{ +case 1: oDamage = IP_CONST_DAMAGETYPE_BLUDGEONING; break; +case 2: oDamage = IP_CONST_DAMAGETYPE_ACID; break; +case 3: oDamage = IP_CONST_DAMAGETYPE_COLD; break; +case 4: oDamage = IP_CONST_DAMAGETYPE_DIVINE; break; +case 5: oDamage = IP_CONST_DAMAGETYPE_ELECTRICAL; break; +case 6: oDamage = IP_CONST_DAMAGETYPE_FIRE; break; +case 7: oDamage = IP_CONST_DAMAGETYPE_MAGICAL; break; +case 8: oDamage = IP_CONST_DAMAGETYPE_NEGATIVE; break; +case 10: oDamage = IP_CONST_DAMAGETYPE_SONIC; break; +case 11: oDamage = IP_CONST_DAMAGETYPE_PIERCING; break; +case 12: oDamage = IP_CONST_DAMAGETYPE_POSITIVE; break; +case 13: oDamage = IP_CONST_DAMAGETYPE_SLASHING; break; +} + + +switch (oSoak) +{ +case 1: oSoak = IP_CONST_DAMAGEBONUS_2d6; break; +case 2: oSoak = IP_CONST_DAMAGEBONUS_2d8; break; +case 3: oSoak = IP_CONST_DAMAGEBONUS_2d10; break; +case 4: oSoak = IP_CONST_DAMAGEBONUS_2d12; break; +} + +ipAdd = ItemPropertyDamageBonus +(oDamage, oSoak); +IPSafeAddItemProperty(oItem, ipAdd); +if (oPowerup==4) + { + PCEffect(3.5,VFX_FNF_GAS_EXPLOSION_MIND, OBJECT_SELF); + DelayCommand(4.0, FloatingTextStringOnCreature + ("*** Full Powerup ***", GetLastUsedBy())); + } +} + + + +//////////////////////////////////////////////////// +/// Spell Resistance Subroutine +/////////////////////////////////////////////////// + + +void Resist (object oItem, int oDamage) +{ +itemproperty ipAdd; +int oPowerup = oDamage; + +switch (oDamage) +{ +case 1: oDamage = IP_CONST_SPELLRESISTANCEBONUS_20; break; +case 2: oDamage = IP_CONST_SPELLRESISTANCEBONUS_26; break; +case 3: oDamage = IP_CONST_SPELLRESISTANCEBONUS_32; break; +} + +IPRemoveMatchingItemProperties(oItem, ITEM_PROPERTY_SPELL_RESISTANCE, -1); +ipAdd = ItemPropertyBonusSpellResistance(oDamage); +IPSafeAddItemProperty(oItem, ipAdd); +if (oPowerup==3) + { + PCEffect(3.5,VFX_FNF_GAS_EXPLOSION_MIND, OBJECT_SELF); + DelayCommand(4.0, FloatingTextStringOnCreature + ("*** Full Powerup ***", GetLastUsedBy())); + } +} + + +//////////////////////////////////////////////////// +/// Massive Criticals Subroutine +/////////////////////////////////////////////////// + + +void Crit (object oItem, int oDamage) +{ +itemproperty ipAdd; +int oPowerup = oDamage; + +switch (oDamage) +{ +case 1: oDamage = IP_CONST_DAMAGEBONUS_2d8; break; +case 2: oDamage = IP_CONST_DAMAGEBONUS_2d10; break; +case 3: oDamage = IP_CONST_DAMAGEBONUS_2d12; break; +} + +IPRemoveMatchingItemProperties(oItem, ITEM_PROPERTY_MASSIVE_CRITICALS, -1); +ipAdd = ItemPropertyMassiveCritical(oDamage); +IPSafeAddItemProperty(oItem, ipAdd); +if (oPowerup==3) + { + PCEffect(3.5,VFX_FNF_GAS_EXPLOSION_MIND, OBJECT_SELF); + DelayCommand(4.0, FloatingTextStringOnCreature + ("*** Full Powerup ***", GetLastUsedBy())); + } +} + + + + + + +////////////////////////////////////////////// +/// Damage Reduction Routine +////////////////////////////////////////////// + + +void DamageReduction (int oMulti, int oSoak) +{ +object oTarget; +object oItem; + +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.5,VFX_DUR_PROT_PREMONITION, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.5,VFX_DUR_PROT_EPIC_ARMOR, OBJECT_SELF); +DelayCommand(1.0, Reduce(GetFirstItemInInventory(OBJECT_SELF), oMulti, oSoak)); +DelayCommand(3.5, SetLocked(OBJECT_SELF, FALSE)); +} + + +////////////////////////////////////////////// +/// Spell Resistance Routine +////////////////////////////////////////////// + + + + +void SpellResBonus (int oUpgrade) +{ +object oTarget; +object oItem; + +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin1") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_MAGIC_PROTECTION, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_SPELL_MANTLE_USE, OBJECT_SELF); +PCEffect(2.0,VFX_DUR_MAGIC_RESISTANCE, OBJECT_SELF); +DelayCommand(1.0, Resist(GetFirstItemInInventory(OBJECT_SELF), oUpgrade)); +DelayCommand(3.5, SetLocked(OBJECT_SELF, FALSE)); +} + +////////////////////////////////////////////// +/// Massive Criticals Routine +////////////////////////////////////////////// + + + + +void MassCrit (int oUpgrade) +{ +object oTarget; +object oItem; + +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin2") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_BREACH, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_IMP_EVIL_HELP, OBJECT_SELF); +DelayCommand(1.0, Crit(GetFirstItemInInventory(OBJECT_SELF), oUpgrade)); +DelayCommand(3.5, SetLocked(OBJECT_SELF, FALSE)); +} + + + + + + +////////////////////////////////////////////// +/// Damage Resistance Routine +////////////////////////////////////////////// + + + + +void DamRes (int oMulti, int oSoak) +{ +object oTarget; +object oItem; + +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.5,VFX_DUR_PROTECTION_EVIL_MAJOR, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.5,VFX_FNF_GREATER_RUIN, OBJECT_SELF); +DelayCommand(1.0, ResApply(GetFirstItemInInventory(OBJECT_SELF), oMulti, oSoak)); +DelayCommand(3.5, SetLocked(OBJECT_SELF, FALSE)); +} + + ////////////////////////////////////////////// +/// Damage Bonus Routine +////////////////////////////////////////////// + + + + +void DamRes2 (int oMulti, int oSoak) +{ +object oTarget; +object oItem; +int eEffect; + +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="coin2") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } + +switch (oMulti) +{ +case 1: eEffect = VFX_IMP_DESTRUCTION; break; +case 2: eEffect = VFX_FNF_GAS_EXPLOSION_ACID; break; +case 3: eEffect = VFX_FNF_DISPEL_DISJUNCTION; break; +case 4: eEffect = VFX_IMP_DIVINE_STRIKE_HOLY; break; +case 5: eEffect = VFX_FNF_ELECTRIC_EXPLOSION; break; +case 6: eEffect = VFX_FNF_SUMMONDRAGON; break; +case 7: eEffect = VFX_FNF_MYSTICAL_EXPLOSION; break; +case 8: eEffect = VFX_FNF_SUMMON_EPIC_UNDEAD; break; +case 10: eEffect = VFX_FNF_SOUND_BURST; break; +case 11: eEffect = VFX_FNF_GREATER_RUIN; break; +case 12: eEffect = VFX_IMP_PULSE_HOLY; break; +case 13: eEffect = VFX_IMP_HARM; break; +} + + + + +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_SUPER_HEROISM, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,eEffect, OBJECT_SELF); +DelayCommand(1.0, ResApply2(GetFirstItemInInventory(OBJECT_SELF), oMulti, oSoak)); +DelayCommand(3.5, SetLocked(OBJECT_SELF, FALSE)); +} + + + + + +//void main() {} + diff --git a/_module/nss/sodone_1.nss b/_module/nss/sodone_1.nss new file mode 100644 index 0000000..dbeaade --- /dev/null +++ b/_module/nss/sodone_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_1") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sodone_12.nss b/_module/nss/sodone_12.nss new file mode 100644 index 0000000..a3a637b --- /dev/null +++ b/_module/nss/sodone_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_12") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sodred_imbue_2.nss b/_module/nss/sodred_imbue_2.nss new file mode 100644 index 0000000..24de8b6 --- /dev/null +++ b/_module/nss/sodred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sodone_2", 1); +DamRes(10,3); +} diff --git a/_module/nss/sodred_imbue_22.nss b/_module/nss/sodred_imbue_22.nss new file mode 100644 index 0000000..a8347f5 --- /dev/null +++ b/_module/nss/sodred_imbue_22.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sodone_22", 1); +DamRes2(10,3); +} diff --git a/_module/nss/sodred_imbue_3.nss b/_module/nss/sodred_imbue_3.nss new file mode 100644 index 0000000..9a80d8a --- /dev/null +++ b/_module/nss/sodred_imbue_3.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sodone_3", 1); +DamRes(10,4); +} diff --git a/_module/nss/sodred_imbue_32.nss b/_module/nss/sodred_imbue_32.nss new file mode 100644 index 0000000..5d5e2e5 --- /dev/null +++ b/_module/nss/sodred_imbue_32.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sodone_32", 1); +SetLocalInt(oPC, "somax_reduction2", 1); +DamRes2(10,4); +} diff --git a/_module/nss/sodred_imbue_4.nss b/_module/nss/sodred_imbue_4.nss new file mode 100644 index 0000000..0f77dd0 --- /dev/null +++ b/_module/nss/sodred_imbue_4.nss @@ -0,0 +1,8 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sodone_4", 1); +DamRes(10,5); +} diff --git a/_module/nss/sodred_imbue_5.nss b/_module/nss/sodred_imbue_5.nss new file mode 100644 index 0000000..c576f34 --- /dev/null +++ b/_module/nss/sodred_imbue_5.nss @@ -0,0 +1,9 @@ +#include "soak_imbue" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "sodone_5", 1); +SetLocalInt(oPC, "somax_reduction", 1); +DamRes(10,6); +} diff --git a/_module/nss/soed_1.nss b/_module/nss/soed_1.nss new file mode 100644 index 0000000..29c6e99 --- /dev/null +++ b/_module/nss/soed_1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "sodone_2") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/soed_12.nss b/_module/nss/soed_12.nss new file mode 100644 index 0000000..d210c57 --- /dev/null +++ b/_module/nss/soed_12.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "sodone_22") == 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/somax_reached.nss b/_module/nss/somax_reached.nss new file mode 100644 index 0000000..c51a161 --- /dev/null +++ b/_module/nss/somax_reached.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "somax_reduction") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/somax_reached2.nss b/_module/nss/somax_reached2.nss new file mode 100644 index 0000000..abdfd94 --- /dev/null +++ b/_module/nss/somax_reached2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "somax_reduction") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/somax_reached22.nss b/_module/nss/somax_reached22.nss new file mode 100644 index 0000000..d76581f --- /dev/null +++ b/_module/nss/somax_reached22.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "somax_reduction2") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/somax_reached32.nss b/_module/nss/somax_reached32.nss new file mode 100644 index 0000000..769bbef --- /dev/null +++ b/_module/nss/somax_reached32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName blmax_reached +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 1/12/2004 9:40:44 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "somax_reduction2") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sonic_imbue.nss b/_module/nss/sonic_imbue.nss new file mode 100644 index 0000000..a5ea2c4 --- /dev/null +++ b/_module/nss/sonic_imbue.nss @@ -0,0 +1,8 @@ +#include "imbue_include" +void main() +{ +SetLocalInt(GetPCSpeaker(), "sofire_ldb", 1); +ImbueWeapon(VFX_FNF_SOUND_BURST, IP_CONST_DAMAGETYPE_SONIC); +} + + diff --git a/_module/nss/sonic_imbue_arm.nss b/_module/nss/sonic_imbue_arm.nss new file mode 100644 index 0000000..f13b8d2 --- /dev/null +++ b/_module/nss/sonic_imbue_arm.nss @@ -0,0 +1,7 @@ +#include "imbue_include" +void main() +{ +ImbueArmour(VFX_FNF_SOUND_BURST, IP_CONST_DAMAGETYPE_SONIC); +} + + diff --git a/_module/nss/sorc_slot_imbue.nss b/_module/nss/sorc_slot_imbue.nss new file mode 100644 index 0000000..c921b19 --- /dev/null +++ b/_module/nss/sorc_slot_imbue.nss @@ -0,0 +1,6 @@ +#include "spellslot_imbue" + +void main() +{ +SpellSlot(IP_CONST_CLASS_SORCERER); +} diff --git a/_module/nss/sored1_1.nss b/_module/nss/sored1_1.nss new file mode 100644 index 0000000..65aae75 --- /dev/null +++ b/_module/nss/sored1_1.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "sodone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sodone_1") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sored1_12.nss b/_module/nss/sored1_12.nss new file mode 100644 index 0000000..32d008e --- /dev/null +++ b/_module/nss/sored1_12.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetPCSpeaker(), "sodone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sodone_12") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sored_0.nss b/_module/nss/sored_0.nss new file mode 100644 index 0000000..d770214 --- /dev/null +++ b/_module/nss/sored_0.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_1") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/sored_02.nss b/_module/nss/sored_02.nss new file mode 100644 index 0000000..eee02fd --- /dev/null +++ b/_module/nss/sored_02.nss @@ -0,0 +1,18 @@ + + //:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_12") != 1)) + return FALSE; + + return TRUE; +} + diff --git a/_module/nss/sored_10.nss b/_module/nss/sored_10.nss new file mode 100644 index 0000000..ab1bdbf --- /dev/null +++ b/_module/nss/sored_10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_5") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sored_11.nss b/_module/nss/sored_11.nss new file mode 100644 index 0000000..3157857 --- /dev/null +++ b/_module/nss/sored_11.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_5") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sodone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sored_12.nss b/_module/nss/sored_12.nss new file mode 100644 index 0000000..aae0373 --- /dev/null +++ b/_module/nss/sored_12.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_4") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sodone_5") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sored_2.nss b/_module/nss/sored_2.nss new file mode 100644 index 0000000..76f4599 --- /dev/null +++ b/_module/nss/sored_2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_1") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sodone_2") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sored_22.nss b/_module/nss/sored_22.nss new file mode 100644 index 0000000..5995486 --- /dev/null +++ b/_module/nss/sored_22.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_12") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sodone_22") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sored_3.nss b/_module/nss/sored_3.nss new file mode 100644 index 0000000..1ae41cc --- /dev/null +++ b/_module/nss/sored_3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_3") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sored_32.nss b/_module/nss/sored_32.nss new file mode 100644 index 0000000..456e1ea --- /dev/null +++ b/_module/nss/sored_32.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_32") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sored_4.nss b/_module/nss/sored_4.nss new file mode 100644 index 0000000..61843be --- /dev/null +++ b/_module/nss/sored_4.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_2") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sodone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sored_42.nss b/_module/nss/sored_42.nss new file mode 100644 index 0000000..554ab3a --- /dev/null +++ b/_module/nss/sored_42.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_22") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sodone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sored_6.nss b/_module/nss/sored_6.nss new file mode 100644 index 0000000..6ad2f19 --- /dev/null +++ b/_module/nss/sored_6.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_2") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sodone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sored_62.nss b/_module/nss/sored_62.nss new file mode 100644 index 0000000..126a11c --- /dev/null +++ b/_module/nss/sored_62.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_22") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sodone_32") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sored_7.nss b/_module/nss/sored_7.nss new file mode 100644 index 0000000..3a56b60 --- /dev/null +++ b/_module/nss/sored_7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_4") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sored_8.nss b/_module/nss/sored_8.nss new file mode 100644 index 0000000..aaec7de --- /dev/null +++ b/_module/nss/sored_8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_4 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:26:53 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_4") != 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sodone_3") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/sored_9.nss b/_module/nss/sored_9.nss new file mode 100644 index 0000000..86973f0 --- /dev/null +++ b/_module/nss/sored_9.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName red_1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 30/11/2004 1:04:28 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetPCSpeaker(), "sodone_3") == 1)) + return FALSE; + if(!(GetLocalInt(GetPCSpeaker(), "sodone_4") != 1)) + return FALSE; + return TRUE; +} diff --git a/_module/nss/souldeath.nss b/_module/nss/souldeath.nss new file mode 100644 index 0000000..99ea10c --- /dev/null +++ b/_module/nss/souldeath.nss @@ -0,0 +1,66 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::///////////////////////Valdar Dragon +#include "x0_i0_petrify" +#include "loot" +#include "rank" + +void main() +{ + object oPC = GetLastKiller(); + object oMod = GetModule(); + SetLocalInt(oMod, "sw_df", 0); + SetLocalInt(oMod, "ch_df", 0); + SetLocalInt(oMod, "gr_xx", 0); + object oTarget= OBJECT_SELF; + int iKilled = GetLocalInt(oPC, "iKilled"); + + PCEffect(0.0, VFX_IMP_DEATH_L, oTarget); + PCEffect(0.3, VFX_IMP_MAGIC_PROTECTION, oTarget); + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + SetLocalInt(oPC, "hdfienddead", 1); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 7000); + } + } + int sw1 = GetLocalInt(oMod, "sw_hw"); +int sw2 = GetLocalInt(oMod, "sw_dr"); +int sw3 = GetLocalInt(oMod, "sw_bl"); +int sw4 = GetLocalInt(oMod, "sw_pf"); +int sw5 = GetLocalInt(oMod, "sw_df"); +int sw6 = GetLocalInt(oMod, "sw_pm"); +int sw7 = GetLocalInt(oMod, "sw_bm"); +int sw8 = GetLocalInt(oMod, "sw_lm"); +int sw9 = GetLocalInt(oMod, "sw_ll"); +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +} diff --git a/_module/nss/spawn_all.nss b/_module/nss/spawn_all.nss new file mode 100644 index 0000000..7d82849 --- /dev/null +++ b/_module/nss/spawn_all.nss @@ -0,0 +1,71 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); +object oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +location bTarget = GetLocation(oTarget2); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "palewarrior", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "lucifer", lTarget); +//oTarget = oSpawn; +//SetIsTemporaryEnemy(oPC, oTarget); +//AssignCommand(oTarget, ActionAttack(oPC)); +//AssignCommand(oTarget, DetermineCombatRound(oPC)); +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +//SetLocalInt(oMod, "sw_xx", 1); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/spawn_all2.nss b/_module/nss/spawn_all2.nss new file mode 100644 index 0000000..d520f78 --- /dev/null +++ b/_module/nss/spawn_all2.nss @@ -0,0 +1,71 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oTarget; +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("monster_wp"); +object oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +location bTarget = GetLocation(oTarget2); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "balrog2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +//SetLocalInt(oMod, "sw_xx", 1); +SetLocked(oTarget, TRUE); +} + diff --git a/_module/nss/spawn_allb.nss b/_module/nss/spawn_allb.nss new file mode 100644 index 0000000..7489978 --- /dev/null +++ b/_module/nss/spawn_allb.nss @@ -0,0 +1,91 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oTarget; +object oSpawn; +location lTarget; +object oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +location bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon1", bTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_halfdrafn001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_marilithb001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "palewarrior", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_pitfiend001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_balrog001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss1", bTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "lord", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "lucifer", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); +} + diff --git a/_module/nss/spawn_allba.nss b/_module/nss/spawn_allba.nss new file mode 100644 index 0000000..994612e --- /dev/null +++ b/_module/nss/spawn_allba.nss @@ -0,0 +1,91 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oTarget; +object oSpawn; +location lTarget; +object oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +location bTarget = GetLocation(oTarget2); +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dragon2", bTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "balrog2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "dopple001", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pfiend2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hdrag2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "pwar2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "beli2", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", bTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "thor", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "angel", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); +} + diff --git a/_module/nss/spawn_allc.nss b/_module/nss/spawn_allc.nss new file mode 100644 index 0000000..7337d9e --- /dev/null +++ b/_module/nss/spawn_allc.nss @@ -0,0 +1,50 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ +object oSpawn; +location lTarget; +object oTarget; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +location bTarget = GetLocation(oTarget2); +SetLocalInt(oMod, "xcheck", 0); + +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss1", bTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "lord", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "lucifer", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +//SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); +} + diff --git a/_module/nss/spawn_allca.nss b/_module/nss/spawn_allca.nss new file mode 100644 index 0000000..0d86932 --- /dev/null +++ b/_module/nss/spawn_allca.nss @@ -0,0 +1,50 @@ +#include "nw_i0_generic" +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ +object oSpawn; +location lTarget; +object oTarget; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oTarget2 = GetWaypointByTag("big_wp"); +lTarget = GetLocation(oTarget); +location bTarget = GetLocation(oTarget2); +SetLocalInt(oMod, "xcheck", 0); + +oTarget = GetWaypointByTag("monster_wp"); +lTarget = GetLocation(oTarget); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "boss002", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "thor", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "angel", lTarget); +oTarget = oSpawn; +SetIsTemporaryEnemy(oPC, oTarget); +AssignCommand(oTarget, ActionAttack(oPC)); +AssignCommand(oTarget, DetermineCombatRound(oPC)); +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +//SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "sw_xx", 1); +} + diff --git a/_module/nss/spawn_group.nss b/_module/nss/spawn_group.nss new file mode 100644 index 0000000..50258e1 --- /dev/null +++ b/_module/nss/spawn_group.nss @@ -0,0 +1,147 @@ +#include "spawner" + +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oTarget = GetWaypointByTag("big_wp"); +location lTarget; +int oDragon = GetLocalInt(oPC, "hw_on"); +int oRender = GetLocalInt(oPC, "dr_on"); +int oBalrog = GetLocalInt(oPC, "bl_on"); +int oPitfiend = GetLocalInt(oPC, "pf_on"); +int oHalfDrag = GetLocalInt(oPC, "df_on"); +int oPaleWar = GetLocalInt(oPC, "pm_on"); +int oMarilith = GetLocalInt(oPC, "bm_on"); +int oMist = GetLocalInt(oPC, "lm_on"); +int oLucif = GetLocalInt(oPC, "ll_on"); +int oLord = GetLocalInt(oPC, "xx_on"); +int oMode = GetLocalInt(oMod, "gamemode"); +SetLocalInt(oMod, "sw_hw", 0); +SetLocalInt(oMod, "sw_dr", 0); +SetLocalInt(oMod, "sw_bl", 0); +SetLocalInt(oMod, "sw_pf", 0); +SetLocalInt(oMod, "sw_df", 0); +SetLocalInt(oMod, "sw_pm", 0); +SetLocalInt(oMod, "sw_bm", 0); +SetLocalInt(oMod, "sw_lm", 0); +SetLocalInt(oMod, "sw_ll", 0); +SetLocalInt(oMod, "sw_xx", 0); +SetLocalInt(oPC, "hw_on", 0); +SetLocalInt(oPC, "dr_on", 0); +SetLocalInt(oPC, "bl_on", 0); +SetLocalInt(oPC, "pf_on", 0); +SetLocalInt(oPC, "df_on", 0); +SetLocalInt(oPC, "pm_on", 0); +SetLocalInt(oPC, "bm_on", 0); +SetLocalInt(oPC, "lm_on", 0); +SetLocalInt(oPC, "ll_on", 0); +SetLocalInt(oPC, "xx_on", 0); +SetLocalInt(oPC, "gr_xx", 1); +object oSpawner = GetObjectByTag("spawner"); +AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); +if (oDragon==1) +{ +SetLocalInt(oMod, "sw_hw", 1); +SetLocalInt(oMod, "ch_hw", 1); +if (oMode==1) +DelayCommand( 1.0, spawner (oPC, "dragon2", 1)); +else +DelayCommand( 1.0, spawner (oPC, "dragon1", 1)); +} +if (oRender==1) +{ +SetLocalInt(oMod, "sw_dr", 1); +SetLocalInt(oMod, "ch_dr", 1); +if (oMode==1) +DelayCommand( 1.0, spawner (oPC, "dopple001", 0)); +else +DelayCommand( 1.0, spawner (oPC, "dopple", 0)); +} +if (oBalrog==1) +{ +SetLocalInt(oMod, "sw_bl", 1); +SetLocalInt(oMod, "ch_bl", 1); +if (oMode==1) +DelayCommand( 1.0, spawner (oPC, "balrog2", 0)); +else +DelayCommand( 1.0, spawner (oPC, "zep_balrog001", 0)); +} +if (oPitfiend==1) +{ +SetLocalInt(oMod, "sw_pf", 1); +SetLocalInt(oMod, "ch_pf", 1); +if (oMode==1) +DelayCommand( 1.0, spawner (oPC, "pfiend2", 0)); +else +DelayCommand( 1.0, spawner (oPC, "zep_pitfiend001", 0)); +} +if (oHalfDrag==1) +{ +SetLocalInt(oMod, "sw_df", 1); +SetLocalInt(oMod, "ch_df", 1); +if (oMode==1) +DelayCommand( 1.0, spawner (oPC, "hdrag2", 0)); +else +DelayCommand( 1.0, spawner (oPC, "zep_halfdrafn001", 0)); +} +if (oPaleWar==1) +{ +SetLocalInt(oMod, "sw_pm", 1); +SetLocalInt(oMod, "ch_pm", 1); +if (oMode==1) +DelayCommand( 1.0, spawner (oPC, "pwar2", 0)); +else +DelayCommand( 1.0, spawner (oPC, "palewarrior", 0)); +} +if (oMarilith==1) +{ +SetLocalInt(oMod, "sw_bm", 1); +SetLocalInt(oMod, "ch_bm", 1); +if (oMode==1) +DelayCommand( 1.0, spawner (oPC, "beli2", 0)); +else +DelayCommand( 1.0, spawner (oPC, "zep_marilithb001", 0)); +} +if (oMist==1) +{ +SetLocalInt(oMod, "sw_lm", 1); +SetLocalInt(oMod, "ch_lm", 1); +if (oMode==1) +DelayCommand( 1.0, spawner (oPC, "boss002", 0)); +else +DelayCommand( 1.0, spawner (oPC, "boss1", 1)); +} +if (oLucif==1) +{ +SetLocalInt(oMod, "sw_ll", 1); +SetLocalInt(oMod, "ch_ll", 1); +if (oMode==1) + { + DoEffect(1.0,VFX_IMP_LIGHTNING_M, "monster_wp"); + DelayCommand( 1.0, spawner (oPC, "notime1", 0)); + } +else + { + DelayCommand( 1.0, spawner (oPC, "notime3", 0)); + DoEffect(1.0,VFX_FNF_FIRESTORM, "monster_wp"); + } +} +if (oLord==1) +{ +SetLocalInt(oMod, "sw_xx", 1); +SetLocalInt(oMod, "ch_xx", 1); +if (oMode==1) + { + DelayCommand( 1.0, spawner (oPC, "notime2", 0)); + DoEffect(1.0,VFX_FNF_SUNBEAM, "monster_wp"); + } +else + { + DelayCommand( 1.0, spawner (oPC, "notime4", 0)); + DoEffect(1.0,VFX_FNF_METEOR_SWARM, "monster_wp"); + } +} +oTarget = GetObjectByTag("arena_gate"); +SetLocked(oTarget, TRUE); +} diff --git a/_module/nss/spawn_tester.nss b/_module/nss/spawn_tester.nss new file mode 100644 index 0000000..cbb2c74 --- /dev/null +++ b/_module/nss/spawn_tester.nss @@ -0,0 +1,6 @@ + + +void main() +{ + // +} diff --git a/_module/nss/spawner.nss b/_module/nss/spawner.nss new file mode 100644 index 0000000..34d300a --- /dev/null +++ b/_module/nss/spawner.nss @@ -0,0 +1,1272 @@ +#include "nw_i0_generic" +#include "x0_i0_petrify" +#include "onpercept_dark" +#include "prc_inc_util" + +void Normalize(object oPC) +{ +effect eEffect1 = EffectEthereal(); +RemoveEffectOfType(oPC, GetEffectType(eEffect1)); +} + + +void JoinBackedTeam(object oPC) +{ + int iDone = 0; + object oCreature; + object oCreature2; + object oTeam; + string sSide; + int iTeam = GetLocalInt(oPC, "team_bet"); + +oCreature = GetFirstObjectInArea(OBJECT_SELF); +while (GetIsObjectValid(oCreature)) + { + if ((GetObjectType(oCreature)==OBJECT_TYPE_CREATURE)&&(!GetIsPC(oCreature))&& + (GetTag(oCreature)!="starfall")&&(GetTag(oCreature)!="reaper")) + { + SetIsTemporaryEnemy(oPC, oCreature); + } + oCreature =GetNextObjectInArea(OBJECT_SELF); + } + +oCreature = GetFirstObjectInArea(OBJECT_SELF); +while ((GetObjectType(oCreature)!=OBJECT_TYPE_CREATURE)|| + (!GetIsEnemy(oCreature, oPC))||(GetIsPC(oCreature))|| + (GetTag(oCreature)=="starfall")||(GetTag(oCreature)=="reaper")) + { + oCreature =GetNextObjectInArea(OBJECT_SELF); + } +//FloatingTextStringOnCreature(GetName(OBJECT_SELF), oPC); +//FloatingTextStringOnCreature(GetName(oCreature), oPC); + +if (((GetResRef(oCreature)=="dragon1")||(GetResRef(oCreature)=="zep_halfdrafn001")|| + (GetResRef(oCreature)=="zep_marilithb001")||(GetResRef(oCreature)=="bard2")|| + (GetResRef(oCreature)=="zep_pitfiend001")||(GetResRef(oCreature)=="zep_balrog001")|| + (GetResRef(oCreature)=="dopple")||(GetResRef(oCreature)=="mistress2")|| + (GetResRef(oCreature)=="notime3")||(GetResRef(oCreature)=="notime4")|| + (GetResRef(oCreature)=="darcher")||(GetResRef(oCreature)=="death"))&&(iTeam==2)) + { + AdjustReputation(oPC, oCreature, 100); + SetIsTemporaryFriend(oPC, oCreature); + oTeam = GetFirstFactionMember(oCreature, FALSE); + while (GetIsObjectValid(oTeam)) + { + SetIsTemporaryFriend(oPC, oTeam, FALSE); + oTeam = GetNextFactionMember(oCreature, FALSE); + } + } +else if (((GetResRef(oCreature)=="dragon1")||(GetResRef(oCreature)=="zep_halfdrafn001")|| + (GetResRef(oCreature)=="zep_marilithb001")||(GetResRef(oCreature)=="bard2")|| + (GetResRef(oCreature)=="zep_pitfiend001")||(GetResRef(oCreature)=="zep_balrog001")|| + (GetResRef(oCreature)=="dopple")||(GetResRef(oCreature)=="mistress2")|| + (GetResRef(oCreature)=="notime3")||(GetResRef(oCreature)=="notime4")|| + (GetResRef(oCreature)=="darcher")||(GetResRef(oCreature)=="death"))&&(iTeam==1)) + { + oCreature2 = GetFirstObjectInArea(OBJECT_SELF); + while ((GetObjectType(oCreature2)!=OBJECT_TYPE_CREATURE)|| + (!GetIsEnemy(oCreature, oCreature2))||(GetIsPC(oCreature2))|| + (GetTag(oCreature2)=="starfall")||(GetTag(oCreature2)=="reaper")) + { + oCreature2 =GetNextObjectInArea(OBJECT_SELF); + } + AdjustReputation(oPC, oCreature2, 100); + SetIsTemporaryFriend(oPC, oCreature2); + oTeam = GetFirstFactionMember(oCreature2, FALSE); + while (GetIsObjectValid(oTeam)) + { + SetIsTemporaryFriend(oPC, oTeam, FALSE); + oTeam = GetNextFactionMember(oCreature2, FALSE); + } + } +else if (((GetResRef(oCreature)!="dragon1")&&(GetResRef(oCreature)!="zep_halfdrafn001")&& + (GetResRef(oCreature)!="zep_marilithb001")&&(GetResRef(oCreature)!="bard2")&& + (GetResRef(oCreature)!="zep_pitfiend001")&&(GetResRef(oCreature)!="zep_balrog001")&& + (GetResRef(oCreature)!="dopple")&&(GetResRef(oCreature)!="mistress2")&& + (GetResRef(oCreature)!="notime3")&&(GetResRef(oCreature)!="notime4")&& + (GetResRef(oCreature)!="darcher")&&(GetResRef(oCreature)!="death"))&&(iTeam==1)) + { + AdjustReputation(oPC, oCreature, 100); + SetIsTemporaryFriend(oPC, oCreature); + oTeam = GetFirstFactionMember(oCreature, FALSE); + while (GetIsObjectValid(oTeam)) + { + SetIsTemporaryFriend(oPC, oTeam, FALSE); + oTeam = GetNextFactionMember(oCreature, FALSE); + } + } +else if (((GetResRef(oCreature)!="dragon1")&&(GetResRef(oCreature)!="zep_halfdrafn001")&& + (GetResRef(oCreature)!="zep_marilithb001")&&(GetResRef(oCreature)!="bard2")&& + (GetResRef(oCreature)!="zep_pitfiend001")&&(GetResRef(oCreature)!="zep_balrog001")&& + (GetResRef(oCreature)!="dopple")&&(GetResRef(oCreature)!="mistress2")&& + (GetResRef(oCreature)!="notime3")&&(GetResRef(oCreature)!="notime4")&& + (GetResRef(oCreature)!="darcher")&&(GetResRef(oCreature)!="death"))&&(iTeam==2)) + { + oCreature2 = GetFirstObjectInArea(OBJECT_SELF); + while ((GetObjectType(oCreature2)!=OBJECT_TYPE_CREATURE)|| + (!GetIsEnemy(oCreature, oCreature2))||(GetIsPC(oCreature2))|| + (GetTag(oCreature2)=="starfall")||(GetTag(oCreature2)=="reaper")) + { + oCreature2 =GetNextObjectInArea(OBJECT_SELF); + } + AdjustReputation(oPC, oCreature2, 100); + SetIsTemporaryFriend(oPC, oCreature2); + oTeam = GetFirstFactionMember(oCreature2, FALSE); + while (GetIsObjectValid(oTeam)) + { + SetIsTemporaryFriend(oPC, oTeam, FALSE); + oTeam = GetNextFactionMember(oCreature2, FALSE); + } + //FloatingTextStringOnCreature("fell through", oPC); + } +} + + + +void JoinTeam2(object oSelf, object oPC) +{ + int iDone = 0; + object oCreature; + object oTeam; + string sSide; + +oCreature = GetFirstObjectInArea(OBJECT_SELF); +while ((GetObjectType(oCreature)!=OBJECT_TYPE_CREATURE)|| + (!GetIsEnemy(oCreature, oSelf))||(GetIsPC(oCreature))|| + (GetTag(oCreature)=="starfall")||(GetTag(oCreature)=="reaper")) + { + oCreature =GetNextObjectInArea(OBJECT_SELF); + } +//FloatingTextStringOnCreature(GetName(OBJECT_SELF), oPC); +//FloatingTextStringOnCreature(GetName(oCreature), oPC); + +if ((GetResRef(oCreature)=="dragon1")||(GetResRef(oCreature)=="zep_halfdrafn001")|| + (GetResRef(oCreature)=="zep_marilithb001")||(GetResRef(oCreature)=="bard2")|| + (GetResRef(oCreature)=="zep_pitfiend001")||(GetResRef(oCreature)=="zep_balrog001")|| + (GetResRef(oCreature)=="dopple")||(GetResRef(oCreature)=="mistress2")|| + (GetResRef(oCreature)=="notime3")||(GetResRef(oCreature)=="notime4")|| + (GetResRef(oCreature)=="darcher")||(GetResRef(oCreature)=="death")) + { + sSide = "You have joined the Champions of Darkness"; + SetLocalInt(oPC, "pc_side", 2); + } +else + { + sSide = "You have joined the Champions of Light"; + SetLocalInt(oPC, "pc_side", 1); + } + +AdjustReputation(oPC, oCreature, 100); +SetIsTemporaryFriend(oPC, oCreature); + +oTeam = GetFirstFactionMember(oCreature, FALSE); +while (GetIsObjectValid(oTeam)) + { + //AdjustReputation(oPC, oTeam, 100); + SetIsTemporaryFriend(oPC, oTeam, FALSE); + oTeam = GetNextFactionMember(oCreature, FALSE); + } +FloatingTextStringOnCreature(sSide, oPC); +} + +void LastHit2() +{ + + object oMod = GetModule(); + object oPC = GetLastDamager(OBJECT_SELF); + int oDam = GetTotalDamageDealt(); + string oAtt; + string oSelf; + string oMon; + object oDest; + object oLast; + int oHit; + int oSwing; + int oMhit; + int oPCdam; + int oSDTaken; + int oUDTaken; + int oSDDealt; + int oUDDealt; + int iSFhit; + int iSFdam; + int iFBhit; + int iFBdam; + int oHWdam; + int oHWhit; + int iCHdam; + int iCHhit; + int mCount; + int iCHswing; + int iHWswing; + int iPCswing; + int iPChit; + int iSFswing; + int iFBswing; + int iArenaChall =GetLocalInt(oMod, "challenge"); + int iSFDuel =GetLocalInt(oMod, "duel_on"); + int iFinalBattle = GetLocalInt(oPC, "final_on"); + int iWarWon = GetLocalInt(oMod, "war_won"); + int iJoinSwitch = GetLocalInt(oPC, "join_switch"); + int iHwar = GetLocalInt(oMod, "hwar_on"); + //FloatingTextStringOnCreature("duel on: "+IntToString(GetLocalInt(oMod, "duel_on")), oPC); + + oSwing = GetLocalInt(oPC, "pc_swing"); + iPChit = GetLocalInt(oPC, "pc_hit"); + iCHswing = GetLocalInt(oPC, "pc_CHswing"); + iSFswing = GetLocalInt(oPC, "pc_SFswing"); + iFBswing = GetLocalInt(oPC, "pc_FBswing"); + iHWswing = GetLocalInt(oPC, "pc_HWswing"); + + + + + + if (GetIsPC(oPC)) + { + oHit = GetLocalInt(oPC, "pc_hit"); + oPCdam = GetLocalInt(oPC, "player_dd"); + ++oHit; + oPCdam+=oDam; + if (oHit>oSwing){oHit=oSwing;} + SetLocalInt(oPC, "pc_hit", oHit); + SetLocalInt(oPC, "player_dd", oPCdam); + if (GetName(GetLastWeaponUsed(oPC))=="") + { + iPCswing = GetLocalInt(oPC, "pc_swing"); + ++iPCswing; + if (oHit>iPCswing){oHit=iPCswing;} + SetLocalInt(oPC, "pc_hit", oHit); + SetLocalInt(oPC, "pc_swing", iPCswing); + } + //FloatingTextStringOnCreature("hwar on:"+IntToString(iHwar), oPC); + //FloatingTextStringOnCreature("war won:"+IntToString(iWarWon), oPC); + if (iArenaChall==1) + { + iCHdam = GetLocalInt(oPC, "pc_CHdam"); + iCHhit = GetLocalInt(oPC, "pc_CHhit"); + iCHdam+=oDam; + ++iCHhit; + if (iCHhit>iCHswing){iCHhit=iCHswing;} + SetLocalInt(oPC, "pc_CHhit", iCHhit); + SetLocalInt(oPC, "pc_CHdam", iCHdam); + if (GetName(GetLastWeaponUsed(oPC))=="") + { + iCHswing = GetLocalInt(oPC, "pc_CHswing"); + iCHhit = GetLocalInt(oPC, "pc_CHhit"); + ++iCHswing; + if (iCHhit>iCHswing){iCHhit=iCHswing;} + SetLocalInt(oPC, "pc_CHhit", iCHhit); + SetLocalInt(oPC, "pc_CHswing", iCHswing); + } + } + if (iSFDuel==1) + { + iSFdam = GetLocalInt(oPC, "pc_SFdam"); + iSFhit = GetLocalInt(oPC, "pc_SFhit"); + iSFdam+=oDam; + ++iSFhit; + if (iSFhit>iSFswing){iSFhit=iSFswing;} + SetLocalInt(oPC, "pc_SFhit", iSFhit); + SetLocalInt(oPC, "pc_SFdam", iSFdam); + if (GetName(GetLastWeaponUsed(oPC))=="") + { + iSFswing = GetLocalInt(oPC, "pc_SFswing"); + iSFhit = GetLocalInt(oPC, "pc_SFhit"); + ++iSFswing; + if (iSFhit>iSFswing){iSFhit=iSFswing;} + SetLocalInt(oPC, "pc_SFhit", iSFhit); + SetLocalInt(oPC, "pc_SFswing", iSFswing); + } + } + if (iFinalBattle==1) + { + iFBdam = GetLocalInt(oPC, "pc_FBdam"); + iFBhit = GetLocalInt(oPC, "pc_FBhit"); + iFBdam+=oDam; + ++iFBhit; + if (iFBhit>iFBswing){iFBhit=iFBswing;} + SetLocalInt(oPC, "pc_FBhit", iFBhit); + SetLocalInt(oPC, "pc_FBdam", iFBdam); + if (GetName(GetLastWeaponUsed(oPC))=="") + { + iFBswing = GetLocalInt(oPC, "pc_FBswing"); + iFBhit = GetLocalInt(oPC, "pc_FBhit"); + ++iFBswing; + if (iFBhit>iFBswing){iFBhit=iFBswing;} + SetLocalInt(oPC, "pc_FBhit", iFBhit); + SetLocalInt(oPC, "pc_FBswing", iFBswing); + } + } + if (iHwar==1) + { + mCount = 0; + oHWdam = GetLocalInt(oPC, "pc_HWdam"); + oHWhit = GetLocalInt(oPC, "pc_HWhit"); + ++oHWhit; + oHWdam+=oDam; + if (oHWhit>iHWswing){oHWhit=iHWswing;} + SetLocalInt(oPC, "pc_HWhit", oHWhit); + SetLocalInt(oPC, "pc_HWdam", oHWdam); + if (GetName(GetLastWeaponUsed(oPC))=="") + { + iHWswing = GetLocalInt(oPC, "pc_HWswing"); + ++iHWswing; + if (oHWhit>iHWswing){oHWhit=iHWswing;} + SetLocalInt(oPC, "pc_HWhit", oHWhit); + SetLocalInt(oPC, "pc_HWswing", iHWswing); + } + if (iWarWon==1) + { + oLast = GetFirstObjectInArea(GetArea(oPC)); + while (GetIsObjectValid(oLast)) + { + if ((GetObjectType(oLast)==OBJECT_TYPE_CREATURE)&&(!GetIsPC(oLast))&&(!GetIsDead(oLast)) + &&(GetTag(oLast)!="starfall")&&(GetTag(oLast)!="reaper")) + { + ++mCount; + } + oLast = GetNextObjectInArea(GetArea(oPC)); + } + //FloatingTextStringOnCreature("m count:"+IntToString(mCount), oPC); + if (mCount==0) + { + SetLocalInt(oMod, "challenge", 0); + SetLocalInt(oMod, "d1", 0); + SetLocalInt(oMod, "d2", 0); + SetLocalInt(oMod, "d2a", 0); + SetLocalInt(oMod, "d3", 0); + SetLocalInt(oMod, "d4", 0); + SetLocalInt(oMod, "d5", 0); + SetLocalInt(oMod, "ch_hw", 0); + SetLocalInt(oMod, "ch_dr", 0); + SetLocalInt(oMod, "ch_bl", 0); + SetLocalInt(oMod, "ch_pf", 0); + SetLocalInt(oMod, "ch_df", 0); + SetLocalInt(oMod, "ch_pm", 0); + SetLocalInt(oMod, "ch_bm", 0); + SetLocalInt(oMod, "ch_lm", 0); + SetLocalInt(oMod, "ch_ll", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_hw", 0); + SetLocalInt(oMod, "sw_dr", 0); + SetLocalInt(oMod, "sw_bl", 0); + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "sw_df", 0); + SetLocalInt(oMod, "sw_pm", 0); + SetLocalInt(oMod, "sw_bm", 0); + SetLocalInt(oMod, "sw_lm", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oMod, "hwar_on", 0); + DelayCommand(3.0, FloatingTextStringOnCreature + ("** You are the last one standing **", oPC)); + } + } + } + + + } +} + +void LastHit() +{ + object oKiller = GetLastKiller(); + object oSelf = OBJECT_SELF; + string sKiller = GetName(oKiller); + string sVictim = GetName(oSelf); + string sAnnounce; + +if (sKiller ==""){sKiller = "An unseen force";} + +// generate a random death message + +int iDice = d10(); +switch(iDice) + { + case 1: {sAnnounce = sKiller+" sends "+sVictim+" into early retirement!";}break; + case 2: {sAnnounce = sKiller+" paints the pavement red with "+sVictim+"!";}break; + case 3: {sAnnounce = sKiller+" dices "+sVictim+" into small pieces!";}break; + case 4: {sAnnounce = sKiller+"'s face is the last thing that "+sVictim+" sees!";}break; + case 5: {sAnnounce = sVictim+" doesn't survive "+sKiller+"'s brutal attack!";}break; + case 6: {sAnnounce = sKiller+" decapitates "+sVictim+"!";}break; + case 7: {sAnnounce = sKiller+" cuts "+sVictim+" clean in half!";}break; + case 8: {sAnnounce = sKiller+" helps "+sVictim+" to the pavement!";}break; + case 9: {sAnnounce = sKiller+" tears "+sVictim+" a new asshole!";}break; + case 10: {sAnnounce = sKiller+" slices "+sVictim+" like an onion!";}break; + } +if (oKiller==OBJECT_INVALID){sAnnounce = sVictim+" dies from a fatal wound!";} +// send message to all players + +object oPlayer = GetFirstPC(); +while (GetIsObjectValid(oPlayer)) + { + SendMessageToPC(oPlayer, sAnnounce); + oPlayer = GetNextPC(); + } + DelayCommand(3.2, LastHit2()); +} + + +void QuickRestore(object oPC) +{ +object oCaster; +oCaster = oPC; + +object oTarget; +oTarget = oPC; + +AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_GREATER_RESTORATION, oTarget, METAMAGIC_ANY, TRUE, 20, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); +} + + + + +void DeathStats(object oPC) +{ +object oMod = GetModule(); +int oDam = GetTotalDamageDealt(); + +int oHWhit = GetLocalInt(oPC, "pc_HWhit"); +int oHit = GetLocalInt(oPC, "pc_hit"); +int oPCdam = GetLocalInt(oPC, "player_dd"); +int oHWdam = GetLocalInt(oPC, "pc_HWdam"); +int iCHhit = GetLocalInt(oPC, "pc_CHhit"); +int iCHdam = GetLocalInt(oPC, "pc_CHdam"); +int iSFhit = GetLocalInt(oPC, "pc_SFhit"); +int iSFdam = GetLocalInt(oPC, "pc_SFdam"); +int iFBhit = GetLocalInt(oPC, "pc_FBhit"); +int iFBdam = GetLocalInt(oPC, "pc_FBdam"); +int iArenaChall = GetLocalInt(oMod, "challenge"); +int iSFDuel = GetLocalInt(oMod, "duel_on"); +int iFinalBattle = GetLocalInt(oPC, "final_on"); + +SetLocalInt(oPC, "pc_HWhit", ++oHWhit); +SetLocalInt(oPC, "pc_hit", ++oHit); +SetLocalInt(oPC, "player_dd", oPCdam+oDam); +SetLocalInt(oPC, "pc_HWdam", oHWdam+oDam); + +if (iArenaChall==1) + { + SetLocalInt(oPC, "pc_CHhit", ++iCHhit); + SetLocalInt(oPC, "pc_CHdam", iCHdam+oDam); + } +if (iSFDuel==1) + { + SetLocalInt(oPC, "pc_SFhit", ++iSFhit); + SetLocalInt(oPC, "pc_SFdam", iSFdam+oDam); + + } +if (iFinalBattle==1) + { + SetLocalInt(oPC, "pc_FBhit", ++iFBhit); + SetLocalInt(oPC, "pc_FBdam", iFBdam+oDam); + } +} + + +void spawner(object oPC, string oCreature, int oDrag) +{ + + object oTarget; + if (oDrag==1){oTarget=GetWaypointByTag("big_wp");} + if (oDrag==0){oTarget = GetWaypointByTag("monster_wp");} + if (oDrag==2){oTarget = GetWaypointByTag("starfall_wp");} + location lTarget = GetLocation(oTarget); + object oSpawn = CreateObject(OBJECT_TYPE_CREATURE, oCreature, lTarget); + oTarget = oSpawn; + if (oDrag!=2) + { + SetIsTemporaryEnemy(oPC, oTarget); + AssignCommand(oTarget, ActionAttack(oPC)); + AssignCommand(oTarget, DetermineCombatRound(oPC)); + + oTarget = oSpawn; + int nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), oTarget)); + else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget))); + } +} + + +void DoEffect(float oDelay, int oEffect, string oWaypoint) +{ +object oTarget; +oTarget = GetObjectByTag(oWaypoint); +int nInt; +nInt = GetObjectType(oTarget); +effect eEffect; +eEffect = EffectVisualEffect(oEffect); +if (nInt != OBJECT_TYPE_WAYPOINT) + DelayCommand(oDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, + eEffect, oTarget)); +else + DelayCommand(oDelay, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oTarget))); +} + + void ResetPools(object oPC) +{ + + object oMod = GetModule(); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + AssignCommand(oPC, PlaySound("sce_negative")); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); +} +void PCEffect(float oDelay, int oEffect, object oPC) +{ +effect eEffect; +eEffect = EffectVisualEffect(oEffect); +DelayCommand(oDelay, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + eEffect, GetLocation(oPC))); +} + +void SoundPlay(float oDelay, string oSound, object oPC) +{ +DelayCommand(oDelay, AssignCommand(oPC, PlaySound(oSound))); +} + + +void Message (float oDelay, string oMSG, object oPC) +{ +DelayCommand(oDelay, FloatingTextStringOnCreature(oMSG, oPC)); +} + +void CastPC(float oDelay, int eEffect, object oPC) +{ +DelayCommand(oDelay, AssignCommand(oPC, ActionCastSpellAtObject + (eEffect, oPC, METAMAGIC_ANY, TRUE, 20, + PROJECTILE_PATH_TYPE_DEFAULT, TRUE))); +} + +void BattleRest (object oPC) +{ + DelayCommand(5.0, PRCForceRest(oPC)); + PCEffect(5.0,VFX_FNF_NATURES_BALANCE, oPC); + Message(7.0, "Rest Granted", oPC); + //CastPC(9.0, SPELL_ETHEREALNESS, oPC); + //Message(9.0, "Buff phase initiated: Buff or attack now", oPC); +} + +void Place(string oPlaceable, string oWaypoint) +{ +location lTarget; +object oTarget = GetWaypointByTag(oWaypoint); +lTarget = GetLocation(oTarget); +object oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, oPlaceable, lTarget); +} + +void PlaceCreature(string oPlaceable, string oWaypoint) +{ +location lTarget; +object oTarget = GetWaypointByTag(oWaypoint); +lTarget = GetLocation(oTarget); +object oSpawn = CreateObject(OBJECT_TYPE_CREATURE, oPlaceable, lTarget); +} + + +void Cast(int nSpell, object oPlayer) +{ +AssignCommand(oPlayer, +ActionCastSpellAtObject( +nSpell, +oPlayer, +METAMAGIC_ANY, +TRUE, +20, +PROJECTILE_PATH_TYPE_DEFAULT, +TRUE)); +} + +void Sound (float oDelay, string oSound, object oPC) +{ +DelayCommand(oDelay, AssignCommand(oPC, PlaySound(oSound))); +} + + +void NPCvoice(object oSelf, object oPC, int iSet) +{ + +int iVoice; +float oDice; + + switch (iSet) + { + case 1: iVoice = VOICE_CHAT_ATTACK;break; + case 2: iVoice = VOICE_CHAT_BATTLECRY1;break; + case 3: iVoice = VOICE_CHAT_BATTLECRY2;break; + case 4: iVoice = VOICE_CHAT_BATTLECRY3;break; + case 5: iVoice = VOICE_CHAT_THREATEN;break; + case 6: iVoice = VOICE_CHAT_CHEER;break; + case 7: iVoice = VOICE_CHAT_CUSS;break; + case 8: iVoice = VOICE_CHAT_FLEE;break; + case 9: iVoice = VOICE_CHAT_GOODBYE;break; + case 10: iVoice = VOICE_CHAT_THANKS;break; + case 11: iVoice = VOICE_CHAT_WEAPONSUCKS;break; + case 12: iVoice = VOICE_CHAT_LAUGH;break; + } +oDice = IntToFloat(d2()); +oDice +=0.2; +AssignCommand(oSelf, SetFacingObject(oPC)); +DelayCommand(oDice+0.5, AssignCommand(oSelf, PlayVoiceChat(iVoice))); +} + + + +void LeaveTeam(object oPC) +{ +object oCreature; +object oPlayer; + +oCreature = GetFirstObjectInArea(OBJECT_SELF); + +while ((GetObjectType(oCreature)!=OBJECT_TYPE_CREATURE)|| + (GetIsPC(oCreature))||(GetTag(oCreature)=="starfall")|| + (GetTag(oCreature)=="reaper")) + { + oCreature = GetNextObjectInArea(OBJECT_SELF); + } +oPlayer = GetFirstPC(); +while (GetIsObjectValid(oPlayer)) + { + //AdjustReputation(oPC, oCreature, -100); + SetIsTemporaryEnemy(oPC, oCreature, FALSE); + SetLocalInt(oPC, "join_switch", 0); + oPlayer = GetNextPC(); + } +} + + +void TeamCheer() +{ +object oCreature; +object oTeam; +float oDelay; +float oDelay2; + +oCreature = GetFirstObjectInArea(OBJECT_SELF); + +while ((GetObjectType(oCreature)!=OBJECT_TYPE_CREATURE)|| + (GetIsPC(oCreature))||(GetTag(oCreature)=="starfall")|| + (GetTag(oCreature)=="reaper")) + { + oCreature =GetNextObjectInArea(OBJECT_SELF); + } + +oTeam = GetFirstFactionMember(oCreature, FALSE); + +while (GetIsObjectValid(oTeam)) + { + if (!GetIsDead(oTeam)) + { + if ((GetResRef(OBJECT_SELF)=="death")|| (GetResRef(OBJECT_SELF)=="bard2")|| + (GetResRef(OBJECT_SELF)=="darcher")||(GetResRef(OBJECT_SELF)=="notime2") + ||(GetResRef(OBJECT_SELF)=="div2")||(GetResRef(OBJECT_SELF)=="pfiend2") + ||(GetResRef(OBJECT_SELF)=="horod2")||(GetResRef(OBJECT_SELF)=="pwar3") + ||(GetResRef(OBJECT_SELF)=="notime1")) + { + oDelay = IntToFloat(d3()+3); + oDelay2 = oDelay - 0.2; + DelayCommand(oDelay, AssignCommand(oTeam, ClearAllActions())); + DelayCommand(oDelay, AssignCommand(oTeam, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY3))); + DelayCommand(oDelay2, PlayVoiceChat(VOICE_CHAT_CHEER, oTeam)); + } + else + { + oDelay = IntToFloat(d3()+3); + oDelay2 = oDelay - 0.2; + DelayCommand(oDelay, AssignCommand(oTeam, ClearAllActions())); + DelayCommand(oDelay, AssignCommand(oTeam, ActionPlayAnimation + (ANIMATION_FIREFORGET_TAUNT))); + DelayCommand(oDelay2, PlayVoiceChat(VOICE_CHAT_CHEER, oTeam)); + } + } + oTeam = GetNextFactionMember(oCreature, FALSE); + } +} + + +void HolyScore(object oSelf) +{ + +// initialiise objects + +object oMod = GetModule(); +object oPC = GetFirstPC(); +object oCreature = oSelf; +object oKiller = GetLastKiller(); +object oHost = GetObjectByTag("starfall"); +int oDam = GetTotalDamageDealt(); +object oPlayer; +object oTeam; +object oPC2; +// initialise integers + +int iDice; +int iKills; +int iSCount = 0; +int iPCSide; +int oBonus; +int iModCount; +int iHWkills; +int oHWhit; +int oHWdam; +int oHeaven = GetLocalInt(oMod, "heav_score"); +int oHell = GetLocalInt(oMod, "hell_score"); +int oHeavloss = GetLocalInt(oMod, "heav_loss"); +int oHellloss = GetLocalInt(oMod, "hell_loss"); +int iHvcas = GetLocalInt(oMod, "heav_cas"); +int iHlcas = GetLocalInt(oMod, "hell_cas"); +int iHvTotCas = GetLocalInt(oMod, "iHvTotCas"); +int iHlTotCas = GetLocalInt(oMod, "iHlTotCas"); +int iMostKills = GetLocalInt(oMod, "MostKills"); +int iHWPCkillTot = GetLocalInt(oPC, "iHWPCkillTot"); +int iDfire = GetLocalInt(oMod, "iDfire"); +int iTeamBet = GetLocalInt(oPC, "team_bet"); +int iWager = GetLocalInt(oPC, "wager"); +int iTWwager = GetLocalInt(oPC, "TWwager"); +int iTLwager = GetLocalInt(oPC, "TLwager"); +int iOdds = GetLocalInt(oPC, "iOdds"); +int iOdds2 = GetLocalInt(oPC, "iOdds2"); +int iNPCduel = GetLocalInt(oPC, "npc_duel"); +int iWager2; + +// initialise strings + +string sCHbet = GetLocalString(oPC, "CHbet"); +string sKiller; +string sVictim; +string sChamp; +string sTop; +string sAnnounce; +string sRes; +string sRes2; +string sRes3; +string mRes; + +int iXploit = GetLocalInt(oMod, "xcheck"); + +// get module variables for stat tracking +if (iXploit==1){return;} + + +sChamp = GetLocalString(oMod, "sChamp"); +sKiller = GetName(oKiller); +sVictim = GetName(oSelf); + +if (sKiller ==""){sKiller = "An unseen God";} +if (sKiller =="The Arena of Champions"){sKiller = "The Phoenix-Dragon";} +// generate a random death message + +iDice = d8(); +switch(iDice) + { + case 1: {sAnnounce = sKiller+" sends "+sVictim+" into early retirement!";}break; + case 2: {sAnnounce = sKiller+" paints the pavement red with "+sVictim+"!";}break; + case 3: {sAnnounce = sKiller+" dices "+sVictim+" into small pieces!";}break; + case 4: {sAnnounce = sKiller+"'s face is the last thing that "+sVictim+" sees!";}break; + case 5: {sAnnounce = sVictim+" doesn't survive "+sKiller+"'s brutal attack!";}break; + case 6: {sAnnounce = sKiller+" decapitates "+sVictim+"!";}break; + case 7: {sAnnounce = sKiller+" cuts "+sVictim+" clean in half!";}break; + case 8: {sAnnounce = sKiller+" helps "+sVictim+" to the pavement!";}break; + } +if (oKiller==OBJECT_INVALID){sAnnounce = sVictim+" dies from a fatal wound.";} +// send message to all players + +oPlayer = GetFirstPC(); +while (GetIsObjectValid(oPlayer)) + { + SendMessageToPC(oPlayer, sAnnounce); + oPlayer = GetNextPC(); + } + +// add to holy war kill totals for PC scoreboard + +if (GetIsPC(oKiller)) + { + ++iHWPCkillTot; + SetLocalInt(oKiller, "iHWPCkillTot", iHWPCkillTot); + } + +// assign integers to each monsters resref for stat tracking + +sRes = GetResRef(OBJECT_SELF); +sRes2 = GetResRef(oKiller); +sRes+="_x"; +sRes2+="_k"; +sRes3 = GetResRef(oKiller)+"_HWk"; +iKills = GetLocalInt(oMod, sRes2); +iHWkills = GetLocalInt(oMod, sRes3); +++iKills; +++iHWkills; +SetLocalInt(oMod, sRes3, iHWkills); +SetLocalInt(oMod, sRes2, iKills); +SetLocalString(oMod, sRes, " [Dead]"); + +// check to see if the highest kill score has been beaten + +if (iHWkills>iMostKills) + { + SetLocalInt(oMod, "MostKills", iKills); + sTop = GetName(oKiller); + iModCount = GetLocalInt(oMod, "champ_count"); + ++iModCount; + SetLocalInt(oMod, "champ_count", iModCount); + if (!GetIsPC(oKiller)) + { + oHWdam = GetLocalInt(oPC, "pc_HWdam"); + oHWhit = GetLocalInt(oPC, "pc_HWhit"); + ++oHWhit; + oHWdam+=oDam; + SetLocalInt(oPC, "pc_HWhit", oHWhit); + SetLocalInt(oPC, "pc_HWdam", oHWdam); + mRes = GetResRef(oKiller); + mRes +="_ch"; + SetLocalInt(oMod, mRes,iModCount); + } + + oPC2 = GetFirstPC(); + while (GetIsObjectValid(oPC2)) + { + if (sTop==GetName(oPC2)) + { + SetLocalInt(oPC2, "champ_won", 1); + } + else + { + SetLocalInt(oPC2, "champ_won", 0); + } + oPC2 = GetNextPC(); + } + sChamp = sTop+" is the match champion with "; + sChamp += IntToString(iHWkills); + sChamp += " kills!"; + SetLocalString(oMod, "sChamp", sChamp); + if (iHWkills==1){sChamp = "The top kill-count was only "+IntToString(iHWkills)+ + " kill. "+sTop+" scored the first kill and is therefore awarded the championship.";} + + + } + +// count the remaining members of the creature just killed's faction + +oTeam = GetFirstFactionMember(oSelf, FALSE); +while (GetIsObjectValid(oTeam)) + { + if (!GetIsDead(oTeam)) + { + ++iSCount; + } + oTeam = GetNextFactionMember(oSelf, FALSE); + } + +// if there are no survivors on the team of the victim - finish the match +//Message(3.0, IntToString(iSCount), oPC); +//Message(3.0, IntToString(iDfire), oPC); + +if ((iSCount==0)&&(iDfire!=1)) + { + + if ((GetResRef(oCreature)=="dragon1")||(GetResRef(oCreature)=="zep_halfdrafn001")|| + (GetResRef(oCreature)=="zep_marilithb001")||(GetResRef(oCreature)=="bard2")|| + (GetResRef(oCreature)=="zep_pitfiend001")||(GetResRef(oCreature)=="zep_balrog001")|| + (GetResRef(oCreature)=="dopple")||(GetResRef(oCreature)=="mistress2")|| + (GetResRef(oCreature)=="notime3")||(GetResRef(oCreature)=="notime4")|| + (GetResRef(oCreature)=="darcher")||(GetResRef(oCreature)=="death")) + { + SetLocalInt(oMod, "iDfire", 1); + oPC = GetFirstPC(); + while (GetIsObjectValid(oPC)) + { + iPCSide = GetLocalInt(oPC, "pc_side"); + switch (iPCSide) + { + case 0: { + if (iTeamBet==1) + { + Normalize(oPC); + SetLocalInt(oPC, "bet_confirmed", 0); + iWager2=iWager*2; + iTWwager+=iWager2-iWager; + SetLocalInt(oPC, "TWwager", iTWwager); + SetLocalInt(oPC, "winnings", iWager); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY3)); + Message(6.0, "** You won "+IntToString(iWager2)+" gold: Collect at the tote **", oPC); + } + else if (iTeamBet==2) + { + iTLwager+=iWager; + SetLocalInt(oPC, "TLwager", iTLwager); + SetLocalInt(oPC, "bet_confirmed", 0); + SetLocalInt(oPC, "winnings", 0); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_FORCEFUL, 1.0f, 8.0f)); + Message(6.0, "** You lost the bet **", oPC); + } + else if (iTeamBet==3) + { + if (sTop==sCHbet) + { + SetLocalInt(oPC, "bet_confirmed", 0); + Normalize(oPC); + iWager2 =(iWager*iOdds); + iTWwager+=iWager2-iWager; + SetLocalInt(oPC, "TWwager", iTWwager); + SetLocalInt(oPC, "winnings", iWager2); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY3)); + Message(6.0, "** You won "+IntToString(iWager2)+" gold: Collect at the tote **", oPC); + } + else + { + iTLwager+=iWager; + SetLocalInt(oPC, "TLwager", iTLwager); + SetLocalInt(oPC, "bet_confirmed", 0); + SetLocalInt(oPC, "winnings", 0); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_FORCEFUL, 1.0f, 8.0f)); + Message(6.0, "** You lost the bet **", oPC); + } + } + else if (iTeamBet==4) + { + if (sTop==sCHbet) + { + Normalize(oPC); + SetLocalInt(oPC, "bet_confirmed", 0); + iWager2 =(iWager*iOdds2); + iTWwager+=iWager2-iWager; + SetLocalInt(oPC, "TWwager", iTWwager); + SetLocalInt(oPC, "winnings", iWager2); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY3)); + Message(6.0, "** You won "+IntToString(iWager2)+" gold: Collect at the tote **", oPC); + } + else + { + iTLwager+=iWager; + SetLocalInt(oPC, "TLwager", iTLwager); + SetLocalInt(oPC, "bet_confirmed", 0); + SetLocalInt(oPC, "winnings", 0); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_FORCEFUL, 1.0f, 8.0f)); + Message(6.0, "** You lost the bet **", oPC); + } + } + else + { + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_LAUGHING, 1.0f, 4.0f)); + } + }break; + + case 1: { + if (iTeamBet!=0) + { + Normalize(oPC); + SetLocalInt(oPC, "bet_confirmed", 0); + Message(6.0, "** You forfeited the bet by joining a team**", oPC); + iTLwager+=iWager; + SetLocalInt(oPC, "TLwager", iTLwager); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + SetLocalInt(oPC, "winnings",0); + } + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2)); + }break; + case 2: { + if (iTeamBet!=0) + { + Normalize(oPC); + SetLocalInt(oPC, "bet_confirmed", 0); + Message(6.0, "** You forfeited the bet by joining a team**", oPC); + iTLwager+=iWager; + SetLocalInt(oPC, "TLwager", iTLwager); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + SetLocalInt(oPC, "winnings",0); + } + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_FORCEFUL, 1.0f, 8.0f)); + }break; + } + if ((iTeamBet==4)||(iNPCduel==1)) + { + //SetLocalInt(oPC, "npc_duel", 0); + Message(3.0, "** "+sTop+" has prevailed **", oPC); + } + else + { + Message(2.0, "*** The army of light has prevailed ***", oPC); + Message(4.0, sChamp, oPC); + } + if ((GetLocalInt(oPC, "champ_won")==1)&&(iTeamBet==0)&&(iNPCduel!=1)) + { + oBonus = 50000; + SendMessageToPC(oPC, "Match championship prize money: "+IntToString(oBonus)+" gold"); + GiveGoldToCreature(oPC, oBonus); + PlaySound("it_coins"); + } + else {SetLocalInt(oPC, "champ_won", 0);} + oPC = GetNextPC(); + } + ++oHeaven; + ++oHellloss; + ++iHlcas; + ++iHlTotCas; + SetLocalInt(oMod, "hell_cas", iHlcas); + SetLocalInt(oMod, "iHlTotCas", iHlTotCas); + SetLocalInt(oMod, "heav_score", oHeaven); + SetLocalInt(oMod, "hell_loss", oHellloss); + SetLocalInt(oMod, "war_won", 1); + //AssignCommand(oHost, SpeakString("The divine Tyriel and his holy warriors have been victorious!", TALKVOLUME_SHOUT)); + DelayCommand(1.0, TeamCheer()); + DelayCommand(2.5, AddJournalQuestEntry("war_heav", 1, oPC, FALSE, FALSE)); + return; + } + else + { + SetLocalInt(oMod, "iDfire", 1); + oPC = GetFirstPC(); + while (GetIsObjectValid(oPC)) + { + iPCSide = GetLocalInt(oPC, "pc_side"); + switch (iPCSide) + { + case 0: { + if (iTeamBet==2) + { + Normalize(oPC); + SetLocalInt(oPC, "bet_confirmed", 0); + iWager2=iWager*2; + iTWwager+=iWager2-iWager; + SetLocalInt(oPC, "TWwager", iTWwager); + SetLocalInt(oPC, "winnings", iWager); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY3)); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY3)); + Message(6.0, "** You won "+IntToString(iWager2)+" gold: Collect at the tote **", oPC); + } + else if (iTeamBet==1) + { + iTLwager+=iWager; + SetLocalInt(oPC, "TLwager", iTLwager); + SetLocalInt(oPC, "bet_confirmed", 0); + SetLocalInt(oPC, "winnings", 0); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_FORCEFUL, 1.0f, 8.0f)); + Message(6.0, "** You lost the bet **", oPC); + } + else if (iTeamBet==3) + { + if (sTop==sCHbet) + { + Normalize(oPC); + SetLocalInt(oPC, "bet_confirmed", 0); + iWager2 = (iWager*iOdds); + iTWwager+=iWager2-iWager; + SetLocalInt(oPC, "TWwager", iTWwager); + SetLocalInt(oPC, "winnings", iWager2); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY3)); + Message(6.0, "** You won "+IntToString(iWager2)+" gold: Collect at the tote **", oPC); + } + else + { + iTLwager+=iWager; + SetLocalInt(oPC, "TLwager", iTLwager); + SetLocalInt(oPC, "bet_confirmed", 0); + SetLocalInt(oPC, "winnings", 0); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_FORCEFUL, 1.0f, 8.0f)); + Message(6.0, "** You lost the bet **", oPC); + } + } + else if (iTeamBet==4) + { + if (sTop==sCHbet) + { + Normalize(oPC); + SetLocalInt(oPC, "bet_confirmed", 0); + iWager2 =(iWager*iOdds2); + iTWwager+=iWager2-iWager; + SetLocalInt(oPC, "TWwager", iTWwager); + SetLocalInt(oPC, "winnings", iWager2); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY3)); + Message(6.0, "** You won "+IntToString(iWager2)+" gold: Collect at the tote **", oPC); + } + else + { + iTLwager+=iWager; + SetLocalInt(oPC, "TLwager", iTLwager); + SetLocalInt(oPC, "bet_confirmed", 0); + SetLocalInt(oPC, "winnings", 0); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_FORCEFUL, 1.0f, 8.0f)); + Message(6.0, "** You lost the bet **", oPC); + } + } + else + { + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_LAUGHING, 1.0f, 4.0f)); + } + }break; + case 1: { + if (iTeamBet!=0) + { + Normalize(oPC); + SetLocalInt(oPC, "bet_confirmed", 0); + Message(6.0, "** You forfeited the bet by joining a team**", oPC); + iTLwager+=iWager; + SetLocalInt(oPC, "TLwager", iTLwager); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + SetLocalInt(oPC, "winnings",0); + } + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_LOOPING_TALK_FORCEFUL, 1.0f, 8.0f)); + }break; + case 2: { + if (iTeamBet!=0) + { + Normalize(oPC); + SetLocalInt(oPC, "bet_confirmed", 0); + Message(6.0, "** You forfeited the bet by joining a team**", oPC); + iTLwager+=iWager; + SetLocalInt(oPC, "TLwager", iTLwager); + SetLocalInt(oPC, "wager", 0); + SetLocalInt(oPC, "team_bet", 0); + SetLocalInt(oPC, "winnings",0); + } + AssignCommand(oPC, ClearAllActions()); + AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2)); + }break; + + } + if ((iTeamBet==4)||(iNPCduel==1)) + { + //SetLocalInt(oPC, "npc_duel", 0); + Message(3.0, "** "+sTop+" has prevailed **", oPC); + } + else + { + Message(2.0, "*** The army of darkness has prevailed ***", oPC); + Message(4.0, sChamp, oPC); + } + if ((GetLocalInt(oPC, "champ_won")==1)&&(iTeamBet==0)&&(iNPCduel!=1)) + { + oBonus = 50000; + SendMessageToPC(oPC, "Match championship prize money: "+IntToString(oBonus)+" gold"); + GiveGoldToCreature(oPC, oBonus); + PlaySound("it_coins"); + } + else {SetLocalInt(oPC, "champ_won", 0);} + oPC = GetNextPC(); + } + ++oHell; + ++oHeavloss; + ++iHvcas; + ++iHvTotCas; + SetLocalInt(oMod, "heav_cas", iHvcas); + SetLocalInt(oMod, "iHvTotCas", iHvTotCas); + SetLocalInt(oMod, "hell_score", oHell); + SetLocalInt(oMod, "heav_loss", oHeavloss); + SetLocalInt(oMod, "war_won", 1); + //AssignCommand(oHost, SpeakString("The Dark Lord and his minions have been victorious!", TALKVOLUME_SHOUT)); + DelayCommand(1.0, TeamCheer()); + DelayCommand(2.5, AddJournalQuestEntry("war_hell", 1, oPC, FALSE, FALSE)); + return; + } + } +else + { + if ((GetResRef(oCreature)=="dragon1")||(GetResRef(oCreature)=="zep_halfdrafn001")|| + (GetResRef(oCreature)=="zep_marilithb001")||(GetResRef(oCreature)=="bard2")|| + (GetResRef(oCreature)=="zep_pitfiend001")||(GetResRef(oCreature)=="zep_balrog001")|| + (GetResRef(oCreature)=="dopple")||(GetResRef(oCreature)=="mistress2")|| + (GetResRef(oCreature)=="notime3")||(GetResRef(oCreature)=="notime4")|| + (GetResRef(oCreature)=="darcher")||(GetResRef(oCreature)=="death")) + { + ++iHlTotCas; + ++iHlcas; + SetLocalInt(oMod, "hell_cas", iHlcas); + SetLocalInt(oMod, "iHlTotCas", iHlTotCas); + return; + } + else + { + ++iHvcas; + ++iHvTotCas; + SetLocalInt(oMod, "iHvTotCas", iHvTotCas); + SetLocalInt(oMod, "heav_cas", iHvcas); + return; + } + } + +} + + + +//void main () {} + diff --git a/_module/nss/spawner_m.nss b/_module/nss/spawner_m.nss new file mode 100644 index 0000000..9beeb59 --- /dev/null +++ b/_module/nss/spawner_m.nss @@ -0,0 +1,85 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ +object oMod = GetModule(); +object oPC = GetLastUsedBy(); +if (!GetIsPC(oPC)) return; + + +int oS1 = GetLocalInt(oMod, "sw_hw"); +int oS2 = GetLocalInt(oMod, "sw_dr"); +int oS3 = GetLocalInt(oMod, "sw_bl"); +int oS4 = GetLocalInt(oMod, "sw_pf"); +int oS5 = GetLocalInt(oMod, "sw_df"); +int oS6 = GetLocalInt(oMod, "sw_pm"); +int oS7 = GetLocalInt(oMod, "sw_bm"); +int oS8 = GetLocalInt(oMod, "sw_lm"); +int oS9 = GetLocalInt(oMod, "sw_ll"); +int oS10 = GetLocalInt(oMod, "sw_xx"); +int nInt = GetLocalInt(oMod, "challenge"); +int nInt2 = GetLocalInt(oMod, "duel_on"); +int oChest = GetLocalInt(oMod, "chest_here"); +int oGameMode = GetLocalInt(oMod, "gamemode"); +int oModMode = GetLocalInt(oMod, "mod_mode"); +object oMonster; + +if (oModMode!=1) + { + if (oChest!=1) + { + if ((nInt!=1)&&(nInt2!=1)&&(oS1!=1)&&(oS2!=1)&&(oS3!=1) + &&(oS4!=1)&&(oS5!=1)&&(oS6!=1)&&(oS7!=1)&&(oS8!=1) + &&(oS9!=1)&&(oS10!=1)) + { + if (oGameMode==1) + { + AssignCommand(OBJECT_SELF, ActionStartConversation(oPC, "spawner3")); + } + else + { + AssignCommand(OBJECT_SELF, ActionStartConversation(oPC, "spawner")); + } + } + else + { + if (nInt==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish the super challenge first.", oPC); + } + else if (nInt2==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your duel first.", oPC); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your battle first.", oPC); + + } + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must open the reward chest first.", oPC); + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("Arena challenges are unavalible in campaign manager mode.", oPC); + } +} +/* +if ((nInt!=1)&&(nInt2!=1)&&(oS1!=1)&&(oS2!=1)&&(oS3!=1) + &&(oS4!=1)&&(oS5!=1)&&(oS6!=1)&&(oS7!=1)&&(oS8!=1) + &&(oS9!=1)&&(oS10!=1)) + { diff --git a/_module/nss/spawner_m2.nss b/_module/nss/spawner_m2.nss new file mode 100644 index 0000000..8c4a7af --- /dev/null +++ b/_module/nss/spawner_m2.nss @@ -0,0 +1,23 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); +object oMod = GetModule(); +int oGameMode = GetLocalInt(oMod, "gamemode"); +object oTarget = OBJECT_SELF; +if (oGameMode==1) +{ + AssignCommand(oTarget, ActionStartConversation(oPC, "spawner4")); +} +else +{ + AssignCommand(oTarget, ActionStartConversation(oPC, "spawner2")); +} +} diff --git a/_module/nss/spawner_m3.nss b/_module/nss/spawner_m3.nss new file mode 100644 index 0000000..50cf13b --- /dev/null +++ b/_module/nss/spawner_m3.nss @@ -0,0 +1,143 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 +(and modified by chris meggitt) + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void Unsum(object oPC) +{ +object oTarget1, oTarget2; + +effect eEffect = EffectVisualEffect(VFX_IMP_UNSUMMON); +oTarget1 = GetObjectByTag("starfall2"); +RemoveHenchman(oPC, oTarget1); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget1)); +DestroyObject(GetObjectByTag("starfall2")); +oTarget2 = GetObjectByTag("diablo"); +RemoveHenchman(oPC, oTarget2); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget2)); +DestroyObject(GetObjectByTag("diablo")); +} + + +void main() +{ +object oMod = GetModule(); +object oPC = GetLastUsedBy(); +object oArea = GetArea(OBJECT_SELF); + +if (!GetIsPC(oPC)) return; + +int oS0 = GetLocalInt(oMod, "challenge"); +int oS1 = GetLocalInt(oMod, "sw_hw"); +int oS2 = GetLocalInt(oMod, "sw_dr"); +int oS3 = GetLocalInt(oMod, "sw_bl"); +int oS4 = GetLocalInt(oMod, "sw_pf"); +int oS5 = GetLocalInt(oMod, "sw_df"); +int oS6 = GetLocalInt(oMod, "sw_pm"); +int oS7 = GetLocalInt(oMod, "sw_bm"); +int oS8 = GetLocalInt(oMod, "sw_lm"); +int oS9 = GetLocalInt(oMod, "sw_ll"); +int oS10 = GetLocalInt(oMod, "sw_xx"); +int nInt = GetLocalInt(oMod, "challenge"); +int nInt2 = GetLocalInt(oMod, "duel_on"); +int oChest = GetLocalInt(oMod, "chest_here"); +int oGameMode = GetLocalInt(oMod, "gamemode"); +int oModMode = GetLocalInt(oMod, "mod_mode"); +int iHwar = GetLocalInt(oMod, "hwar_on"); +int iStatus = GetLocalInt(oMod, "war_won"); + +if (oModMode!=1) + { + if (iHwar==1) + { + if (iStatus!=1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("** Holy War in progress **", oPC); + SetLocalInt(oPC, "conv_switch", 0); + return; + } + else if (iStatus==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must clear the arena first.", oPC); + SetLocalInt(oPC, "conv_switch", 0); + return; + } + } + if (oChest!=1) + { + //FloatingTextStringOnCreature(IntToString(nInt), oPC); + //FloatingTextStringOnCreature(IntToString(nInt2), oPC); + // FloatingTextStringOnCreature(IntToString(oS1), oPC); + // FloatingTextStringOnCreature(IntToString(oS2), oPC); + // FloatingTextStringOnCreature(IntToString(oS3), oPC); + // FloatingTextStringOnCreature(IntToString(oS4), oPC); + // FloatingTextStringOnCreature(IntToString(oS5), oPC); + // FloatingTextStringOnCreature(IntToString(oS6), oPC); + // FloatingTextStringOnCreature(IntToString(oS7), oPC); + // FloatingTextStringOnCreature(IntToString(oS8), oPC); + // FloatingTextStringOnCreature(IntToString(oS9), oPC); + // FloatingTextStringOnCreature(IntToString(oS10), oPC); + // FloatingTextStringOnCreature(IntToString(oS0), oPC); + if ((nInt!=1)&&(nInt2!=1)&&(oS1!=1)&&(oS2!=1)&&(oS3!=1) + &&(oS4!=1)&&(oS5!=1)&&(oS6!=1)/*&&(oS7!=1)*/&&(oS8!=1) + &&(oS9!=1)&&(oS0!=1)&&(oS10!=1)) + { + object oMonster = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC); + if ((!GetIsEnemy(oPC, oMonster))||(oMonster==OBJECT_INVALID)) + { + if (oGameMode==1) + { + MusicBackgroundStop(oArea); + PlaySound("gui_select"); + AssignCommand(OBJECT_SELF, ActionStartConversation(oPC, "spawner3")); + } + else + { + MusicBackgroundStop(oArea); + PlaySound("gui_select"); + AssignCommand(OBJECT_SELF, ActionStartConversation(oPC, "spawner")); + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your battle first.", oPC); + return; + } + } + else + { + if (nInt==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish the super challenge first.", oPC); + } + else if (nInt2==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your duel first.", oPC); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must finish your battle first.", oPC); + } + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You must loot your reward chest first.", oPC); + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("Arena challenges are unavailable in campaign manager mode.", oPC); + } +} diff --git a/_module/nss/speed_imbue.nss b/_module/nss/speed_imbue.nss new file mode 100644 index 0000000..f7bd835 --- /dev/null +++ b/_module/nss/speed_imbue.nss @@ -0,0 +1,6 @@ +#include "haste_imbue" + +void main() +{ +HasteImbue(); +} diff --git a/_module/nss/spell_imbue.nss b/_module/nss/spell_imbue.nss new file mode 100644 index 0000000..f6c5d34 --- /dev/null +++ b/_module/nss/spell_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_SPELLCRAFT, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/spellres.nss b/_module/nss/spellres.nss new file mode 100644 index 0000000..d1009d6 --- /dev/null +++ b/_module/nss/spellres.nss @@ -0,0 +1,18 @@ +void SpellResApply(object oPlayer, int iMax ) +{ +int iHD = GetHitDice(oPlayer); +int iHcalc = (iHD *2); +if (iHcalc < iMax) + { + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellResistanceIncrease(iHcalc)), oPlayer); + + } + else + { + iHcalc = iMax; + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellResistanceIncrease(iHcalc)), oPlayer); + } +} +//void main (){} diff --git a/_module/nss/spellres_imbue.nss b/_module/nss/spellres_imbue.nss new file mode 100644 index 0000000..78c5249 --- /dev/null +++ b/_module/nss/spellres_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void SpellRes (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = IP_CONST_SPELLRESISTANCEBONUS_10; + if (nRandom==2) oDamage = IP_CONST_SPELLRESISTANCEBONUS_10; + if (nRandom==3) oDamage = IP_CONST_SPELLRESISTANCEBONUS_10; + if (nRandom==4) oDamage = IP_CONST_SPELLRESISTANCEBONUS_10; + if (nRandom==5) oDamage = IP_CONST_SPELLRESISTANCEBONUS_10; + if (nRandom==6) oDamage = IP_CONST_SPELLRESISTANCEBONUS_10; + if (nRandom==7) oDamage = IP_CONST_SPELLRESISTANCEBONUS_10; + if (nRandom==8) oDamage = IP_CONST_SPELLRESISTANCEBONUS_12; + if (nRandom==9) oDamage = IP_CONST_SPELLRESISTANCEBONUS_12; + if (nRandom==10) oDamage = IP_CONST_SPELLRESISTANCEBONUS_12; + if (nRandom==11) oDamage = IP_CONST_SPELLRESISTANCEBONUS_12; + if (nRandom==12) oDamage = IP_CONST_SPELLRESISTANCEBONUS_12; + if (nRandom==13) oDamage = IP_CONST_SPELLRESISTANCEBONUS_12; + if (nRandom==14) oDamage = IP_CONST_SPELLRESISTANCEBONUS_12; + if (nRandom==15) oDamage = IP_CONST_SPELLRESISTANCEBONUS_14; + if (nRandom==16) oDamage = IP_CONST_SPELLRESISTANCEBONUS_14; + if (nRandom==17) oDamage = IP_CONST_SPELLRESISTANCEBONUS_14; + if (nRandom==18) oDamage = IP_CONST_SPELLRESISTANCEBONUS_14; + if (nRandom==19) oDamage = IP_CONST_SPELLRESISTANCEBONUS_16; + if (nRandom==20) + { + oDamage = IP_CONST_SPELLRESISTANCEBONUS_20; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + + ipAdd = ItemPropertyBonusSpellResistance(oDamage); + +IPSafeAddItemProperty(oItem, ipAdd); +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_MAGIC_PROTECTION, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_SPELL_MANTLE_USE, OBJECT_SELF); +PCEffect(2.0,VFX_DUR_MAGIC_RESISTANCE, OBJECT_SELF); +DelayCommand(1.0, SpellRes(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/spellslot_imbue.nss b/_module/nss/spellslot_imbue.nss new file mode 100644 index 0000000..51b932c --- /dev/null +++ b/_module/nss/spellslot_imbue.nss @@ -0,0 +1,61 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Spell (object oItem, int oClass) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 1; + if (nRandom==2) oDamage = 1; + if (nRandom==3) oDamage = 1; + if (nRandom==4) oDamage = 2; + if (nRandom==5) oDamage = 2; + if (nRandom==6) oDamage = 2; + if (nRandom==7) oDamage = 3; + if (nRandom==8) oDamage = 3; + if (nRandom==9) oDamage = 3; + if (nRandom==10) oDamage = 4; + if (nRandom==11) oDamage = 4; + if (nRandom==12) oDamage = 5; + if (nRandom==13) oDamage = 5; + if (nRandom==14) oDamage = 6; + if (nRandom==15) oDamage = 6; + if (nRandom==16) oDamage = 7; + if (nRandom==17) oDamage = 7; + if (nRandom==18) oDamage = 8; + if (nRandom==19) oDamage = 8; + if (nRandom==20) + { + oDamage = 9; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertyBonusLevelSpell(oClass, oDamage); +AddItemProperty(DURATION_TYPE_PERMANENT, ipAdd, oItem); +} +void SpellSlot (int oClass) +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.0,VFX_DUR_PIXIEDUST, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_ELEMENTAL_PROTECTION, OBJECT_SELF); +DelayCommand(1.0, Spell(GetFirstItemInInventory(OBJECT_SELF), oClass)); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} +//void main (){} + + diff --git a/_module/nss/spen_imbue.nss b/_module/nss/spen_imbue.nss new file mode 100644 index 0000000..0198017 --- /dev/null +++ b/_module/nss/spen_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_SPELLPENETRATION); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/spn_slaad.nss b/_module/nss/spn_slaad.nss new file mode 100644 index 0000000..19b5a97 --- /dev/null +++ b/_module/nss/spn_slaad.nss @@ -0,0 +1,50 @@ +//::////////////////////////////////////////////////// +//:: CUSTOM OnSpawn handler. + +#include "x0_i0_anims" +//#include "x0_i0_walkway" +#include "x0_i0_treasure" + +void main() +{ + // SetSpawnInCondition(NW_FLAG_SPECIAL_CONVERSATION); + // SetSpawnInCondition(NW_FLAG_SPECIAL_COMBAT_CONVERSATION); + // SetSpawnInCondition(NW_FLAG_SHOUT_ATTACK_MY_TARGET); + // SetSpawnInCondition(NW_FLAG_STEALTH); + // SetSpawnInCondition(NW_FLAG_SEARCH); + // SetSpawnInCondition(NW_FLAG_SET_WARNINGS); + // SetSpawnInCondition(NW_FLAG_DAY_NIGHT_POSTING); + // SetSpawnInCondition(NW_FLAG_APPEAR_SPAWN_IN_ANIMATION); + // SetSpawnInCondition(NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS); + SetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS); + + // SetAnimationCondition(NW_ANIM_FLAG_IS_CIVILIZED); + // SetAnimationCondition(NW_ANIM_FLAG_CONSTANT); + // SetAnimationCondition(NW_ANIM_FLAG_CHATTER); + // SetAnimationCondition(NW_ANIM_FLAG_IS_MOBILE_CLOSE_RANGE); + + // SetCombatCondition(X0_COMBAT_FLAG_RANGED); + // SetCombatCondition(X0_COMBAT_FLAG_DEFENSIVE); + // SetCombatCondition(X0_COMBAT_FLAG_AMBUSHER); + // SetCombatCondition(X0_COMBAT_FLAG_COWARDLY); + + // SetSpawnInCondition(NW_FLAG_ESCAPE_RETURN); + // SetSpawnInCondition(NW_FLAG_ESCAPE_LEAVE); + // SetSpawnInCondition(NW_FLAG_TELEPORT_LEAVE); + // SetSpawnInCondition(NW_FLAG_TELEPORT_RETURN); + + // SetSpawnInCondition(NW_FLAG_HEARTBEAT_EVENT); + // SetSpawnInCondition(NW_FLAG_PERCIEVE_EVENT); + // SetSpawnInCondition(NW_FLAG_ATTACK_EVENT); + // SetSpawnInCondition(NW_FLAG_DAMAGED_EVENT); + // SetSpawnInCondition(NW_FLAG_DISTURBED_EVENT); + // SetSpawnInCondition(NW_FLAG_END_COMBAT_ROUND_EVENT); + // SetSpawnInCondition(NW_FLAG_ON_DIALOGUE_EVENT); + + SetListeningPatterns(); + WalkWayPoints(); + // ***** ADD ANY CUSTOM ON-SPAWN CODE HERE ***** // + +} + + diff --git a/_module/nss/spot_imbue.nss b/_module/nss/spot_imbue.nss new file mode 100644 index 0000000..6ddbe08 --- /dev/null +++ b/_module/nss/spot_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_SPOT, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/ssmmdred_imbue_2.nss b/_module/nss/ssmmdred_imbue_2.nss new file mode 100644 index 0000000..d9c39d4 --- /dev/null +++ b/_module/nss/ssmmdred_imbue_2.nss @@ -0,0 +1,8 @@ +#include "ac_imbue2" + +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "shammdone_2", 1); +DodgeBonus(2); +} diff --git a/_module/nss/starattack.nss b/_module/nss/starattack.nss new file mode 100644 index 0000000..550c237 --- /dev/null +++ b/_module/nss/starattack.nss @@ -0,0 +1,31 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_attacked +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default On Physically attacked script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// + +void main() +{ + object oPC=GetFirstPC(); + SetLocalInt(oPC, "starduel", 1); + //-------------------------------------------------------------------------- + // GZ: 2003-10-16 + // Make Plot Creatures Ignore Attacks + //-------------------------------------------------------------------------- + if (GetPlotFlag(OBJECT_SELF)) + { + return; + } + + //-------------------------------------------------------------------------- + // Execute old NWN default AI code + //-------------------------------------------------------------------------- + + ExecuteScript("nw_c2_default5", OBJECT_SELF); +} diff --git a/_module/nss/starfall_reset.nss b/_module/nss/starfall_reset.nss new file mode 100644 index 0000000..cffab41 --- /dev/null +++ b/_module/nss/starfall_reset.nss @@ -0,0 +1,59 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetFirstPC(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +oTarget = GetObjectByTag("starfall"); + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +int nInt; +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_UNSUMMON), oTarget); +else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_UNSUMMON), GetLocation(oTarget)); + +oTarget = GetObjectByTag("starfall"); + +DestroyObject(oTarget, 3.0); + +object oSpawn; +location lTarget; +oTarget = GetWaypointByTag("starfall_wp"); + +lTarget = GetLocation(oTarget); + +oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "starfall", lTarget); + +oTarget = oSpawn; + +//Visual effects can't be applied to waypoints, so if it is a WP +//apply to the WP's location instead + +nInt = GetObjectType(oTarget); + +if (nInt != OBJECT_TYPE_WAYPOINT) DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_STRIKE_HOLY), oTarget)); +else DelayCommand(0.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_STRIKE_HOLY), GetLocation(oTarget))); + +oTarget = GetObjectByTag("starfall"); +AdjustReputation(oPC, oTarget, 100); + +while (GetIsPC(oPC) == TRUE) + { + AdjustReputation(oPC, oTarget, 100); + oPC = GetNextPC(); + } + +} + diff --git a/_module/nss/starport.nss b/_module/nss/starport.nss new file mode 100644 index 0000000..95c673e --- /dev/null +++ b/_module/nss/starport.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +AssignCommand(OBJECT_SELF, JumpToLocation(GetLocation(GetObjectByTag ("starfall_wp")))); +SetLocalInt(oPC, "starduel", 0); +} diff --git a/_module/nss/start_a_merch.nss b/_module/nss/start_a_merch.nss new file mode 100644 index 0000000..ad2f73f --- /dev/null +++ b/_module/nss/start_a_merch.nss @@ -0,0 +1,19 @@ +//:://///////////////////////////////////////////// +//:: FileName start_a_merch +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 24/11/2004 10:54:25 PM +//::////////////////////////////////////////////// +#include "nw_i0_plot" + +void main() +{ + + // Either open the store with that tag or let the user know that no store exists. + object oStore = GetNearestObjectByTag("arena_merch"); + if(GetObjectType(oStore) == OBJECT_TYPE_STORE) + OpenStore(oStore, GetPCSpeaker()); + else + ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK); +} diff --git a/_module/nss/start_a_merch2.nss b/_module/nss/start_a_merch2.nss new file mode 100644 index 0000000..9b39658 --- /dev/null +++ b/_module/nss/start_a_merch2.nss @@ -0,0 +1,19 @@ +//:://///////////////////////////////////////////// +//:: FileName start_a_merch +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 24/11/2004 10:54:25 PM +//::////////////////////////////////////////////// +#include "nw_i0_plot" + +void main() +{ + + // Either open the store with that tag or let the user know that no store exists. + object oStore = GetNearestObjectByTag("arena_merch2"); + if(GetObjectType(oStore) == OBJECT_TYPE_STORE) + OpenStore(oStore, GetPCSpeaker()); + else + ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK); +} diff --git a/_module/nss/start_armour.nss b/_module/nss/start_armour.nss new file mode 100644 index 0000000..bf7e7e9 --- /dev/null +++ b/_module/nss/start_armour.nss @@ -0,0 +1,24 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +if (GetItemPossessedBy(oPC, "nordock_token")!=OBJECT_INVALID) +oTarget = GetObjectByTag("n_plate"); +else +oTarget = GetObjectByTag("armour_shop"); +PlaySound("it_armorplate"); +OpenStore(oTarget, oPC, 0, 0); + +} + diff --git a/_module/nss/stay_trigger.nss b/_module/nss/stay_trigger.nss new file mode 100644 index 0000000..84507b3 --- /dev/null +++ b/_module/nss/stay_trigger.nss @@ -0,0 +1,10 @@ +void main() +{ +object oDude = GetExitingObject(); +object oTarget = GetWaypointByTag("starfall_wp"); +location lLocation = GetLocation(oTarget); +if (GetTag(oDude)=="starfall") +{ +AssignCommand(oDude, ActionJumpToLocation(lLocation)); +} +} diff --git a/_module/nss/steelgrind_death.nss b/_module/nss/steelgrind_death.nss new file mode 100644 index 0000000..2bec6cd --- /dev/null +++ b/_module/nss/steelgrind_death.nss @@ -0,0 +1,54 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////Baal / Thor [challenge] +#include "x0_i0_petrify" +#include "spawner" +//#include "rank" + +void main() +{ + + + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oTarget; + int nInt; + int iKilled = GetLocalInt(oPC, "iKilled"); + int oChest; + int oExploit = GetLocalInt(oMod, "xcheck"); + oTarget = OBJECT_SELF; + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "ch_ll", 0); + + if (oExploit!=1) + { + LastHit(); + SetLocalInt(oPC, "lorddead", 1); + SetLocalInt(oMod, "challenge",0); + + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + DeathStats(oPC); + FloatingTextStringOnCreature("Victory", oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + } + nInt = GetObjectType(oTarget); + if (nInt != OBJECT_TYPE_WAYPOINT) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DEATH), oTarget); + else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, + EffectVisualEffect(VFX_IMP_DEATH), GetLocation(oTarget)); + + ExecuteScript("nw_c2_default7", OBJECT_SELF); +} + diff --git a/_module/nss/stop_music.nss b/_module/nss/stop_music.nss new file mode 100644 index 0000000..f03ca19 --- /dev/null +++ b/_module/nss/stop_music.nss @@ -0,0 +1,10 @@ +void main() +{ +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +SetLocalInt(oMod, "star_music", 1); +//MusicBackgroundChangeDay(GetArea(oPC), 0); +//MusicBackgroundChangeNight(GetArea(oPC), 0); +MusicBackgroundStop(GetArea(oPC)); +FloatingTextStringOnCreature("** Background Music Off **", oPC); +} diff --git a/_module/nss/storecrash.nss b/_module/nss/storecrash.nss new file mode 100644 index 0000000..261ac1a --- /dev/null +++ b/_module/nss/storecrash.nss @@ -0,0 +1,4 @@ +void main() +{ +DestroyObject(OBJECT_SELF); +} diff --git a/_module/nss/storescore.nss b/_module/nss/storescore.nss new file mode 100644 index 0000000..02e99c2 --- /dev/null +++ b/_module/nss/storescore.nss @@ -0,0 +1,67 @@ +#include "scorekeep" + +void main() +{ +object oPC = GetLastUsedBy(); +object oMod = GetModule(); +object oTombChest = GetObjectByTag("tomb_chest"); +object oTombChest2 = GetObjectByTag("tomb_chest2"); +object oTombChest3 = GetObjectByTag("tomb_chest3"); +object oItem; +int oItemCount = 0; + + +if (GetLocalInt(oMod, "mod_mode")==1) +{ +PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("** Not availible in campaign manager mode **", oPC); + return; +} + + +oItem = GetFirstItemInInventory(oTombChest); +while (oItem!=OBJECT_INVALID) +{ + ++oItemCount; + oItem = GetNextItemInInventory(oTombChest); +} + +oItem = GetFirstItemInInventory(oTombChest2); +while (oItem!=OBJECT_INVALID) +{ + ++oItemCount; + oItem = GetNextItemInInventory(oTombChest2); +} +oItem = GetFirstItemInInventory(oTombChest3); +while (oItem!=OBJECT_INVALID) +{ + ++oItemCount; + oItem = GetNextItemInInventory(oTombChest3); +} + +if (oItemCount==0) +{ +FloatingTextStringOnCreature("Saving...", oPC); +StoreKills(oPC); +DelayCommand(0.3, StoreDeaths(oPC)); +DelayCommand(0.6, StoreChall(oPC)); +DelayCommand(0.9, StoreMon(oPC)); +DelayCommand(1.2, StoreHits(oPC)); +DelayCommand(1.5, StoreDamage(oPC)); +DelayCommand(1.6, StoreSwings(oPC)); +DelayCommand(1.7, StoreAOCscore(oPC)); +DelayCommand(1.8, StoreDeity(oPC)); +DelayCommand(1.9, ExportSingleCharacter(oPC)); +DelayCommand(2.0, FloatingTextStringOnCreature("** Data recorded successfully **", oPC)); +PlaySound("gui_select"); +DelayCommand(2.1, PlaySound("sce_positive")); +} +else +{ +PlaySound("sim_cntresist"); +//FloatingTextStringOnCreature("You have forgotten your possessions in the storage chests!", oPC); +ActionStartConversation(oPC, "score_save", TRUE, FALSE); +} + +} diff --git a/_module/nss/str_imbue.nss b/_module/nss/str_imbue.nss new file mode 100644 index 0000000..66f3c64 --- /dev/null +++ b/_module/nss/str_imbue.nss @@ -0,0 +1,6 @@ +#include "ability_imbue" + +void main() +{ +AbilityImbue(IP_CONST_ABILITY_STR); +} diff --git a/_module/nss/strip.nss b/_module/nss/strip.nss new file mode 100644 index 0000000..a754256 --- /dev/null +++ b/_module/nss/strip.nss @@ -0,0 +1,67 @@ +void GearStrip(object oPC) +{ +object oGear = GetItemInSlot(INVENTORY_SLOT_ARMS, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_BELT, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_BOLTS, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_BOOTS, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_CHEST, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_CLOAK, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_HEAD, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_LEFTRING, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_NECK, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); + oGear = GetItemInSlot(INVENTORY_SLOT_RIGHTRING, oPC); + if(GetIsObjectValid(oGear)) DestroyObject(oGear); +} + +void InvStrip(object oPC) +{ + object oStuff = GetFirstItemInInventory(oPC); + while(GetIsObjectValid(oStuff)) + { + if ((GetResRef(oStuff)!="sxillwa")&&(GetResRef(oStuff)!="trqcva") + &&(GetResRef(oStuff)!="fgnpde")&&(GetResRef(oStuff)!="bzedyer") + &&(GetResRef(oStuff)!="qxcove")&&(GetResRef(oStuff)!="bsntfn") + &&(GetResRef(oStuff)!="ahuvpw")&&(GetResRef(oStuff)!="arscod") + &&(GetResRef(oStuff)!="deitzy")&&(GetResRef(oStuff)!="divine_talisman") + &&(GetResRef(oStuff)!="dark_talisman")&&(GetResRef(oStuff)!="final_ring") + &&(GetResRef(oStuff)!="show_ticket")&&(GetResRef(oStuff)!="divine_talisman2") + &&(GetResRef(oStuff)!="dark_talisman2")) + { + DestroyObject(oStuff); + } + oStuff = GetNextItemInInventory(oPC); + } + //DelayCommand(5.0, FloatingTextStringOnCreature("You have been stripped of all your belongings.", oPC)); +} + +void DataStrip(object oPC) +{ + object oStuff = GetFirstItemInInventory(oPC); + while(GetIsObjectValid(oStuff)) + { + if ((GetResRef(oStuff)=="sxillwa")||(GetResRef(oStuff)=="trqcva") + ||(GetResRef(oStuff)=="fgnpde")||(GetResRef(oStuff)=="bzedyer") + ||(GetResRef(oStuff)=="qxcove")||(GetResRef(oStuff)=="bsntfn") + ||(GetResRef(oStuff)=="ahuvpw")||(GetResRef(oStuff)=="deitzy") + ||(GetResRef(oStuff)=="arscod")) + { + DestroyObject(oStuff); + } + oStuff = GetNextItemInInventory(oPC); + } + //DelayCommand(5.0, FloatingTextStringOnCreature("You have been stripped of all your belongings.", oPC)); +} +//void main () {} diff --git a/_module/nss/sw2.nss b/_module/nss/sw2.nss new file mode 100644 index 0000000..80b74d5 --- /dev/null +++ b/_module/nss/sw2.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_025 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 29/01/2005 11:48:20 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetModule(), "score_switch") == 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sw2a.nss b/_module/nss/sw2a.nss new file mode 100644 index 0000000..1e74379 --- /dev/null +++ b/_module/nss/sw2a.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_025 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 29/01/2005 11:48:20 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetModule(), "score_switch") == 2)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sw2ab.nss b/_module/nss/sw2ab.nss new file mode 100644 index 0000000..a63976e --- /dev/null +++ b/_module/nss/sw2ab.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_025 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 29/01/2005 11:48:20 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetModule(), "score_switch") != 2)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sw2av.nss b/_module/nss/sw2av.nss new file mode 100644 index 0000000..b692469 --- /dev/null +++ b/_module/nss/sw2av.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_025 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 29/01/2005 11:48:20 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + + if(!(GetLocalInt(GetModule(), "score_switch") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/sw2z.nss b/_module/nss/sw2z.nss new file mode 100644 index 0000000..8e69d94 --- /dev/null +++ b/_module/nss/sw2z.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_025 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 29/01/2005 11:48:20 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(GetModule(), "d4_complete") == 1)) + return FALSE; + if(!(GetLocalInt(GetModule(), "score_switch") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/take10000.nss b/_module/nss/take10000.nss new file mode 100644 index 0000000..becdcfa --- /dev/null +++ b/_module/nss/take10000.nss @@ -0,0 +1,36 @@ +void RemoveXPFromParty(int nXP, object oPC, int bAllParty=TRUE) +{ + +if (!bAllParty) + { + nXP=(GetXP(oPC)-nXP)>=0 ? GetXP(oPC)-nXP : 0; + SetXP(oPC, nXP); + } +else + { + object oMember=GetFirstFactionMember(oPC, TRUE); + + while (GetIsObjectValid(oMember)) + { + nXP=(GetXP(oMember)-nXP)>=0 ? GetXP(oMember)-nXP : 0; + SetXP(oMember, nXP); + oMember=GetNextFactionMember(oPC, TRUE); + } + } +} +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); + +RemoveXPFromParty(10000, oPC, FALSE); + +} + diff --git a/_module/nss/take20000.nss b/_module/nss/take20000.nss new file mode 100644 index 0000000..aee0b22 --- /dev/null +++ b/_module/nss/take20000.nss @@ -0,0 +1,36 @@ +void RemoveXPFromParty(int nXP, object oPC, int bAllParty=TRUE) +{ + +if (!bAllParty) + { + nXP=(GetXP(oPC)-nXP)>=0 ? GetXP(oPC)-nXP : 0; + SetXP(oPC, nXP); + } +else + { + object oMember=GetFirstFactionMember(oPC, TRUE); + + while (GetIsObjectValid(oMember)) + { + nXP=(GetXP(oMember)-nXP)>=0 ? GetXP(oMember)-nXP : 0; + SetXP(oMember, nXP); + oMember=GetNextFactionMember(oPC, TRUE); + } + } +} +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); + +RemoveXPFromParty(20000, oPC, FALSE); + +} + diff --git a/_module/nss/take5000.nss b/_module/nss/take5000.nss new file mode 100644 index 0000000..a885abf --- /dev/null +++ b/_module/nss/take5000.nss @@ -0,0 +1,36 @@ +void RemoveXPFromParty(int nXP, object oPC, int bAllParty=TRUE) +{ + +if (!bAllParty) + { + nXP=(GetXP(oPC)-nXP)>=0 ? GetXP(oPC)-nXP : 0; + SetXP(oPC, nXP); + } +else + { + object oMember=GetFirstFactionMember(oPC, TRUE); + + while (GetIsObjectValid(oMember)) + { + nXP=(GetXP(oMember)-nXP)>=0 ? GetXP(oMember)-nXP : 0; + SetXP(oMember, nXP); + oMember=GetNextFactionMember(oPC, TRUE); + } + } +} +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); + +RemoveXPFromParty(5000, oPC, FALSE); + +} + diff --git a/_module/nss/take500000.nss b/_module/nss/take500000.nss new file mode 100644 index 0000000..fd3e50d --- /dev/null +++ b/_module/nss/take500000.nss @@ -0,0 +1,36 @@ +void RemoveXPFromParty(int nXP, object oPC, int bAllParty=TRUE) +{ + +if (!bAllParty) + { + nXP=(GetXP(oPC)-nXP)>=0 ? GetXP(oPC)-nXP : 0; + SetXP(oPC, nXP); + } +else + { + object oMember=GetFirstFactionMember(oPC, TRUE); + + while (GetIsObjectValid(oMember)) + { + nXP=(GetXP(oMember)-nXP)>=0 ? GetXP(oMember)-nXP : 0; + SetXP(oMember, nXP); + oMember=GetNextFactionMember(oPC, TRUE); + } + } +} +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ + +object oPC = GetPCSpeaker(); + +RemoveXPFromParty(500000, oPC, FALSE); + +} + diff --git a/_module/nss/take_10k.nss b/_module/nss/take_10k.nss new file mode 100644 index 0000000..9405389 --- /dev/null +++ b/_module/nss/take_10k.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +TakeGoldFromCreature(10000, oPC, TRUE); +} diff --git a/_module/nss/take_200k.nss b/_module/nss/take_200k.nss new file mode 100644 index 0000000..d29f789 --- /dev/null +++ b/_module/nss/take_200k.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +TakeGoldFromCreature(100000, oPC, TRUE); +} diff --git a/_module/nss/take_all_xp.nss b/_module/nss/take_all_xp.nss new file mode 100644 index 0000000..2875170 --- /dev/null +++ b/_module/nss/take_all_xp.nss @@ -0,0 +1,28 @@ +void RemoveXPFromParty(int nXP, object oPC, int bAllParty=TRUE) +{ + +if (!bAllParty) + { + nXP=(GetXP(oPC)-nXP)>=0 ? GetXP(oPC)-nXP : 0; + SetXP(oPC, nXP); + } +else + { + object oMember=GetFirstFactionMember(oPC, TRUE); + + while (GetIsObjectValid(oMember)) + { + nXP=(GetXP(oMember)-nXP)>=0 ? GetXP(oMember)-nXP : 0; + SetXP(oMember, nXP); + oMember=GetNextFactionMember(oPC, TRUE); + } + } +} + +void main() +{ + // Give the speaker some XP + object oPC = GetPCSpeaker(); + RemoveXPFromParty(1000000, oPC, FALSE); + +} diff --git a/_module/nss/take_div.nss b/_module/nss/take_div.nss new file mode 100644 index 0000000..0ba186c --- /dev/null +++ b/_module/nss/take_div.nss @@ -0,0 +1,29 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this on action taken in the conversation editor +void main() +{ +object oMod = GetModule(); +object oPC = GetPCSpeaker(); +int oMode = GetLocalInt(oMod, "gamemode"); +object oItem, oItem2; +oItem = GetItemPossessedBy(oPC, "divine_note"); +oItem2 = GetItemPossessedBy(oPC, "div_key"); + +if (GetIsObjectValid(oItem)) + DestroyObject(oItem); +if (GetIsObjectValid(oItem2)) + DestroyObject(oItem2); + + +if (oMode!=1) + CreateItemOnObject("divine_talisman", oPC); +else + CreateItemOnObject("dark_talisman", oPC); + +} + diff --git a/_module/nss/taunt_imbue.nss b/_module/nss/taunt_imbue.nss new file mode 100644 index 0000000..ca2e6d4 --- /dev/null +++ b/_module/nss/taunt_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_TAUNT, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/test_rank.nss b/_module/nss/test_rank.nss new file mode 100644 index 0000000..df64c9d --- /dev/null +++ b/_module/nss/test_rank.nss @@ -0,0 +1,8 @@ +#include "rank" + +void main() +{ + object oPC = GetLastUsedBy(); + SetLocalInt(oPC, "iKilled", 62); + GetRank(oPC); +} diff --git a/_module/nss/test_rank2.nss b/_module/nss/test_rank2.nss new file mode 100644 index 0000000..dbc8f6c --- /dev/null +++ b/_module/nss/test_rank2.nss @@ -0,0 +1,7 @@ +#include "rank" + +void main() +{ +object oPC = GetLastUsedBy(); +RemoveBonuses(oPC); +} diff --git a/_module/nss/thordeath.nss b/_module/nss/thordeath.nss new file mode 100644 index 0000000..dfaf1d2 --- /dev/null +++ b/_module/nss/thordeath.nss @@ -0,0 +1,182 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////Baal / Thor [challenge] +#include "x0_i0_petrify" +#include "spawner" +#include "loot" +#include "rank" + +void main() +{ + + object oTarget = OBJECT_SELF; + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + int nInt2=GetLocalInt(oMod, "d4"); + int nInt3=GetLocalInt(oMod, "d5"); + int nInt4=GetLocalInt(oMod, "d2a"); + int nInt5=GetLocalInt(oMod, "d3"); + int oExploit = GetLocalInt(oMod, "xcheck"); + int iMode = GetLocalInt(oMod, "gamemode"); + //string oDebug = IntToString(nInt3); + //Message(8.0, oDebug, oPC); + int nInt; + int iKilled = GetLocalInt(oPC, "iKilled"); + int oChest; + int oLife = GetLocalInt(oPC, "lives"); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "ch_ll", 0); + + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + if ((nInt2!=1)&&(nInt3!=1)&&(nInt4!=1)&&(nInt5!=1)) + { + SetLocalInt(oPC, "lorddead", 1); + SetLocalInt(oMod, "challenge",0); + + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + FloatingTextStringOnCreature("Victory", oPC); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 15000); + + } + + if ((GetItemPossessedBy(oPC, "divine_talisman")== OBJECT_INVALID)&& + (GetItemPossessedBy(oPC, "dark_talisman")== OBJECT_INVALID)&& + (GetItemPossessedBy(oPC, "divine_talisman2")== OBJECT_INVALID)&& + (GetItemPossessedBy(oPC, "dark_talisman2")== OBJECT_INVALID)&& + (GetItemPossessedBy(oPC, "div_key")== OBJECT_INVALID)&& + (GetLocalInt(oMod, "hwar_on")!=1)) + + { + + CreateItemOnObject("div_key", OBJECT_SELF, 1); + } + + } + if(nInt2==1) + { + QuickRestore(oPC); + SetLocalInt(oPC, "lorddead", 1); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + SetLocalInt(oMod, "d4_complete", 1); + int iMode = GetLocalInt(oMod, "gamemode"); + if (iMode==1) + {AddJournalQuestEntry("boss5_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss5", 1, oPC, FALSE, FALSE);} + SetLocalInt(oMod, "challenge", 0); + DelayCommand(5.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(5.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + DelayCommand(7.0, FloatingTextStringOnCreature("Congratulations!", oPC)); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + + if (iMode==1) + {AddJournalQuestEntry("boss6_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss6", 1, oPC, FALSE, FALSE);} + } + if ((nInt4==1)&&(GetLocalInt(oMod, "d2a_complete")!=1)) + { + QuickRestore(oPC); + SetLocalInt(oMod, "challenge", 0); + SetLocalInt(oPC, "lorddead", 1); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + SetLocalInt(oMod, "d2a_complete", 1); + + if (iMode==1) + {AddJournalQuestEntry("boss3_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss3", 1, oPC, FALSE, FALSE);} + DelayCommand(6.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(6.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + DelayCommand(7.0, FloatingTextStringOnCreature("Congratulations!", oPC)); + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + + } + if ((nInt5==1)||(nInt3==1)) + { + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + ++oLife; + SetLocalInt(oPC, "lives", oLife); + Message(2.4, "Bonus Life Granted", oPC); + PCEffect(3.5, VFX_IMP_SUPER_HEROISM, oPC); + DelayCommand(2.5, AssignCommand(oPC, ActionPlayAnimation(ANIMATION_FIREFORGET_VICTORY2))); + if (nInt3!=1) + {BattleRest(oPC);} + + int oGameMode = GetLocalInt(oMod, "gamemode"); + if (oGameMode==1) + { + DelayCommand( 9.8, spawner (oPC, "angel", 0)); + } + else + { + DelayCommand( 9.8, spawner (oPC, "lucifer", 0)); + } + + DoEffect(9.8,VFX_FNF_PWKILL, "monster_wp"); + } + } + + PCEffect(0.0, VFX_IMP_DEATH_L, oTarget); + PCEffect(0.3, VFX_IMP_MAGIC_PROTECTION, oTarget); + PCEffect(0.0, VFX_FNF_SCREEN_SHAKE, oTarget); + PCEffect(0.6, VFX_IMP_LIGHTNING_M, oTarget); + + AssignCommand(oPC, PlaySound("vs_nzorxxxm_vict")); + ExecuteScript("nw_c2_default7", OBJECT_SELF); +} + diff --git a/_module/nss/ticket_refund.nss b/_module/nss/ticket_refund.nss new file mode 100644 index 0000000..3bfa798 --- /dev/null +++ b/_module/nss/ticket_refund.nss @@ -0,0 +1,34 @@ +void main() +{ +object oPC = GetLastUsedBy(); +object oMod = GetModule(); +int oTicket = GetLocalInt(oPC, "has_ticket"); +if (GetLocalInt(oMod, "mod_mode")==1) +{ +PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("*** Nice Try ***", oPC); + return; +} +if (oTicket==1) + { + SetLocalInt(oPC, "has_ticket", 0); + CreateItemOnObject("sxillwa", oPC, 1); + CreateItemOnObject("bzedyer", oPC, 1); + CreateItemOnObject("trqcva", oPC, 1); + CreateItemOnObject("fgnpde", oPC, 1); + CreateItemOnObject("qxcove", oPC, 1); + CreateItemOnObject("bsntfn", oPC, 1); + CreateItemOnObject("ahuvpw", oPC, 1); + CreateItemOnObject("arscod", oPC, 1); + CreateItemOnObject("deitzy", oPC, 1); + PlaySound("gui_select"); + PlaySound("sce_positive"); + FloatingTextStringOnCreature("** Tickets re-issued **", oPC); + } +else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("You already have your arena tickets", oPC); + } +} diff --git a/_module/nss/tn.nss b/_module/nss/tn.nss new file mode 100644 index 0000000..008ca9e --- /dev/null +++ b/_module/nss/tn.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC=GetPCSpeaker(); +ActionCastFakeSpellAtObject(SPELL_STORM_OF_VENGEANCE,oPC); +DelayCommand(2.5,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_PWSTUN),oPC)); +DelayCommand(2.6,AdjustAlignment(oPC,ALIGNMENT_NEUTRAL,50)); +} diff --git a/_module/nss/token_refund.nss b/_module/nss/token_refund.nss new file mode 100644 index 0000000..6448737 --- /dev/null +++ b/_module/nss/token_refund.nss @@ -0,0 +1,51 @@ +void main() +{ +object oPC = GetLastClosedBy(); +object oMod = GetModule(); +object oItem; +int iSilverCount = 0; +int iGoldCount = 0; +int iBronzeCount = 0; +int iNormCount; +int oGold = 0; + +if (GetLocalInt(oMod, "mod_mode")==1) +{ +PlaySound("sim_cntresist"); + FloatingTextStringOnCreature + ("*** This chest is not functional in campaign manager mode ***", oPC); + return; +} + +oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + if ((GetTag(oItem)!="pearl")&& + (GetTag(oItem)!="coin1")&& + (GetTag(oItem)!="coin2")){++iNormCount;} + if (GetTag(oItem)=="pearl") {++iBronzeCount;} + if (GetTag(oItem)=="coin1") {++iGoldCount;} + if (GetTag(oItem)=="coin2") {++iSilverCount;} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +if (iNormCount==0) + { + if ((iSilverCount==0)&&(iGoldCount==0)&&(iBronzeCount==0))return; + oItem = GetFirstItemInInventory(OBJECT_SELF); + while (GetIsObjectValid(oItem)) + { + DestroyObject(oItem); + oItem = GetNextItemInInventory(OBJECT_SELF); + } + SetLocked(OBJECT_SELF, TRUE); + oGold = ((iBronzeCount*5000)+(iSilverCount*10000)+(iGoldCount*15000)); + DelayCommand(1.0, GiveGoldToCreature(oPC, oGold)); + DelayCommand(1.0, PlaySound("it_coins")); + DelayCommand(1.5, SetLocked(OBJECT_SELF, FALSE)); + } +else + { + FloatingTextStringOnCreature("Tokens only please!", oPC); + PlaySound("sim_cntresist"); + } +} diff --git a/_module/nss/tr_inc_skills.nss b/_module/nss/tr_inc_skills.nss new file mode 100644 index 0000000..39ab23d --- /dev/null +++ b/_module/nss/tr_inc_skills.nss @@ -0,0 +1,746 @@ +//:://///////////////////////////////////////////// +//:: tr_inc_skills +//:: Copyright (c) 2002 Bioware Corp. +//::////////////////////////////////////////////// +/* + Took this "x0_inc_skills" and simply added + the resrefs, DC's, and tokens for epic- + strength traps. + -- Tristan 10/04 +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +#include "nw_i0_plot" + +int mySKILL_CRAFT_TRAP = 22; + +// * custom tokens +int SKILL_TRAP_DCMINOR = 2001; +int SKILL_TRAP_DCAVERAGE = 2002; +int SKILL_TRAP_DCSTRONG = 2003; +int SKILL_TRAP_DCDEADLY = 2004; +int SKILL_TRAP_DCEPIC = 2005; + +// * CONSTANTS + +string SKILL_CTRAP_FIRECOMPONENT = "X1_WMGRENADE002"; // alchemists fire +string SKILL_CTRAP_ELECTRICALCOMPONENT = "NW_IT_MSMLMISC11";// quartz crystal +string SKILL_CTRAP_TANGLECOMPONENT = "X1_WMGRENADE006"; // tanglefoot bag +string SKILL_CTRAP_SPIKECOMPONENT = "X1_WMGRENADE003"; // caltrops +string SKILL_CTRAP_HOLYCOMPONENT = "X1_WMGRENADE005"; // holy water +string SKILL_CTRAP_GASCOMPONENT = "X1_WMGRENADE004"; // choking powder +string SKILL_CTRAP_FROSTCOMPONENT = "X1_IT_MSMLMISC01"; // coldstone +string SKILL_CTRAP_NEGATIVECOMPONENT = "NW_IT_MSMLMISC13"; // skeleton knuckles +string SKILL_CTRAP_SONICCOMPONENT = "X1_WMGRENADE007"; // thunderstone +string SKILL_CTRAP_ACIDCOMPONENT = "X1_WMGRENADE001"; // acid flask + + +// just defines for the trap types; also the number of +// components required for each trap type + +// * modified February 17 2003 to make more expensive + +int SKILL_TRAP_MINOR = 1; +int SKILL_TRAP_AVERAGE = 3; +int SKILL_TRAP_STRONG = 5; +int SKILL_TRAP_DEADLY = 7; +int SKILL_TRAP_EPIC = 10; + +// * DC's of all the different trap types to make the +// * trap kit. +int SKILLDC_TRAP_BASE_TYPE_MINOR_SPIKE = 5; +int SKILLDC_TRAP_BASE_TYPE_AVERAGE_SPIKE = 20; +int SKILLDC_TRAP_BASE_TYPE_STRONG_SPIKE = 25; +int SKILLDC_TRAP_BASE_TYPE_DEADLY_SPIKE = 35; +int SKILLDC_TRAP_BASE_TYPE_EPIC_SPIKE = 45; +int SKILLDC_TRAP_BASE_TYPE_MINOR_HOLY = 15; +int SKILLDC_TRAP_BASE_TYPE_AVERAGE_HOLY = 20; +int SKILLDC_TRAP_BASE_TYPE_STRONG_HOLY = 25; +int SKILLDC_TRAP_BASE_TYPE_DEADLY_HOLY = 30; +int SKILLDC_TRAP_BASE_TYPE_EPIC_HOLY = 40; +int SKILLDC_TRAP_BASE_TYPE_MINOR_TANGLE = 15; +int SKILLDC_TRAP_BASE_TYPE_AVERAGE_TANGLE = 20; +int SKILLDC_TRAP_BASE_TYPE_STRONG_TANGLE = 25; +int SKILLDC_TRAP_BASE_TYPE_DEADLY_TANGLE = 30; +int SKILLDC_TRAP_BASE_TYPE_EPIC_TANGLE = 40; +int SKILLDC_TRAP_BASE_TYPE_MINOR_ACID = 15; +int SKILLDC_TRAP_BASE_TYPE_AVERAGE_ACID = 25; +int SKILLDC_TRAP_BASE_TYPE_STRONG_ACID = 30; +int SKILLDC_TRAP_BASE_TYPE_DEADLY_ACID = 35; +int SKILLDC_TRAP_BASE_TYPE_EPIC_ACID = 45; +int SKILLDC_TRAP_BASE_TYPE_MINOR_FIRE = 20; +int SKILLDC_TRAP_BASE_TYPE_AVERAGE_FIRE = 25; +int SKILLDC_TRAP_BASE_TYPE_STRONG_FIRE = 30; +int SKILLDC_TRAP_BASE_TYPE_DEADLY_FIRE = 35; +int SKILLDC_TRAP_BASE_TYPE_EPIC_FIRE = 45; +int SKILLDC_TRAP_BASE_TYPE_MINOR_ELECTRICAL = 20; +int SKILLDC_TRAP_BASE_TYPE_AVERAGE_ELECTRICAL = 25; +int SKILLDC_TRAP_BASE_TYPE_STRONG_ELECTRICAL = 30; +int SKILLDC_TRAP_BASE_TYPE_DEADLY_ELECTRICAL = 35; +int SKILLDC_TRAP_BASE_TYPE_EPIC_ELECTRICAL = 45; +int SKILLDC_TRAP_BASE_TYPE_MINOR_GAS = 30; +int SKILLDC_TRAP_BASE_TYPE_AVERAGE_GAS = 35; +int SKILLDC_TRAP_BASE_TYPE_STRONG_GAS = 40; +int SKILLDC_TRAP_BASE_TYPE_DEADLY_GAS = 45; +int SKILLDC_TRAP_BASE_TYPE_EPIC_GAS = 55; +int SKILLDC_TRAP_BASE_TYPE_MINOR_FROST = 15; +int SKILLDC_TRAP_BASE_TYPE_AVERAGE_FROST = 20; +int SKILLDC_TRAP_BASE_TYPE_STRONG_FROST = 25; +int SKILLDC_TRAP_BASE_TYPE_DEADLY_FROST = 30; +int SKILLDC_TRAP_BASE_TYPE_EPIC_FROST = 40; +int SKILLDC_TRAP_BASE_TYPE_MINOR_NEGATIVE = 15; +int SKILLDC_TRAP_BASE_TYPE_AVERAGE_NEGATIVE = 20; +int SKILLDC_TRAP_BASE_TYPE_STRONG_NEGATIVE = 25; +int SKILLDC_TRAP_BASE_TYPE_DEADLY_NEGATIVE = 30; +int SKILLDC_TRAP_BASE_TYPE_EPIC_NEGATIVE = 40; +int SKILLDC_TRAP_BASE_TYPE_MINOR_SONIC = 15; +int SKILLDC_TRAP_BASE_TYPE_AVERAGE_SONIC = 20; +int SKILLDC_TRAP_BASE_TYPE_STRONG_SONIC = 25; +int SKILLDC_TRAP_BASE_TYPE_DEADLY_SONIC = 30; +int SKILLDC_TRAP_BASE_TYPE_EPIC_SONIC = 40; +int SKILLDC_TRAP_BASE_TYPE_MINOR_ACID_SPLASH = 15; +int SKILLDC_TRAP_BASE_TYPE_AVERAGE_ACID_SPLASH = 20; +int SKILLDC_TRAP_BASE_TYPE_STRONG_ACID_SPLASH = 25; +int SKILLDC_TRAP_BASE_TYPE_DEADLY_ACID_SPLASH = 30; +int SKILLDC_TRAP_BASE_TYPE_EPIC_ACID_SPLASH = 40; + + +// * FUNCTIONS + +int skillCTRAPGetHasComponent(string sComponent, object oPC, int nTrapDifficulty); +void skillCTRAPTakeComponent(string sComponent, object oPC, int nTrapDifficulty); + +int skillCTRAPSetCurrentTrapView(string sComponent); +int skillCTRAPGetCurrentTrapViewEquals(string sComponent); + +string skillCTRAPGetCurrentTrapView(); + +// * destroys the indicated number of items +void DestroyNumItems(object oTarget,string sItem,int nNumItems); + + +void skillCTRAPCreateTrapKit(string sComponent, object oPC, int nTrapDifficulty); + +//:://///////////////////////////////////////////// +//:: skillGetHasComponent +//:: Copyright (c) 2002 Bioware Corp. +//::////////////////////////////////////////////// +/* + Returns true if the oPC has enough components for + this type of trap + sComponents +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: +//::////////////////////////////////////////////// + +int skillCTRAPGetHasComponent(string sComponent, object oPC, int nTrapDifficulty) +{ + object oItem = GetFirstItemInInventory(oPC); + int nFound = 0; + while (GetIsObjectValid(oItem) == TRUE) + { + if (GetTag(oItem) == sComponent) + { + //nFound++; + //SpeakString("here"); + nFound = nFound + GetNumStackedItems(oItem); + } + oItem = GetNextItemInInventory(oPC); + } + + // * if we have found more than or equal to the number of components + // * required to build this trap + if (nFound >= nTrapDifficulty) + { + return TRUE; + } + return FALSE; +} + +void skillCTRAPTakeComponent(string sComponent, object oPC, int nTrapDifficulty) +{ + DestroyNumItems(oPC, sComponent, nTrapDifficulty); +} + +//:://///////////////////////////////////////////// +//:: skillCTRAPCreateTrapKit +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creatures a trap kit and removes the + appropriate number of reagents. + + Must perform the skill roll and if fail by 5 + or more destroy the reagent + +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +void ClearTrapMaking() +{ + + // * make creature stand up + ClearAllActions(); +} +void skillCTRAPCreateTrapKit(string sComponent, object oPC, int nTrapDifficulty) +{ + string sTrapKit = ""; + int nDifficulty = 20; + + if (sComponent == SKILL_CTRAP_FIRECOMPONENT) + { + if (nTrapDifficulty == SKILL_TRAP_MINOR) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_MINOR_FIRE; + sTrapKit = "NW_IT_TRAP017"; + } + else + if (nTrapDifficulty == SKILL_TRAP_AVERAGE) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_AVERAGE_FIRE; + sTrapKit = "NW_IT_TRAP018"; + } + else + if (nTrapDifficulty == SKILL_TRAP_STRONG) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_STRONG_FIRE; + sTrapKit = "NW_IT_TRAP019"; + } + else + if (nTrapDifficulty == SKILL_TRAP_DEADLY) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_DEADLY_FIRE; + sTrapKit = "NW_IT_TRAP020"; + } + else + if (nTrapDifficulty == SKILL_TRAP_EPIC) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_EPIC_FIRE; + sTrapKit = "X2_IT_TRAP002"; + } + } + else + if (sComponent == SKILL_CTRAP_ELECTRICALCOMPONENT) + { + if (nTrapDifficulty == SKILL_TRAP_MINOR) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_MINOR_ELECTRICAL; + sTrapKit = "NW_IT_TRAP021"; + } + else + if (nTrapDifficulty == SKILL_TRAP_AVERAGE) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_AVERAGE_ELECTRICAL; + sTrapKit = "NW_IT_TRAP022"; + } + else + if (nTrapDifficulty == SKILL_TRAP_STRONG) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_STRONG_ELECTRICAL; + sTrapKit = "NW_IT_TRAP023"; + } + else + if (nTrapDifficulty == SKILL_TRAP_DEADLY) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_DEADLY_ELECTRICAL; + sTrapKit = "NW_IT_TRAP024"; + } + else + if (nTrapDifficulty == SKILL_TRAP_EPIC) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_EPIC_ELECTRICAL; + sTrapKit = "X2_IT_TRAP001"; + } + } + else + if (sComponent == SKILL_CTRAP_TANGLECOMPONENT) + { + if (nTrapDifficulty == SKILL_TRAP_MINOR) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_MINOR_TANGLE; + sTrapKit = "NW_IT_TRAP009"; + } + else + if (nTrapDifficulty == SKILL_TRAP_AVERAGE) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_AVERAGE_TANGLE; + sTrapKit = "NW_IT_TRAP010"; + } + else + if (nTrapDifficulty == SKILL_TRAP_STRONG) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_STRONG_TANGLE; + sTrapKit = "NW_IT_TRAP011"; + } + else + if (nTrapDifficulty == SKILL_TRAP_DEADLY) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_DEADLY_TANGLE; + sTrapKit = "NW_IT_TRAP012"; + } + else + if (nTrapDifficulty == SKILL_TRAP_DEADLY) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_DEADLY_TANGLE; + sTrapKit = "NW_IT_TRAP012"; + } + else + if (nTrapDifficulty == SKILL_TRAP_EPIC) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_EPIC_TANGLE; + sTrapKit = "X2_IT_TRAP011"; + } + } + else + if (sComponent == SKILL_CTRAP_SPIKECOMPONENT) + { + if (nTrapDifficulty == SKILL_TRAP_MINOR) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_MINOR_SPIKE; + sTrapKit = "NW_IT_TRAP001"; + } + else + if (nTrapDifficulty == SKILL_TRAP_AVERAGE) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_AVERAGE_SPIKE; + sTrapKit = "NW_IT_TRAP002"; + } + else + if (nTrapDifficulty == SKILL_TRAP_STRONG) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_STRONG_SPIKE; + sTrapKit = "NW_IT_TRAP003"; + } + else + if (nTrapDifficulty == SKILL_TRAP_DEADLY) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_DEADLY_SPIKE; + sTrapKit = "NW_IT_TRAP004"; + } + else + if (nTrapDifficulty == SKILL_TRAP_EPIC) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_EPIC_SPIKE; + sTrapKit = "X2_IT_TRAP010"; + } + } + else + if (sComponent == SKILL_CTRAP_HOLYCOMPONENT) + { + if (nTrapDifficulty == SKILL_TRAP_MINOR) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_MINOR_HOLY; + sTrapKit = "NW_IT_TRAP005"; + } + else + if (nTrapDifficulty == SKILL_TRAP_AVERAGE) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_AVERAGE_HOLY; + sTrapKit = "NW_IT_TRAP006"; + } + else + if (nTrapDifficulty == SKILL_TRAP_STRONG) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_STRONG_HOLY; + sTrapKit = "NW_IT_TRAP007"; + } + else + if (nTrapDifficulty == SKILL_TRAP_DEADLY) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_DEADLY_HOLY; + sTrapKit = "NW_IT_TRAP008"; + } + else + if (nTrapDifficulty == SKILL_TRAP_EPIC) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_EPIC_HOLY; + sTrapKit = "X2_IT_TRAP008"; + } + } + else + if (sComponent == SKILL_CTRAP_GASCOMPONENT) + { + if (nTrapDifficulty == SKILL_TRAP_MINOR) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_MINOR_GAS; + sTrapKit = "NW_IT_TRAP025"; + } + else + if (nTrapDifficulty == SKILL_TRAP_AVERAGE) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_AVERAGE_GAS; + sTrapKit = "NW_IT_TRAP026"; + } + else + if (nTrapDifficulty == SKILL_TRAP_STRONG) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_STRONG_GAS; + sTrapKit = "NW_IT_TRAP027"; + } + else + if (nTrapDifficulty == SKILL_TRAP_DEADLY) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_DEADLY_GAS; + sTrapKit = "NW_IT_TRAP028"; + } + else + if (nTrapDifficulty == SKILL_TRAP_EPIC) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_EPIC_GAS; + sTrapKit = "X2_IT_TRAP007"; + } + } + else + if (sComponent == SKILL_CTRAP_FROSTCOMPONENT) + { + if (nTrapDifficulty == SKILL_TRAP_MINOR) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_MINOR_FROST; + sTrapKit = "NW_IT_TRAP029"; + } + else + if (nTrapDifficulty == SKILL_TRAP_AVERAGE) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_AVERAGE_FROST; + sTrapKit = "NW_IT_TRAP030"; + } + else + if (nTrapDifficulty == SKILL_TRAP_STRONG) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_STRONG_FROST; + sTrapKit = "NW_IT_TRAP031"; + } + else + if (nTrapDifficulty == SKILL_TRAP_DEADLY) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_DEADLY_FROST; + sTrapKit = "NW_IT_TRAP032"; + } + else + if (nTrapDifficulty == SKILL_TRAP_EPIC) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_EPIC_FROST; + sTrapKit = "X2_IT_TRAP003"; + } + } + else + if (sComponent == SKILL_CTRAP_NEGATIVECOMPONENT) + { + if (nTrapDifficulty == SKILL_TRAP_MINOR) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_MINOR_NEGATIVE; + sTrapKit = "NW_IT_TRAP041"; + } + else + if (nTrapDifficulty == SKILL_TRAP_AVERAGE) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_AVERAGE_NEGATIVE; + sTrapKit = "NW_IT_TRAP042"; + } + else + if (nTrapDifficulty == SKILL_TRAP_STRONG) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_STRONG_NEGATIVE; + sTrapKit = "NW_IT_TRAP043"; + } + else + if (nTrapDifficulty == SKILL_TRAP_DEADLY) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_DEADLY_NEGATIVE; + sTrapKit = "NW_IT_TRAP044"; + } + else + if (nTrapDifficulty == SKILL_TRAP_EPIC) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_EPIC_NEGATIVE; + sTrapKit = "X2_IT_TRAP009"; + } + } + else + if (sComponent == SKILL_CTRAP_SONICCOMPONENT) + { + if (nTrapDifficulty == SKILL_TRAP_MINOR) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_MINOR_SONIC; + sTrapKit = "NW_IT_TRAP037"; + } + else + if (nTrapDifficulty == SKILL_TRAP_AVERAGE) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_AVERAGE_SONIC; + sTrapKit = "NW_IT_TRAP038"; + } + else + if (nTrapDifficulty == SKILL_TRAP_STRONG) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_STRONG_SONIC; + sTrapKit = "NW_IT_TRAP039"; + } + else + if (nTrapDifficulty == SKILL_TRAP_DEADLY) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_DEADLY_SONIC; + sTrapKit = "NW_IT_TRAP040"; + } + else + if (nTrapDifficulty == SKILL_TRAP_EPIC) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_EPIC_SONIC; + sTrapKit = "X2_IT_TRAP004"; + } + } + else + if (sComponent == SKILL_CTRAP_ACIDCOMPONENT) + { + if (nTrapDifficulty == SKILL_TRAP_MINOR) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_MINOR_ACID; + sTrapKit = "NW_IT_TRAP033"; + } + else + if (nTrapDifficulty == SKILL_TRAP_AVERAGE) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_AVERAGE_ACID; + sTrapKit = "NW_IT_TRAP034"; + } + else + if (nTrapDifficulty == SKILL_TRAP_STRONG) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_STRONG_ACID; + sTrapKit = "NW_IT_TRAP035"; + } + else + if (nTrapDifficulty == SKILL_TRAP_DEADLY) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_DEADLY_ACID; + sTrapKit = "NW_IT_TRAP036"; + } + else + if (nTrapDifficulty == SKILL_TRAP_EPIC) + { + nDifficulty = SKILLDC_TRAP_BASE_TYPE_EPIC_ACID; + sTrapKit = "X2_IT_TRAP006"; + } + } + + // * do skill roll +// SpeakString("UT: MY ROLL: "+ IntToString(GetSkillRank(mySKILL_CRAFT_TRAP))); + + + if (GetIsSkillSuccessful(oPC, 22, nDifficulty) == TRUE) + { + // * "UT: Craft Trap Skill Success." + FloatingTextStrRefOnCreature(2700, oPC); + CreateItemOnObject(sTrapKit, oPC, 1); + } + else + // * trap failed + { + // * Did not lose components + if (Random(100) < 90) + { + // "UT: Craft Trap Skill Failed." + FloatingTextStrRefOnCreature(2701, oPC); + ClearTrapMaking(); + return; // * means you didn't fail enough to lose components + } + // * 10% chance that components were lost + else + // "UT: Craft Trap Skill Failed. Components lost." + FloatingTextStrRefOnCreature(2702, oPC); + } + ClearTrapMaking(); + // * removed components if succeeded or failed badly + skillCTRAPTakeComponent(sComponent, oPC, nTrapDifficulty); + +} + + +//:://///////////////////////////////////////////// +//:: skillCTRAPSetCurrentTrapView +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + This function is called right before the + node in dialog where the Trap types and DC's are + shown. + Its set the trap custom tokens to appropriate values + based on the DC constants defined above. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +void skillCTRAPSetCurrentTrapView(string sComponent) +{ + SetLocalString(GetPCSpeaker(), "NW_L_TRAPVIEW", sComponent); + if (sComponent == SKILL_CTRAP_FIRECOMPONENT) + { + SKILL_TRAP_DCMINOR = SKILLDC_TRAP_BASE_TYPE_MINOR_FIRE; + SKILL_TRAP_DCAVERAGE = SKILLDC_TRAP_BASE_TYPE_AVERAGE_FIRE; + SKILL_TRAP_DCSTRONG = SKILLDC_TRAP_BASE_TYPE_STRONG_FIRE; + SKILL_TRAP_DCDEADLY = SKILLDC_TRAP_BASE_TYPE_DEADLY_FIRE; + SKILL_TRAP_DCEPIC = SKILLDC_TRAP_BASE_TYPE_EPIC_FIRE; + + } + else + if (sComponent == SKILL_CTRAP_ELECTRICALCOMPONENT) + { + SKILL_TRAP_DCMINOR = SKILLDC_TRAP_BASE_TYPE_MINOR_ELECTRICAL; + SKILL_TRAP_DCAVERAGE = SKILLDC_TRAP_BASE_TYPE_AVERAGE_ELECTRICAL; + SKILL_TRAP_DCSTRONG = SKILLDC_TRAP_BASE_TYPE_STRONG_ELECTRICAL; + SKILL_TRAP_DCDEADLY = SKILLDC_TRAP_BASE_TYPE_DEADLY_ELECTRICAL; + SKILL_TRAP_DCEPIC = SKILLDC_TRAP_BASE_TYPE_EPIC_ELECTRICAL; + + } + else + if (sComponent == SKILL_CTRAP_SPIKECOMPONENT) + { + SKILL_TRAP_DCMINOR = SKILLDC_TRAP_BASE_TYPE_MINOR_SPIKE; + SKILL_TRAP_DCAVERAGE = SKILLDC_TRAP_BASE_TYPE_AVERAGE_SPIKE; + SKILL_TRAP_DCSTRONG = SKILLDC_TRAP_BASE_TYPE_STRONG_SPIKE; + SKILL_TRAP_DCDEADLY = SKILLDC_TRAP_BASE_TYPE_DEADLY_SPIKE; + SKILL_TRAP_DCEPIC = SKILLDC_TRAP_BASE_TYPE_EPIC_SPIKE; + + } + else + if (sComponent == SKILL_CTRAP_HOLYCOMPONENT) + { + SKILL_TRAP_DCMINOR = SKILLDC_TRAP_BASE_TYPE_MINOR_HOLY; + SKILL_TRAP_DCAVERAGE = SKILLDC_TRAP_BASE_TYPE_AVERAGE_HOLY; + SKILL_TRAP_DCSTRONG = SKILLDC_TRAP_BASE_TYPE_STRONG_HOLY; + SKILL_TRAP_DCDEADLY = SKILLDC_TRAP_BASE_TYPE_DEADLY_HOLY; + SKILL_TRAP_DCEPIC = SKILLDC_TRAP_BASE_TYPE_EPIC_HOLY; + + } + else + if (sComponent == SKILL_CTRAP_TANGLECOMPONENT) + { + SKILL_TRAP_DCMINOR = SKILLDC_TRAP_BASE_TYPE_MINOR_TANGLE; + SKILL_TRAP_DCAVERAGE = SKILLDC_TRAP_BASE_TYPE_AVERAGE_TANGLE; + SKILL_TRAP_DCSTRONG = SKILLDC_TRAP_BASE_TYPE_STRONG_TANGLE; + SKILL_TRAP_DCDEADLY = SKILLDC_TRAP_BASE_TYPE_DEADLY_TANGLE; + SKILL_TRAP_DCEPIC = SKILLDC_TRAP_BASE_TYPE_EPIC_TANGLE; + + } + else + if (sComponent == SKILL_CTRAP_GASCOMPONENT) + { + SKILL_TRAP_DCMINOR = SKILLDC_TRAP_BASE_TYPE_MINOR_GAS; + SKILL_TRAP_DCAVERAGE = SKILLDC_TRAP_BASE_TYPE_AVERAGE_GAS; + SKILL_TRAP_DCSTRONG = SKILLDC_TRAP_BASE_TYPE_STRONG_GAS; + SKILL_TRAP_DCDEADLY = SKILLDC_TRAP_BASE_TYPE_DEADLY_GAS; + SKILL_TRAP_DCEPIC = SKILLDC_TRAP_BASE_TYPE_EPIC_GAS; + + } + else + if (sComponent == SKILL_CTRAP_FROSTCOMPONENT) + { + SKILL_TRAP_DCMINOR = SKILLDC_TRAP_BASE_TYPE_MINOR_FROST; + SKILL_TRAP_DCAVERAGE = SKILLDC_TRAP_BASE_TYPE_AVERAGE_FROST; + SKILL_TRAP_DCSTRONG = SKILLDC_TRAP_BASE_TYPE_STRONG_FROST; + SKILL_TRAP_DCDEADLY = SKILLDC_TRAP_BASE_TYPE_DEADLY_FROST; + SKILL_TRAP_DCEPIC = SKILLDC_TRAP_BASE_TYPE_EPIC_FROST; + + } + else + if (sComponent == SKILL_CTRAP_NEGATIVECOMPONENT) + { + SKILL_TRAP_DCMINOR = SKILLDC_TRAP_BASE_TYPE_MINOR_NEGATIVE; + SKILL_TRAP_DCAVERAGE = SKILLDC_TRAP_BASE_TYPE_AVERAGE_NEGATIVE; + SKILL_TRAP_DCSTRONG = SKILLDC_TRAP_BASE_TYPE_STRONG_NEGATIVE; + SKILL_TRAP_DCDEADLY = SKILLDC_TRAP_BASE_TYPE_DEADLY_NEGATIVE; + SKILL_TRAP_DCEPIC = SKILLDC_TRAP_BASE_TYPE_EPIC_NEGATIVE; + + } + else + if (sComponent == SKILL_CTRAP_SONICCOMPONENT) + { + SKILL_TRAP_DCMINOR = SKILLDC_TRAP_BASE_TYPE_MINOR_SONIC; + SKILL_TRAP_DCAVERAGE = SKILLDC_TRAP_BASE_TYPE_AVERAGE_SONIC; + SKILL_TRAP_DCSTRONG = SKILLDC_TRAP_BASE_TYPE_STRONG_SONIC; + SKILL_TRAP_DCDEADLY = SKILLDC_TRAP_BASE_TYPE_DEADLY_SONIC; + SKILL_TRAP_DCEPIC = SKILLDC_TRAP_BASE_TYPE_EPIC_SONIC; + + } + else + if (sComponent == SKILL_CTRAP_ACIDCOMPONENT) + { + SKILL_TRAP_DCMINOR = SKILLDC_TRAP_BASE_TYPE_MINOR_ACID; + SKILL_TRAP_DCAVERAGE = SKILLDC_TRAP_BASE_TYPE_AVERAGE_ACID; + SKILL_TRAP_DCSTRONG = SKILLDC_TRAP_BASE_TYPE_STRONG_ACID; + SKILL_TRAP_DCDEADLY = SKILLDC_TRAP_BASE_TYPE_DEADLY_ACID; + SKILL_TRAP_DCEPIC = SKILLDC_TRAP_BASE_TYPE_EPIC_ACID; + + } + + + SetCustomToken(2001, IntToString(SKILL_TRAP_DCMINOR)); + SetCustomToken(2002, IntToString(SKILL_TRAP_DCAVERAGE)); + SetCustomToken(2003, IntToString(SKILL_TRAP_DCSTRONG)); + SetCustomToken(2004, IntToString(SKILL_TRAP_DCDEADLY)); + SetCustomToken(2005, IntToString(SKILL_TRAP_DCEPIC)); +} + +// returns true if sComponent is equal to the current trap view +int skillCTRAPGetCurrentTrapViewEquals(string sComponent) +{ + if (GetLocalString(GetPCSpeaker(), "NW_L_TRAPVIEW") == sComponent) + { + return TRUE; + } + return FALSE; +} +// * returns the string of the current trap view +string skillCTRAPGetCurrentTrapView() +{ + return GetLocalString(GetPCSpeaker(), "NW_L_TRAPVIEW"); +} + +// * destroys the indicated number of items +void DestroyNumItems(object oTarget,string sItem,int nNumItems) +{ + int nCount = 0; + object oItem = GetFirstItemInInventory(oTarget); + +// SpawnScriptDebugger(); + + while (GetIsObjectValid(oItem) == TRUE /*&& nCount < nNumItems*/) + { + if (GetTag(oItem) == sItem) + { + int nStackSize = GetItemStackSize(oItem); + // * had more items than needed + if (nStackSize > nNumItems) + { + SetItemStackSize(oItem, nStackSize - nNumItems); + return; // exit quickly + } + else + if (nStackSize == nNumItems) + { + DestroyObject(oItem, 0.1); + return; + } + else + // * this item did not have enough + // * stack size. Search for another + if (nStackSize < nNumItems) + { //SpawnScriptDebugger(); + DestroyObject(oItem, 0.1); + nNumItems = nNumItems - nStackSize; + } + + nCount++; + } + oItem = GetNextItemInInventory(oTarget); + } + + return; +} diff --git a/_module/nss/tr_skctrap_act_1.nss b/_module/nss/tr_skctrap_act_1.nss new file mode 100644 index 0000000..d008edd --- /dev/null +++ b/_module/nss/tr_skctrap_act_1.nss @@ -0,0 +1,20 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_1 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sets the current 'view mode' to fire traps; + this simplifies the dialog writing a little because + I can reuse the check/make trap routines in one + group of nodes. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +#include "tr_inc_skills" + +void main() +{ + skillCTRAPSetCurrentTrapView(SKILL_CTRAP_FIRECOMPONENT); +} diff --git a/_module/nss/tr_skctrap_act_2.nss b/_module/nss/tr_skctrap_act_2.nss new file mode 100644 index 0000000..33d5e5b --- /dev/null +++ b/_module/nss/tr_skctrap_act_2.nss @@ -0,0 +1,19 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_2 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creates a minor trap kit of the current 'trap type' + +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// + +#include "tr_inc_skills" + +void main() +{ + skillCTRAPCreateTrapKit(skillCTRAPGetCurrentTrapView(), GetPCSpeaker(), SKILL_TRAP_MINOR); +} diff --git a/_module/nss/tr_skctrap_act_3.nss b/_module/nss/tr_skctrap_act_3.nss new file mode 100644 index 0000000..d9babc9 --- /dev/null +++ b/_module/nss/tr_skctrap_act_3.nss @@ -0,0 +1,20 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_3 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creates a average trap kit of the current 'trap type' + +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// + +#include "tr_inc_skills" + +void main() +{ + skillCTRAPCreateTrapKit(skillCTRAPGetCurrentTrapView(), GetPCSpeaker(), SKILL_TRAP_AVERAGE); +} + diff --git a/_module/nss/tr_skctrap_act_4.nss b/_module/nss/tr_skctrap_act_4.nss new file mode 100644 index 0000000..ffbc863 --- /dev/null +++ b/_module/nss/tr_skctrap_act_4.nss @@ -0,0 +1,20 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_4 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creates a strong trap kit of the current 'trap type' + +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// + +#include "tr_inc_skills" + +void main() +{ + skillCTRAPCreateTrapKit(skillCTRAPGetCurrentTrapView(), GetPCSpeaker(), SKILL_TRAP_STRONG); +} + diff --git a/_module/nss/tr_skctrap_act_5.nss b/_module/nss/tr_skctrap_act_5.nss new file mode 100644 index 0000000..5ff57d4 --- /dev/null +++ b/_module/nss/tr_skctrap_act_5.nss @@ -0,0 +1,20 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_5 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creates a deadly trap kit of the current 'trap type' + +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// + +#include "tr_inc_skills" + +void main() +{ + skillCTRAPCreateTrapKit(skillCTRAPGetCurrentTrapView(), GetPCSpeaker(), SKILL_TRAP_DEADLY); +} + diff --git a/_module/nss/tr_skctrap_act_6.nss b/_module/nss/tr_skctrap_act_6.nss new file mode 100644 index 0000000..dcaae27 --- /dev/null +++ b/_module/nss/tr_skctrap_act_6.nss @@ -0,0 +1,21 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_6 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sets the current 'view mode' to electrical traps; + this simplifies the dialog writing a little because + I can reuse the check/make trap routines in one + group of nodes. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +#include "tr_inc_skills" + +void main() +{ + skillCTRAPSetCurrentTrapView(SKILL_CTRAP_ELECTRICALCOMPONENT); +} + diff --git a/_module/nss/tr_skctrap_act_7.nss b/_module/nss/tr_skctrap_act_7.nss new file mode 100644 index 0000000..6e0a8e4 --- /dev/null +++ b/_module/nss/tr_skctrap_act_7.nss @@ -0,0 +1,22 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_7 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sets the current 'view mode' to tangle traps; + this simplifies the dialog writing a little because + I can reuse the check/make trap routines in one + group of nodes. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +#include "tr_inc_skills" + +void main() +{ + skillCTRAPSetCurrentTrapView(SKILL_CTRAP_TANGLECOMPONENT); +} + + diff --git a/_module/nss/tr_skctrap_act_8.nss b/_module/nss/tr_skctrap_act_8.nss new file mode 100644 index 0000000..8a4b889 --- /dev/null +++ b/_module/nss/tr_skctrap_act_8.nss @@ -0,0 +1,22 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_8 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sets the current 'view mode' to spike traps; + this simplifies the dialog writing a little because + I can reuse the check/make trap routines in one + group of nodes. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +#include "tr_inc_skills" + +void main() +{ + skillCTRAPSetCurrentTrapView(SKILL_CTRAP_SPIKECOMPONENT); +} + + diff --git a/_module/nss/tr_skctrap_act_9.nss b/_module/nss/tr_skctrap_act_9.nss new file mode 100644 index 0000000..0388484 --- /dev/null +++ b/_module/nss/tr_skctrap_act_9.nss @@ -0,0 +1,21 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_9 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sets the current 'view mode' to holy traps; + this simplifies the dialog writing a little because + I can reuse the check/make trap routines in one + group of nodes. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +#include "tr_inc_skills" + +void main() +{ + skillCTRAPSetCurrentTrapView(SKILL_CTRAP_HOLYCOMPONENT); +} + diff --git a/_module/nss/tr_skctrap_act_a.nss b/_module/nss/tr_skctrap_act_a.nss new file mode 100644 index 0000000..8615b88 --- /dev/null +++ b/_module/nss/tr_skctrap_act_a.nss @@ -0,0 +1,21 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_a +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sets the current 'view mode' to gas traps; + this simplifies the dialog writing a little because + I can reuse the check/make trap routines in one + group of nodes. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +#include "tr_inc_skills" + +void main() +{ + skillCTRAPSetCurrentTrapView(SKILL_CTRAP_GASCOMPONENT); +} + diff --git a/_module/nss/tr_skctrap_act_b.nss b/_module/nss/tr_skctrap_act_b.nss new file mode 100644 index 0000000..6d1254f --- /dev/null +++ b/_module/nss/tr_skctrap_act_b.nss @@ -0,0 +1,21 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_b +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sets the current 'view mode' to frost traps; + this simplifies the dialog writing a little because + I can reuse the check/make trap routines in one + group of nodes. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +#include "tr_inc_skills" + +void main() +{ + skillCTRAPSetCurrentTrapView(SKILL_CTRAP_FROSTCOMPONENT); +} + diff --git a/_module/nss/tr_skctrap_act_c.nss b/_module/nss/tr_skctrap_act_c.nss new file mode 100644 index 0000000..43c7dd6 --- /dev/null +++ b/_module/nss/tr_skctrap_act_c.nss @@ -0,0 +1,21 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_c +//:: Copyright (c) 2002 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sets the current 'view mode' to negative traps; + this simplifies the dialog writing a little because + I can reuse the check/make trap routines in one + group of nodes. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +#include "tr_inc_skills" + +void main() +{ + skillCTRAPSetCurrentTrapView(SKILL_CTRAP_NEGATIVECOMPONENT); +} + diff --git a/_module/nss/tr_skctrap_act_d.nss b/_module/nss/tr_skctrap_act_d.nss new file mode 100644 index 0000000..fdd6640 --- /dev/null +++ b/_module/nss/tr_skctrap_act_d.nss @@ -0,0 +1,21 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_d +//:: Copyright (c) 2002 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sets the current 'view mode' to sonic traps; + this simplifies the dialog writing a little because + I can reuse the check/make trap routines in one + group of nodes. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +#include "tr_inc_skills" + +void main() +{ + skillCTRAPSetCurrentTrapView(SKILL_CTRAP_SONICCOMPONENT); +} + diff --git a/_module/nss/tr_skctrap_act_e.nss b/_module/nss/tr_skctrap_act_e.nss new file mode 100644 index 0000000..ba3a03f --- /dev/null +++ b/_module/nss/tr_skctrap_act_e.nss @@ -0,0 +1,21 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_e +//:: Copyright (c) 2002 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sets the current 'view mode' to acid traps; + this simplifies the dialog writing a little because + I can reuse the check/make trap routines in one + group of nodes. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +#include "tr_inc_skills" + +void main() +{ + skillCTRAPSetCurrentTrapView(SKILL_CTRAP_ACIDCOMPONENT); +} + diff --git a/_module/nss/tr_skctrap_act_f.nss b/_module/nss/tr_skctrap_act_f.nss new file mode 100644 index 0000000..af99566 --- /dev/null +++ b/_module/nss/tr_skctrap_act_f.nss @@ -0,0 +1,20 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_act_f +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Creates a deadly trap kit of the current 'trap type' + +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// + +#include "tr_inc_skills" + +void main() +{ + skillCTRAPCreateTrapKit(skillCTRAPGetCurrentTrapView(), GetPCSpeaker(), SKILL_TRAP_EPIC); +} + diff --git a/_module/nss/tr_skctrap_con_5.nss b/_module/nss/tr_skctrap_con_5.nss new file mode 100644 index 0000000..bb01750 --- /dev/null +++ b/_module/nss/tr_skctrap_con_5.nss @@ -0,0 +1,22 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_con_5 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Does the player have all the epic components + for this type of trap. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// + +#include "tr_inc_skills" + +int StartingConditional() +{ + int iResult; + + iResult = skillCTRAPGetHasComponent(skillCTRAPGetCurrentTrapView(), GetPCSpeaker(), SKILL_TRAP_EPIC) == TRUE; + return iResult; +} diff --git a/_module/nss/tr_skctrap_con_e.nss b/_module/nss/tr_skctrap_con_e.nss new file mode 100644 index 0000000..bb01750 --- /dev/null +++ b/_module/nss/tr_skctrap_con_e.nss @@ -0,0 +1,22 @@ +//:://///////////////////////////////////////////// +//:: tr_skctrap_con_5 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Does the player have all the epic components + for this type of trap. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// + +#include "tr_inc_skills" + +int StartingConditional() +{ + int iResult; + + iResult = skillCTRAPGetHasComponent(skillCTRAPGetCurrentTrapView(), GetPCSpeaker(), SKILL_TRAP_EPIC) == TRUE; + return iResult; +} diff --git a/_module/nss/trash_can.nss b/_module/nss/trash_can.nss new file mode 100644 index 0000000..66a608d --- /dev/null +++ b/_module/nss/trash_can.nss @@ -0,0 +1,15 @@ + +void main() +{ +object oPC = GetLastClosedBy(); +object oItem = GetFirstItemInInventory(OBJECT_SELF); +while (GetIsObjectValid(oItem)) + { + if ((GetResRef(oItem)!="div_key")&&(GetResRef(oItem)!="divine_note")) + { + DestroyObject(oItem); + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } +PlaySound("gui_quick_erase"); +} diff --git a/_module/nss/ts_imbue.nss b/_module/nss/ts_imbue.nss new file mode 100644 index 0000000..d5eea45 --- /dev/null +++ b/_module/nss/ts_imbue.nss @@ -0,0 +1,35 @@ +#include "spawner" +#include "prc_x2_itemprop" +void See(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyTrueSeeing(); +IPSafeAddItemProperty(oItem, ipAdd); + + +} + + +void TrueSight() +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(2.0,VFX_DUR_MAGICAL_SIGHT, OBJECT_SELF); +PCEffect(1.5,VFX_DUR_BLIND, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_SUPER_HEROISM, OBJECT_SELF); +DelayCommand(1.0, See(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} +//void main (){} diff --git a/_module/nss/tstrike_imbue.nss b/_module/nss/tstrike_imbue.nss new file mode 100644 index 0000000..746c4f1 --- /dev/null +++ b/_module/nss/tstrike_imbue.nss @@ -0,0 +1,35 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Tstrike(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyCastSpell +(IP_CONST_CASTSPELL_TRUE_STRIKE_5, +IP_CONST_CASTSPELL_NUMUSES_5_USES_PER_DAY); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main() +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_SUPER_HEROISM, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_PWKILL, OBJECT_SELF); +DelayCommand(1.0, Tstrike(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/tumb_imbue.nss b/_module/nss/tumb_imbue.nss new file mode 100644 index 0000000..d186f44 --- /dev/null +++ b/_module/nss/tumb_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_TUMBLE, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/tyrieldeath.nss b/_module/nss/tyrieldeath.nss new file mode 100644 index 0000000..21815e4 --- /dev/null +++ b/_module/nss/tyrieldeath.nss @@ -0,0 +1,140 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////Lucifer Death [challenge mode] +#include "spawner" +#include "x0_i0_petrify" +#include "loot" +#include "rank" + + + + +void main() +{ + + + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oSpawner = GetObjectByTag("spawner"); + object oP1 = GetObjectByTag("pool1"); + object oP2 = GetObjectByTag("pool2"); + object oP3 = GetObjectByTag("fountain1"); + object oP4 = GetObjectByTag("fountain2"); + object oLever1 = GetObjectByTag("pool_lever"); + object oLever2 = GetObjectByTag("fount_lever"); + effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); + int oChest4; + int oChest5; + int oChest6; + int iKilled = GetLocalInt(oPC, "iKilled"); + int oExploit = GetLocalInt(oMod, "xcheck"); + int nInt3=GetLocalInt(oMod, "d3"); + int nInt4=GetLocalInt(oMod, "d4"); + int nInt5=GetLocalInt(oMod, "d5"); + int nInt; + int iMode = GetLocalInt(oMod, "gamemode"); + //string sDtell = IntToString(oExploit); + //Message(7.0,sDtell, oPC); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "challenge", 0); + + if (oExploit!=1) + { + LastHit(); + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + GetRank(oPC); + DeathStats(oPC); + oChest4 = GetLocalInt(oPC, "chest4"); + oChest5 = GetLocalInt(oPC, "chest5"); + oChest6 = GetLocalInt(oPC, "chest6"); + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + + if ((nInt3!=1)&&(nInt5!=1)) + { + if (GetLocalInt(oMod, "hwar_on")!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 20000); + } + } + if ((nInt3==1)||(nInt4==1)||(nInt5==1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + AssignCommand(oSpawner, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever1, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + AssignCommand(oLever2, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + RemoveEffectOfType(oP1, GetEffectType(eEffect)); + RemoveEffectOfType(oP2, GetEffectType(eEffect)); + RemoveEffectOfType(oP3, GetEffectType(eEffect)); + RemoveEffectOfType(oP4, GetEffectType(eEffect)); + SetLocalInt(oMod, "fountain_state", 0); + SetLocalInt(oMod, "pool_state", 0); + SetLocalInt(oMod, "challenge", 0); + } + + if (nInt3==1) + { + QuickRestore(oPC); + SetLocalInt(oMod, "d3_complete", 1); + + if (iMode==1) + {AddJournalQuestEntry("boss4_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss4", 1, oPC, FALSE, FALSE);} + DelayCommand(6.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(6.0, FloatingTextStringOnCreature("W I N N E R", oPC)); + + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + } + if (nInt5==1) + { + QuickRestore(oPC); + SetLocalInt(oMod, "d5_complete", 1); + + if (iMode==1) + {AddJournalQuestEntry("boss6_0", 1, oPC, FALSE, FALSE);} + else{AddJournalQuestEntry("boss6", 1, oPC, FALSE, FALSE);} + DelayCommand(6.0, AssignCommand(oPC, PlaySound("sce_neutral"))); + DelayCommand(6.0, FloatingTextStringOnCreature("S U P R E M E W I N N E R", oPC)); + + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oMod, "cutscene_flag", 0); + } + } + AddJournalQuestEntry("tyriel", 1, oPC, FALSE, FALSE); + SetLocalInt(oPC, "luciferdead", 1); + + //AssignCommand(oPC, PlaySound("vs_nzeliepm_dead")); + + SetLocked(GetObjectByTag("arena_gate"), FALSE); + + object oTarget= OBJECT_SELF; + + PCEffect(0.0, VFX_IMP_DEATH_L, oTarget); + PCEffect(0.3, VFX_IMP_MAGIC_PROTECTION, oTarget); + PCEffect(0.0, VFX_FNF_WAIL_O_BANSHEES, oTarget); + PCEffect(0.3, VFX_FNF_SCREEN_SHAKE, oTarget); + PCEffect(0.5, VFX_FNF_DISPEL_GREATER, oTarget); + PCEffect(0.6, VFX_IMP_MAGIC_PROTECTION, oTarget); + + ExecuteScript("nw_c2_default7", OBJECT_SELF); + +} diff --git a/_module/nss/tyrieldeath2.nss b/_module/nss/tyrieldeath2.nss new file mode 100644 index 0000000..c59cf38 --- /dev/null +++ b/_module/nss/tyrieldeath2.nss @@ -0,0 +1,196 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondeath +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDeath script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//:://///////////////////////////////lucifer death [deathmatch mode] +#include "loot" +#include "spawner" +#include "rank" + +void LastHit3() +{ + + object oMod = GetModule(); + object oPC = GetLastDamager(OBJECT_SELF); + int oDam = GetTotalDamageDealt(); + string oAtt; + string oSelf; + string oMon; + object oDest; + int oHit; + int oMhit; + int oPCdam; + int oSDTaken; + int oUDTaken; + int oSDDealt; + int oUDDealt; + int iSFhit; + int iSFdam; + int iFBhit; + int iFBdam; + int oHWdam; + int oHWhit; + int iCHdam; + int iCHhit; + int iArenaChall =GetLocalInt(oMod, "challenge"); + int iSFDuel =GetLocalInt(oMod, "duel_on"); + int iWarWon = GetLocalInt(oMod, "war_won"); + int iJoinSwitch = GetLocalInt(oPC, "join_switch"); + int iHwar = GetLocalInt(oMod, "hwar_on"); + //FloatingTextStringOnCreature("duel on: "+IntToString(GetLocalInt(oMod, "duel_on")), oPC); + + + + if (GetIsPC(oPC)) + { + oHit = GetLocalInt(oPC, "pc_hit"); + oPCdam = GetLocalInt(oPC, "player_dd"); + ++oHit; + oPCdam+=oDam; + SetLocalInt(oPC, "pc_hit", oHit); + SetLocalInt(oPC, "player_dd", oPCdam); + if (iHwar==1) + { + oHWdam = GetLocalInt(oPC, "pc_HWdam"); + oHWhit = GetLocalInt(oPC, "pc_HWhit"); + ++oHWhit; + oHWdam+=oDam; + SetLocalInt(oPC, "pc_HWhit", oHWhit); + SetLocalInt(oPC, "pc_HWdam", oHWdam); + } + if (iArenaChall==1) + { + iCHdam = GetLocalInt(oPC, "pc_CHdam"); + iCHhit = GetLocalInt(oPC, "pc_CHhit"); + iCHdam+=oDam; + ++iCHhit; + SetLocalInt(oPC, "pc_CHhit", iCHhit); + SetLocalInt(oPC, "pc_CHdam", iCHdam); + } + + } +} + +void main() +{ + // Setup variables + + object oPC = GetLastKiller(); + object oMod = GetModule(); + object oTarget= OBJECT_SELF; + int oDam = GetTotalDamageDealt(); + + int nInt; + int iFBhit; + int iFBdam; + int iFBswing; + + int sw1 = GetLocalInt(oMod, "sw_hw"); + int sw2 = GetLocalInt(oMod, "sw_dr"); + int sw3 = GetLocalInt(oMod, "sw_bl"); + int sw4 = GetLocalInt(oMod, "sw_pf"); + int sw5 = GetLocalInt(oMod, "sw_df"); + int sw6 = GetLocalInt(oMod, "sw_pm"); + int sw7 = GetLocalInt(oMod, "sw_bm"); + int sw8 = GetLocalInt(oMod, "sw_lm"); + int sw9 = GetLocalInt(oMod, "sw_ll"); + int sw10 = GetLocalInt(oMod, "sw_xx"); + int iKilled = GetLocalInt(oPC, "iKilled"); + int iFinalBattle = GetLocalInt(oPC, "final_on"); + int iHolyWar = GetLocalInt(oMod, "hwar_on"); + + if ((iHolyWar!=1)&&((iFinalBattle==1)&&(GetIsPC(oPC)))){QuickRestore(oPC);} + + // Re-enable spawner + + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "challenge", 0); + LastHit3(); + if (iFinalBattle==1) + { + iFBdam = GetLocalInt(oPC, "pc_FBdam"); + iFBhit = GetLocalInt(oPC, "pc_FBhit"); + iFBdam+=oDam; + ++iFBhit; + SetLocalInt(oPC, "pc_FBhit", iFBhit); + SetLocalInt(oPC, "pc_FBdam", iFBdam); + if (GetName(GetLastWeaponUsed(oPC))=="") + { + iFBswing = GetLocalInt(oPC, "pc_FBswing"); + ++iFBswing; + SetLocalInt(oPC, "pc_FBswing", iFBswing); + } + } + + + // effect *************************************** + + //AssignCommand(oPC, PlaySound("vs_nzeliepm_dead")); + + PCEffect(0.0, VFX_IMP_DEATH_L, oTarget); + PCEffect(0.3, VFX_IMP_MAGIC_PROTECTION, oTarget); + PCEffect(0.0, VFX_FNF_WAIL_O_BANSHEES, oTarget); + PCEffect(0.3, VFX_FNF_SCREEN_SHAKE, oTarget); + PCEffect(0.5, VFX_FNF_DISPEL_GREATER, oTarget); + PCEffect(0.6, VFX_IMP_MAGIC_PROTECTION, oTarget); + + // If battle terminator wasn't used: Create treasure, adjust kills & + // play victory animation and flag monster as killed by pc + + int oExploit = GetLocalInt(oMod, "xcheck"); + if (oExploit!=1) + { + if (GetLocalInt(oMod, "hwar_on")==1) + { + DelayCommand(3.0, HolyScore(OBJECT_SELF)); + } + + AssignCommand(oPC, PlaySound("bf_huge")); + iKilled=iKilled+1; + SetLocalInt(oPC, "iKilled", iKilled); + DelayCommand(0.5, GetRank(oPC)); // Update the players rank + AssignCommand(oPC, ClearAllActions()); + DelayCommand(1.5, AssignCommand(oPC, ActionPlayAnimation + (ANIMATION_FIREFORGET_VICTORY2))); + FloatingTextStringOnCreature("Victory", oPC); + + int iHwarFlag = GetLocalInt(oMod, "hwar_on"); + int iLdead = GetLocalInt(oPC, "luciferdead"); + if (iLdead==1) + { + if (iHwarFlag!=1) + { + TombSpawn(OBJECT_SELF, oPC); + CreateGold(OBJECT_SELF, 50000); + } + } + + else if (iLdead!=1) + { + QuickRestore(oPC); + SetLocalInt(oPC, "luciferdead", 1); + SetLocalInt(oPC, "cutscene_on", 1); + SetLocalInt(oPC, "cutscene_flag", 0); + } + + + + } + + // if there are no monsters in the arena, unlock the gate + +if ((sw1==0)&&(sw2==0)&&(sw3==0)&&(sw4==0)&&(sw5==0)&&(sw6==0) + &&(sw7==0)&&(sw8==0)&&(sw9==0)&&(sw10==0)&&(GetLocalInt(oMod, "hwar_on")!=1)) + { + SetLocked(GetObjectByTag("arena_gate"), FALSE); + } +ExecuteScript("nw_c2_default7", OBJECT_SELF); +} diff --git a/_module/nss/umd_imbue.nss b/_module/nss/umd_imbue.nss new file mode 100644 index 0000000..2cfc135 --- /dev/null +++ b/_module/nss/umd_imbue.nss @@ -0,0 +1,62 @@ +#include "spawner" +#include "prc_x2_itemprop" + +void Skill (object oItem) +{ +itemproperty ipAdd; +int oDamage; +int nRandom = d20(); + + if (nRandom==1) oDamage = 5; + if (nRandom==2) oDamage = 5; + if (nRandom==3) oDamage = 5; + if (nRandom==4) oDamage = 5; + if (nRandom==5) oDamage = 7; + if (nRandom==6) oDamage = 7; + if (nRandom==7) oDamage = 7; + if (nRandom==8) oDamage = 9; + if (nRandom==9) oDamage = 9; + if (nRandom==10) oDamage = 9; + if (nRandom==11) oDamage = 11; + if (nRandom==12) oDamage = 11; + if (nRandom==13) oDamage = 11; + if (nRandom==14) oDamage = 13; + if (nRandom==15) oDamage = 13; + if (nRandom==16) oDamage = 13; + if (nRandom==17) oDamage = 15; + if (nRandom==18) oDamage = 15; + if (nRandom==19) oDamage = 15; + if (nRandom==20) + { + oDamage = 16; + PCEffect(3.0,VFX_DUR_PROT_EPIC_ARMOR_2, OBJECT_SELF); + } + +ipAdd = ItemPropertySkillBonus(SKILL_USE_MAGIC_DEVICE, oDamage); +IPSafeAddItemProperty(oItem, ipAdd); + +} +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_IMP_DOMINATE_S, OBJECT_SELF); +PCEffect(1.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +DelayCommand(1.0, Skill(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + + + diff --git a/_module/nss/universal_switch.nss b/_module/nss/universal_switch.nss new file mode 100644 index 0000000..e38d375 --- /dev/null +++ b/_module/nss/universal_switch.nss @@ -0,0 +1,40 @@ +#include "nw_i0_generic" +void main() +{ + +object oTarget; +object oTarget1; +object oPC = GetPCSpeaker(); +object oMod = GetModule(); +object oP1 = GetObjectByTag("pool1"); +object oP2 = GetObjectByTag("pool2"); +object oP3 = GetObjectByTag("fountain1"); +object oP4 = GetObjectByTag("fountain2"); +int oState = GetLocalInt(oMod, "pswitch_state"); +effect eEffect = EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY); +effect eEffect2 = EffectVisualEffect(VFX_NONE); +if (oState!=1) +{ +SetLocalInt(oMod, "pool_state", 1); +SetLocalInt(oMod, "fountain_state", 1); +DelayCommand(0.0, PlaySound("sce_negative")); +ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Rejeuvination facilities now inaccessable", oPC)); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP1); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP2); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP3); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect, oP4); +} +else +{ +SetLocalInt(oMod, "pool_state", 0); +SetLocalInt(oMod, "fountain_state", 0); +DelayCommand(0.0, PlaySound("sce_positive")); +ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE); +DelayCommand(1.0, FloatingTextStringOnCreature("Rejeuvination facilities now accessable", oPC)); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect2, oP1); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect2, oP2); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect2, oP3); +ApplyEffectToObject(DURATION_TYPE_PERMANENT,eEffect2, oP4); +} +} diff --git a/_module/nss/use_coin.nss b/_module/nss/use_coin.nss new file mode 100644 index 0000000..b65a3e5 --- /dev/null +++ b/_module/nss/use_coin.nss @@ -0,0 +1,7 @@ +void main() +{ +object oPC = GetLastUsedBy(); +object oTarget = GetWaypointByTag("exit_wp"); +location lTarget = GetLocation(oTarget); +AssignCommand(oPC, JumpToLocation(lTarget)); +} diff --git a/_module/nss/use_debugrod.nss b/_module/nss/use_debugrod.nss new file mode 100644 index 0000000..394097f --- /dev/null +++ b/_module/nss/use_debugrod.nss @@ -0,0 +1,140 @@ +//#include "rank" +#include "eradicate" +#include "spawner" + + + + +void main() +{ +object oUsed = GetItemActivated(); +object oPC = GetItemActivator(); +object oMod = GetModule(); +effect eEffect= EffectDeath(); +effect eEffect2; +int iTime; +int iValidArea = GetLocalInt(oPC, "pvp_area"); +float dWrathDelay = 5.0; +object oTarget = GetWaypointByTag("center_arena"); +object oArea = GetArea(oPC); + + + +if (GetTag(oUsed) == "debuggingrod") + { + + SetLocalInt(oMod, "d1", 0); + SetLocalInt(oMod, "d2", 0); + SetLocalInt(oMod, "d2a", 0); + SetLocalInt(oMod, "d3", 0); + SetLocalInt(oMod, "d4", 0); + SetLocalInt(oMod, "d5", 0); + SetLocalInt(oMod, "sw_hw", 0); + SetLocalInt(oMod, "sw_dr", 0); + SetLocalInt(oMod, "sw_bl", 0); + SetLocalInt(oMod, "sw_pf", 0); + SetLocalInt(oMod, "sw_df", 0); + SetLocalInt(oMod, "sw_pm", 0); + SetLocalInt(oMod, "sw_bm", 0); + SetLocalInt(oMod, "sw_lm", 0); + SetLocalInt(oMod, "sw_ll", 0); + SetLocalInt(oMod, "sw_xx", 0); + SetLocalInt(oMod, "ch_hw", 0); + SetLocalInt(oMod, "ch_dr", 0); + SetLocalInt(oMod, "ch_bl", 0); + SetLocalInt(oMod, "ch_pf", 0); + SetLocalInt(oMod, "ch_df", 0); + SetLocalInt(oMod, "ch_pm", 0); + SetLocalInt(oMod, "ch_bm", 0); + SetLocalInt(oMod, "ch_lm", 0); + SetLocalInt(oMod, "ch_ll", 0); + SetLocalInt(oMod, "ch_xx", 0); + SetLocalInt(oMod, "gr_xx", 0); + SetLocalInt(oMod, "challenge", 0); + AssignCommand(oPC, PlaySound("sps_darkness")); + SetLocalInt(oPC, "doppledead", 1); + SetLocalInt(oPC, "pitfienddead", 1); + SetLocalInt(oPC, "wurmdead", 1); + SetLocalInt(oPC, "lorddead", 1); + SetLocalInt(oPC, "paledead", 1); + SetLocalInt(oPC, "luciferdead", 1); + SetLocalInt(oPC, "balrogdead", 1); + SetLocalInt(oPC, "hdfienddead", 1); + SetLocalInt(oPC, "bossdead", 1); + SetLocalInt(oPC, "marilithdead", 1); + //++iKilled; + //SetLocalInt (oPC,"iKilled", iKilled); + Eradicate(oPC); + //DelayCommand(3.0, GetRank(oPC)); + + } + if (GetTag(oUsed) == "deathpotion") + { + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect, oPC); + } + if (GetTag(oUsed) == "poisonpotion") + { + eEffect2 = EffectDamage(250, DAMAGE_TYPE_ACID, DAMAGE_POWER_NORMAL); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect2, oPC); + } +if (GetTag(oUsed) == "wrathrod") + { + iTime = GetLocalInt(oMod, "WrathTime"); + if ((iTime!=1)&&(iValidArea==1)&&(GetName(oArea)=="The Arena of Champions")) + { + //SetLocalInt(oMod, "WrathTime", 1); + //DelayCommand(dWrathDelay+55.0, SetLocalInt(oMod, "WrathTime", 0)); + //Wrath(oPC, dWrathDelay); + ExecuteScript("phoenix_rod", oPC); + } + else if (iTime==1) + { + if (GetItemCharges(oUsed)==0) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("** The rod disintegrates in your hand **", oPC); + DestroyObject(oUsed); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("** The rod's power is recharging **", oPC); + } + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("** You can't summon the Phoenix here **", oPC); + int iCharges = GetItemCharges(oUsed); + iCharges+=5; + SetItemCharges(oUsed, iCharges); + } + +} + +if (GetTag(oUsed) == "final_ring") + { + iTime = GetLocalInt(oMod, "WrathTime"); + if ((iTime!=1)&&(iValidArea==1)&&(GetName(oArea)=="The Arena of Champions")) + { + SetLocalInt(oMod, "WrathTime", 1); + DelayCommand(dWrathDelay+12.0, SetLocalInt(oMod, "WrathTime", 0)); + ExecuteScript("phoenix_rod", oPC); + } + else if (iTime==1) + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("** The ring's power is recharging **", oPC); + } + else + { + PlaySound("sim_cntresist"); + FloatingTextStringOnCreature("** You can't summon the Phoenix here **", oPC); + } + } + + + +} + + diff --git a/_module/nss/use_portal.nss b/_module/nss/use_portal.nss new file mode 100644 index 0000000..1c4057d --- /dev/null +++ b/_module/nss/use_portal.nss @@ -0,0 +1,4 @@ +void main() +{ + ActionStartConversation(GetClickingObject()); +} diff --git a/_module/nss/vixthrite.nss b/_module/nss/vixthrite.nss new file mode 100644 index 0000000..a5f586e --- /dev/null +++ b/_module/nss/vixthrite.nss @@ -0,0 +1,47 @@ +// Shdow-device altar: remove black pearl and give a new power for held weapon. + +#include "prc_x2_itemprop" +#include "nw_i0_plot" + +void RemoveEffects2(object oObject) +{ + effect e = GetFirstEffect(oObject); + while(GetIsEffectValid(e)) + { + RemoveEffect(oObject, e); + e = GetNextEffect(oObject); + } +} + +void main() +{ + object oPC = GetPCSpeaker(); + + object oGem = GetItemPossessedBy(oPC, "pearl"); + int nStack = GetItemStackSize(oGem); + if(oGem == OBJECT_INVALID) + return; + object oWeapon = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); + int nType = GetBaseItemType(oWeapon); + // if the held item is not a weapon then do nothing + if(oWeapon == OBJECT_INVALID || !IPGetIsMeleeWeapon(oWeapon)) + return; + + // Destroy the gem + if(nStack == 1) + DestroyObject(oGem); + else if(nStack > 1) + { + nStack--; + SetItemStackSize(oGem, nStack); + } + + // Apply the new effect + // TODO: add visual effect + effect eVis = EffectVisualEffect(VFX_IMP_HARM); + itemproperty ipVis = ItemPropertyVisualEffect(ITEM_VISUAL_EVIL); + itemproperty ipAb = ItemPropertyOnHitProps(IP_CONST_ONHIT_ABILITYDRAIN, IP_CONST_ONHIT_SAVEDC_24, IP_CONST_ABILITY_STR); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oPC); + DelayCommand(1.0, AddItemProperty(DURATION_TYPE_PERMANENT, ipAb, oWeapon)); + DelayCommand(1.0, AddItemProperty(DURATION_TYPE_PERMANENT, ipVis, oWeapon)); +} diff --git a/_module/nss/vote.nss b/_module/nss/vote.nss new file mode 100644 index 0000000..4e7adde --- /dev/null +++ b/_module/nss/vote.nss @@ -0,0 +1,16 @@ +void main() +{ + // Get the first player + object oPlayer = GetFirstPC(); + int oPlayers; + object oMod = GetModule(); + while (GetIsPC(oPlayer) == TRUE) + { + oPlayers = oPlayers+1; + oPlayer = GetNextPC(); + //object oTarget = GetObjectByTag("rune1"); + AssignCommand(oMod, ActionStartConversation(oPlayer, "vote")); + } + SetLocalInt(oMod, "vote", oPlayers); +} + diff --git a/_module/nss/wager1000.nss b/_module/nss/wager1000.nss new file mode 100644 index 0000000..34d7265 --- /dev/null +++ b/_module/nss/wager1000.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "wager", 100); +} diff --git a/_module/nss/wager10000.nss b/_module/nss/wager10000.nss new file mode 100644 index 0000000..173247e --- /dev/null +++ b/_module/nss/wager10000.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "wager", 1000); +} diff --git a/_module/nss/wager100000.nss b/_module/nss/wager100000.nss new file mode 100644 index 0000000..b18998e --- /dev/null +++ b/_module/nss/wager100000.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "wager", 4000); +} diff --git a/_module/nss/wager2000.nss b/_module/nss/wager2000.nss new file mode 100644 index 0000000..375e47a --- /dev/null +++ b/_module/nss/wager2000.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "wager", 200); +} diff --git a/_module/nss/wager20000.nss b/_module/nss/wager20000.nss new file mode 100644 index 0000000..b607c7c --- /dev/null +++ b/_module/nss/wager20000.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "wager", 2000); +} diff --git a/_module/nss/wager200000.nss b/_module/nss/wager200000.nss new file mode 100644 index 0000000..464a5b9 --- /dev/null +++ b/_module/nss/wager200000.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "wager", 5000); +} diff --git a/_module/nss/wager5000.nss b/_module/nss/wager5000.nss new file mode 100644 index 0000000..940e7cf --- /dev/null +++ b/_module/nss/wager5000.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "wager", 500); +} diff --git a/_module/nss/wager50000.nss b/_module/nss/wager50000.nss new file mode 100644 index 0000000..f972259 --- /dev/null +++ b/_module/nss/wager50000.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "wager", 3000); +} diff --git a/_module/nss/wager500000.nss b/_module/nss/wager500000.nss new file mode 100644 index 0000000..d44b226 --- /dev/null +++ b/_module/nss/wager500000.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "wager", 10000); +} diff --git a/_module/nss/wager_check.nss b/_module/nss/wager_check.nss new file mode 100644 index 0000000..01646ae --- /dev/null +++ b/_module/nss/wager_check.nss @@ -0,0 +1,16 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +int StartingConditional() +{ +object oPC = GetPCSpeaker(); +int iWager = GetLocalInt(oPC, "wager"); + +if (!(GetGold(oPC) >= iWager)) return FALSE; + +return TRUE; +} + diff --git a/_module/nss/wagerall.nss b/_module/nss/wagerall.nss new file mode 100644 index 0000000..8bd56e8 --- /dev/null +++ b/_module/nss/wagerall.nss @@ -0,0 +1,6 @@ +void main() +{ +object oPC = GetPCSpeaker(); +int iGold = GetGold(oPC); +SetLocalInt(oPC, "wager", iGold); +} diff --git a/_module/nss/wand_shop.nss b/_module/nss/wand_shop.nss new file mode 100644 index 0000000..83a8894 --- /dev/null +++ b/_module/nss/wand_shop.nss @@ -0,0 +1,21 @@ +/* Script generated by +Lilac Soul's NWN Script Generator, v. 1.6 + +For download info, please visit: +http://www.lilacsoul.revility.com */ + +//Put this OnUsed +void main() +{ + +object oPC = GetLastUsedBy(); + +if (!GetIsPC(oPC)) return; + +object oTarget; +oTarget = GetObjectByTag("wand_shop"); +PlaySound("as_sw_genericop1"); +OpenStore(oTarget, oPC, 0, 0); + +} + diff --git a/_module/nss/war_result.nss b/_module/nss/war_result.nss new file mode 100644 index 0000000..59ddf97 --- /dev/null +++ b/_module/nss/war_result.nss @@ -0,0 +1,53 @@ + + +void main () {} +/* + +void HolyScore(object oSelf) +{ +int iCount = 0; +object oMod = GetModule(); +object oPC = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, TRUE, OBJECT_SELF); +object oCreature; +int oHeaven = GetLocalInt(oMod, "heav_score"); +int oHell = GetLocalInt(oMod, "hell_score"); +object oHost = GetObjectByTag("starfall"); +object oTeam = GetFirstFactionMember(oSelf, FALSE); +while (GetIsObjectValid(oTeam)) + { + if (!GetIsDead(oTeam)) + { + ++iCount; + } + oTeam = GetNextFactionMember(oSelf, FALSE); + } +if (iCount==0) + { + oCreature = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oSelf, + 1, CREATURE_TYPE_PLAYER_CHAR, FALSE); + if ((GetResRef(oCreature)=="dragon1")||(GetResRef(oCreature)=="zep_halfdrafn001")|| + (GetResRef(oCreature)=="zep_marilithb001")||(GetResRef(oCreature)=="palewarrior")|| + (GetResRef(oCreature)=="zep_pitfiend001")||(GetResRef(oCreature)=="zep_balrog001")|| + (GetResRef(oCreature)=="dopple")||(GetResRef(oCreature)=="mistress2")|| + (GetResRef(oCreature)=="notime3")||(GetResRef(oCreature)=="notime4")|| + (GetResRef(oCreature)=="darcher")||(GetResRef(oCreature)=="death")) + { + ++oHell; + SetLocalInt(oMod, "hell_score", oHell); + SpeakString("The Dark Lord and his minions have been victorious!", TALKVOLUME_SHOUT); + Message(3.0, "*** Hell have won ***", oPC); + SetLocalInt(oMod, "hwar_on", 0); + } + else + { + ++oHeaven; + SetLocalInt(oMod, "heav_score", oHeaven); + SpeakString("The divine Tyriel and his holy warriors have been victorious!", TALKVOLUME_SHOUT); + Message(3.0, "*** Heaven have won ***", oPC); + SetLocalInt(oMod, "hwar_on", 0); + } + } + +} + +void main () {} diff --git a/_module/nss/wardemon_hide.nss b/_module/nss/wardemon_hide.nss new file mode 100644 index 0000000..29eed53 --- /dev/null +++ b/_module/nss/wardemon_hide.nss @@ -0,0 +1,5 @@ +void main() +{ +effect eEffect = EffectDamageImmunityIncrease(IP_CONST_DAMAGETYPE_DIVINE, 100); +ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect, OBJECT_SELF); +} diff --git a/_module/nss/weap_check.nss b/_module/nss/weap_check.nss new file mode 100644 index 0000000..f1d3ff2 --- /dev/null +++ b/_module/nss/weap_check.nss @@ -0,0 +1,22 @@ +//:://///////////////////////////////////////////// +//:: x2_con_sw_haverh +//:: Copyright (c) 2003 Bioware Corp. +//::////////////////////////////////////////////// +/* + Only returns true if you have a valid + item in your right hand. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: September 2003 +//::////////////////////////////////////////////// + +int StartingConditional() +{ + object oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, GetPCSpeaker()); + if (GetIsObjectValid(oItem) == TRUE) + { + return TRUE; + } + return FALSE; +} diff --git a/_module/nss/wfin_imbue.nss b/_module/nss/wfin_imbue.nss new file mode 100644 index 0000000..d363119 --- /dev/null +++ b/_module/nss/wfin_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_WEAPFINESSE); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/win_reset.nss b/_module/nss/win_reset.nss new file mode 100644 index 0000000..5e5f74b --- /dev/null +++ b/_module/nss/win_reset.nss @@ -0,0 +1,5 @@ +void main() +{ +object oPC = GetPCSpeaker(); +SetLocalInt(oPC, "winnings", 0); +} diff --git a/_module/nss/wis_imbue.nss b/_module/nss/wis_imbue.nss new file mode 100644 index 0000000..87cc654 --- /dev/null +++ b/_module/nss/wis_imbue.nss @@ -0,0 +1,6 @@ +#include "ability_imbue" + +void main() +{ +AbilityImbue(IP_CONST_ABILITY_WIS); +} diff --git a/_module/nss/wiz_slot_imbue.nss b/_module/nss/wiz_slot_imbue.nss new file mode 100644 index 0000000..b1b1f7a --- /dev/null +++ b/_module/nss/wiz_slot_imbue.nss @@ -0,0 +1,6 @@ +#include "spellslot_imbue" + +void main() +{ +SpellSlot(IP_CONST_CLASS_WIZARD); +} diff --git a/_module/nss/wpe_imbue.nss b/_module/nss/wpe_imbue.nss new file mode 100644 index 0000000..4fb8aa0 --- /dev/null +++ b/_module/nss/wpe_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_WEAPON_PROF_EXOTIC); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/wpm_imbue.nss b/_module/nss/wpm_imbue.nss new file mode 100644 index 0000000..2254414 --- /dev/null +++ b/_module/nss/wpm_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_WEAPON_PROF_MARTIAL); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/wps_imbue.nss b/_module/nss/wps_imbue.nss new file mode 100644 index 0000000..2c9ca65 --- /dev/null +++ b/_module/nss/wps_imbue.nss @@ -0,0 +1,34 @@ +#include "spawner" +#include "prc_x2_itemprop" +void Evade(object oItem) +{ +int oDamage; +itemproperty ipAdd; +ipAdd = ItemPropertyBonusFeat(IP_CONST_FEAT_WEAPON_PROF_SIMPLE); +IPSafeAddItemProperty(oItem, ipAdd); +} + + +void main () +{ +object oTarget; +object oItem; + +int oDamage; +SetLocked(OBJECT_SELF, TRUE); +oItem = GetFirstItemInInventory(OBJECT_SELF); + while(GetIsObjectValid(oItem)) + { + if (GetTag(oItem)=="pearl") + {DestroyObject(oItem);} + oItem = GetNextItemInInventory(OBJECT_SELF); + } +CastPC(0.0,SPELL_SHAPECHANGE, OBJECT_SELF); +PCEffect(1.0,VFX_FNF_STRIKE_HOLY, OBJECT_SELF); +PCEffect(1.5,VFX_FNF_DISPEL_GREATER, OBJECT_SELF); +PCEffect(2.0,VFX_FNF_DISPEL_DISJUNCTION, OBJECT_SELF); +PCEffect(2.5,VFX_IMP_IMPROVE_ABILITY_SCORE, OBJECT_SELF); +DelayCommand(1.0, Evade(GetFirstItemInInventory(OBJECT_SELF))); +DelayCommand(3.0, SetLocked(OBJECT_SELF, FALSE)); +} + diff --git a/_module/nss/x2_def_heartbeat.nss b/_module/nss/x2_def_heartbeat.nss new file mode 100644 index 0000000..69b8716 --- /dev/null +++ b/_module/nss/x2_def_heartbeat.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_heartbeat +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default Heartbeat script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// + +void main() +{ + ExecuteScript("nw_c2_default1", OBJECT_SELF); +} diff --git a/_module/nss/x2_def_ondisturb.nss b/_module/nss/x2_def_ondisturb.nss new file mode 100644 index 0000000..bcd9896 --- /dev/null +++ b/_module/nss/x2_def_ondisturb.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: Name x2_def_ondisturb +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Default OnDisturbed script +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: June 11/03 +//::////////////////////////////////////////////// + +void main() +{ + ExecuteScript("nw_c2_default8", OBJECT_SELF); +} diff --git a/_module/nss/xpc2.nss b/_module/nss/xpc2.nss new file mode 100644 index 0000000..663472e --- /dev/null +++ b/_module/nss/xpc2.nss @@ -0,0 +1,7 @@ +int StartingConditional() +{ + if(!(GetLocalInt(GetModule(), "gr_xx") != 1)) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/zep_always_false.nss b/_module/nss/zep_always_false.nss new file mode 100644 index 0000000..0c36d49 --- /dev/null +++ b/_module/nss/zep_always_false.nss @@ -0,0 +1,7 @@ +int StartingConditional() +{ + int iResult; + + iResult = 0; + return iResult; +} diff --git a/_module/nss/zep_cr_attempt.nss b/_module/nss/zep_cr_attempt.nss new file mode 100644 index 0000000..3af86cb --- /dev/null +++ b/_module/nss/zep_cr_attempt.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_AttemptCraft(GetPCSpeaker()); +} diff --git a/_module/nss/zep_cr_canca.nss b/_module/nss/zep_cr_canca.nss new file mode 100644 index 0000000..83bcd1c --- /dev/null +++ b/_module/nss/zep_cr_canca.nss @@ -0,0 +1,36 @@ +#include "zep_inc_craft" + +int StartingConditional() { + object oPC = GetPCSpeaker(); + object oArmor = GetItemInSlot(INVENTORY_SLOT_CHEST, oPC); + if (!GetIsObjectValid(oArmor) || GetPlotFlag(oArmor)) + return FALSE; + + if (GetIsDM(oPC)) return TRUE; + + string sRequired; + int iAC = StringToInt(Get2DAString("parts_chest", "ACBONUS", GetItemAppearance(oArmor, ITEM_APPR_TYPE_ARMOR_MODEL, ITEM_APPR_ARMOR_MODEL_TORSO))); + if (iAC==0) sRequired = "ZEP_CR_CLOTH"; + if (iAC>=1 && iAC<=3) sRequired = "ZEP_CR_LEATHER"; + if (iAC>=4 && iAC<=5) sRequired = "ZEP_CR_SCALE"; + if (iAC>=6 && iAC<=8) sRequired = "ZEP_CR_METAL"; + + object oNPC = GetLocalObject(oPC, "ZEP_CR_NPC"); + if (GetIsObjectValid(oNPC)) { + if (GetLocalInt(oNPC, sRequired) == 1) + return TRUE; + else return FALSE; + + } else if (ZEP_CR_REQUIRE_PLACEABLE) { + int i=1; + object oPlaceable = GetNearestObjectByTag(ZEP_CR_PLACEABLE_TAG, oPC, 1); + while (GetIsObjectValid(oPlaceable) && GetArea(oPC) == GetArea(oPlaceable) + && GetDistanceBetween(oPC, oPlaceable) <= ZEP_CR_REQUIRED_DISTANCE) { + if (GetLocalInt(oPlaceable, sRequired) == 1) + return TRUE; + oPlaceable = GetNearestObjectByTag(ZEP_CR_PLACEABLE_TAG, oPC, ++i); + } + return FALSE; + } + return TRUE; +} diff --git a/_module/nss/zep_cr_canca_n.nss b/_module/nss/zep_cr_canca_n.nss new file mode 100644 index 0000000..0ae72b8 --- /dev/null +++ b/_module/nss/zep_cr_canca_n.nss @@ -0,0 +1,46 @@ +#include "zep_inc_craft" + +int StartingConditional() { + object oPC = GetPCSpeaker(); + object oArmor = GetItemInSlot(INVENTORY_SLOT_HEAD, oPC); + if (!GetIsObjectValid(oArmor) || GetPlotFlag(oArmor)) { + oArmor = GetItemInSlot(INVENTORY_SLOT_CHEST, oPC); + if (!GetIsObjectValid(oArmor) || GetPlotFlag(oArmor)) { + SetCustomToken(ZEP_CR_TOKENBASE+4, "You do not have any armor or helmet equipped to modify"); + return TRUE; + } + } + + if (GetIsDM(oPC)) return FALSE; + + string sRequired; + if (GetBaseItemType(oArmor)==BASE_ITEM_HELMET) { + sRequired = "ZEP_CR_HELMET"; + } else { + int iAC = StringToInt(Get2DAString("parts_chest", "ACBONUS", GetItemAppearance(oArmor, ITEM_APPR_TYPE_ARMOR_MODEL, ITEM_APPR_ARMOR_MODEL_TORSO))); + if (iAC==0) sRequired = "ZEP_CR_CLOTH"; + if (iAC>=1 && iAC<=3) sRequired = "ZEP_CR_LEATHER"; + if (iAC>=4 && iAC<=5) sRequired = "ZEP_CR_SCALE"; + if (iAC>=6 && iAC<=8) sRequired = "ZEP_CR_METAL"; + } + + object oNPC = GetLocalObject(oPC, "ZEP_CR_NPC"); + if (GetIsObjectValid(oNPC)) { + if (GetLocalInt(oNPC, sRequired) == 1) + return FALSE; + SetCustomToken(ZEP_CR_TOKENBASE+4, "This craftsman cannot modify your current equipped armor or helmet"); + return TRUE; + } else if (ZEP_CR_REQUIRE_PLACEABLE) { + int i=1; + object oPlaceable = GetNearestObjectByTag(ZEP_CR_PLACEABLE_TAG, oPC, 1); + while (GetIsObjectValid(oPlaceable) && GetArea(oPC) == GetArea(oPlaceable) + && GetDistanceBetween(oPC, oPlaceable) <= ZEP_CR_REQUIRED_DISTANCE) { + if (GetLocalInt(oPlaceable, sRequired) == 1) + return FALSE; + oPlaceable = GetNearestObjectByTag(ZEP_CR_PLACEABLE_TAG, oPC, ++i); + } + SetCustomToken(ZEP_CR_TOKENBASE+4, "You're not near the proper tool to craft your armor or helmet"); + return TRUE; + } + return FALSE; +} diff --git a/_module/nss/zep_cr_canch.nss b/_module/nss/zep_cr_canch.nss new file mode 100644 index 0000000..f6f8125 --- /dev/null +++ b/_module/nss/zep_cr_canch.nss @@ -0,0 +1,31 @@ +#include "zep_inc_craft" + +int StartingConditional() { + object oPC = GetPCSpeaker(); + object oHelmet = GetItemInSlot(INVENTORY_SLOT_HEAD, oPC); + if (!GetIsObjectValid(oHelmet) || GetPlotFlag(oHelmet)) + return FALSE; + + if (GetIsDM(oPC)) return TRUE; + + string sRequired = "ZEP_CR_HELMET"; + object oNPC = GetLocalObject(oPC, "ZEP_CR_NPC"); + if (GetIsObjectValid(oNPC)) { + if (GetLocalInt(oNPC, sRequired) == 1) + return TRUE; + else return FALSE; + + } else if (ZEP_CR_REQUIRE_PLACEABLE) { + int i=1; + object oPlaceable = GetNearestObjectByTag(ZEP_CR_PLACEABLE_TAG, oPC, 1); + while (GetIsObjectValid(oPlaceable) && GetArea(oPC) == GetArea(oPlaceable) + && GetDistanceBetween(oPC, oPlaceable) <= ZEP_CR_REQUIRED_DISTANCE) { + if (GetLocalInt(oPlaceable, sRequired) == 1) + return TRUE; + oPlaceable = GetNearestObjectByTag(ZEP_CR_PLACEABLE_TAG, oPC, ++i); + } + return FALSE; + } + return TRUE; +} + diff --git a/_module/nss/zep_cr_cancs.nss b/_module/nss/zep_cr_cancs.nss new file mode 100644 index 0000000..6060cab --- /dev/null +++ b/_module/nss/zep_cr_cancs.nss @@ -0,0 +1,31 @@ +#include "zep_inc_craft" + +int StartingConditional() { + object oPC = GetPCSpeaker(); + object oShield = GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oPC); + if (!GetIsObjectValid(oShield) || GetPlotFlag(oShield) || !ZEP_GetIsShield(oShield)) + return FALSE; + + if (GetIsDM(oPC)) return TRUE; + + string sRequired = "ZEP_CR_SHIELD"; + object oNPC = GetLocalObject(oPC, "ZEP_CR_NPC"); + if (GetIsObjectValid(oNPC)) { + if (GetLocalInt(oNPC, sRequired) == 1) + return TRUE; + else return FALSE; + + } else if (ZEP_CR_REQUIRE_PLACEABLE) { + int i=1; + object oPlaceable = GetNearestObjectByTag(ZEP_CR_PLACEABLE_TAG, oPC, 1); + while (GetIsObjectValid(oPlaceable) && GetArea(oPC) == GetArea(oPlaceable) + && GetDistanceBetween(oPC, oPlaceable) <= ZEP_CR_REQUIRED_DISTANCE) { + if (GetLocalInt(oPlaceable, sRequired) == 1) + return TRUE; + oPlaceable = GetNearestObjectByTag(ZEP_CR_PLACEABLE_TAG, oPC, ++i); + } + return FALSE; + } + return TRUE; +} + diff --git a/_module/nss/zep_cr_canct.nss b/_module/nss/zep_cr_canct.nss new file mode 100644 index 0000000..f6fc76f --- /dev/null +++ b/_module/nss/zep_cr_canct.nss @@ -0,0 +1,7 @@ +int StartingConditional() { + object oPC = GetPCSpeaker(); + if (GetIsObjectValid(GetLocalObject(oPC, "ZEP_CR_NPC"))) + return FALSE; + + return TRUE; +} diff --git a/_module/nss/zep_cr_cancw.nss b/_module/nss/zep_cr_cancw.nss new file mode 100644 index 0000000..199b7e2 --- /dev/null +++ b/_module/nss/zep_cr_cancw.nss @@ -0,0 +1,71 @@ +#include "zep_inc_craft" + +int StartingConditional() { + object oPC = GetPCSpeaker(); + object oWeapon = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); + if (!GetIsObjectValid(oWeapon) || GetPlotFlag(oWeapon) || IPGetIsIntelligentWeapon(oWeapon) || !ZEP_GetIsWeapon(oWeapon)) + return FALSE; + + if (GetIsDM(oPC)) return TRUE; + + string sRequired; + switch (GetBaseItemType(oWeapon)) { + case BASE_ITEM_BASTARDSWORD: + case BASE_ITEM_BATTLEAXE: + case BASE_ITEM_DAGGER: + case BASE_ITEM_DIREMACE: + case BASE_ITEM_DOUBLEAXE: + case BASE_ITEM_DWARVENWARAXE: + case BASE_ITEM_GREATAXE: + case BASE_ITEM_GREATSWORD: + case BASE_ITEM_HALBERD: + case BASE_ITEM_HEAVYFLAIL: + case BASE_ITEM_KAMA: + case BASE_ITEM_KATANA: + case BASE_ITEM_KUKRI: + case BASE_ITEM_LIGHTFLAIL: + case BASE_ITEM_LIGHTHAMMER: + case BASE_ITEM_LIGHTMACE: + case BASE_ITEM_LONGSWORD: + case BASE_ITEM_MORNINGSTAR: + case BASE_ITEM_RAPIER: + case BASE_ITEM_SCIMITAR: + case BASE_ITEM_SCYTHE: + case BASE_ITEM_SHORTSPEAR: + case BASE_ITEM_SHORTSWORD: + case BASE_ITEM_SICKLE: + case BASE_ITEM_THROWINGAXE: + case BASE_ITEM_TWOBLADEDSWORD: + case BASE_ITEM_WARHAMMER: sRequired = "ZEP_CR_METAL"; break; + + case BASE_ITEM_CLUB: + case BASE_ITEM_HEAVYCROSSBOW: + case BASE_ITEM_LIGHTCROSSBOW: + case BASE_ITEM_LONGBOW: + case BASE_ITEM_MAGICSTAFF: + case BASE_ITEM_QUARTERSTAFF: + case BASE_ITEM_SHORTBOW: sRequired = "ZEP_CR_WOOD"; break; + + case BASE_ITEM_SLING: + case BASE_ITEM_WHIP: sRequired = "ZEP_CR_LEATHER"; break; + } + + object oNPC = GetLocalObject(oPC, "ZEP_CR_NPC"); + if (GetIsObjectValid(oNPC)) { + if (GetLocalInt(oNPC, sRequired) == 1) + return TRUE; + else return FALSE; + } else if (ZEP_CR_REQUIRE_PLACEABLE) { + int i=1; + object oPlaceable = GetNearestObjectByTag(ZEP_CR_PLACEABLE_TAG, oPC, 1); + while (GetIsObjectValid(oPlaceable) && GetArea(oPC) == GetArea(oPlaceable) + && GetDistanceBetween(oPC, oPlaceable) <= ZEP_CR_REQUIRED_DISTANCE) { + if (GetLocalInt(oPlaceable, sRequired) == 1) + return TRUE; + oPlaceable = GetNearestObjectByTag(ZEP_CR_PLACEABLE_TAG, oPC, ++i); + } + return FALSE; + } + return TRUE; +} + diff --git a/_module/nss/zep_cr_cancw_n.nss b/_module/nss/zep_cr_cancw_n.nss new file mode 100644 index 0000000..2a5d907 --- /dev/null +++ b/_module/nss/zep_cr_cancw_n.nss @@ -0,0 +1,83 @@ +#include "zep_inc_craft" + +int StartingConditional() { + object oPC = GetPCSpeaker(); + object oWeapon = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); + if (!GetIsObjectValid(oWeapon) || GetPlotFlag(oWeapon) || IPGetIsIntelligentWeapon(oWeapon) || !ZEP_GetIsWeapon(oWeapon)) { + oWeapon = GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oPC); + if (!GetIsObjectValid(oWeapon) || GetPlotFlag(oWeapon) || !ZEP_GetIsShield(oWeapon)) { + SetCustomToken(ZEP_CR_TOKENBASE+5, "You do not have any weapon or shield equipped to modify"); + return TRUE; + } + } + + if (GetIsDM(oPC)) return FALSE; + + string sRequired; + switch (GetBaseItemType(oWeapon)) { + case BASE_ITEM_BASTARDSWORD: + case BASE_ITEM_BATTLEAXE: + case BASE_ITEM_DAGGER: + case BASE_ITEM_DIREMACE: + case BASE_ITEM_DOUBLEAXE: + case BASE_ITEM_DWARVENWARAXE: + case BASE_ITEM_GREATAXE: + case BASE_ITEM_GREATSWORD: + case BASE_ITEM_HALBERD: + case BASE_ITEM_HEAVYFLAIL: + case BASE_ITEM_KAMA: + case BASE_ITEM_KATANA: + case BASE_ITEM_KUKRI: + case BASE_ITEM_LIGHTFLAIL: + case BASE_ITEM_LIGHTHAMMER: + case BASE_ITEM_LIGHTMACE: + case BASE_ITEM_LONGSWORD: + case BASE_ITEM_MORNINGSTAR: + case BASE_ITEM_RAPIER: + case BASE_ITEM_SCIMITAR: + case BASE_ITEM_SCYTHE: + case BASE_ITEM_SHORTSPEAR: + case BASE_ITEM_SHORTSWORD: + case BASE_ITEM_SICKLE: + case BASE_ITEM_THROWINGAXE: + case BASE_ITEM_TWOBLADEDSWORD: + case BASE_ITEM_WARHAMMER: sRequired = "ZEP_CR_METAL"; break; + + case BASE_ITEM_CLUB: + case BASE_ITEM_HEAVYCROSSBOW: + case BASE_ITEM_LIGHTCROSSBOW: + case BASE_ITEM_LONGBOW: + case BASE_ITEM_MAGICSTAFF: + case BASE_ITEM_QUARTERSTAFF: + case BASE_ITEM_SHORTBOW: sRequired = "ZEP_CR_WOOD"; break; + + case BASE_ITEM_SLING: + case BASE_ITEM_WHIP: sRequired = "ZEP_CR_LEATHER"; break; + + case BASE_ITEM_SMALLSHIELD: + case BASE_ITEM_LARGESHIELD: + case BASE_ITEM_TOWERSHIELD: sRequired = "ZEP_CR_SHIELD"; break; + } + + object oNPC = GetLocalObject(oPC, "ZEP_CR_NPC"); + if (GetIsObjectValid(oNPC)) { + if (GetLocalInt(oNPC, sRequired) == 1) + return FALSE; + SetCustomToken(ZEP_CR_TOKENBASE+5, "This craftsman cannot modify your current equipped armor or helmet"); + return TRUE; + + } else if (ZEP_CR_REQUIRE_PLACEABLE) { + int i=1; + object oPlaceable = GetNearestObjectByTag(ZEP_CR_PLACEABLE_TAG, oPC, 1); + while (GetIsObjectValid(oPlaceable) && GetArea(oPC) == GetArea(oPlaceable) + && GetDistanceBetween(oPC, oPlaceable) <= ZEP_CR_REQUIRED_DISTANCE) { + if (GetLocalInt(oPlaceable, sRequired) == 1) + return FALSE; + oPlaceable = GetNearestObjectByTag(ZEP_CR_PLACEABLE_TAG, oPC, ++i); + } + SetCustomToken(ZEP_CR_TOKENBASE+5, "You're not near the proper tool to craft your weapon or shield"); + return TRUE; + } + return FALSE; +} + diff --git a/_module/nss/zep_cr_changed.nss b/_module/nss/zep_cr_changed.nss new file mode 100644 index 0000000..3b3fef2 --- /dev/null +++ b/_module/nss/zep_cr_changed.nss @@ -0,0 +1,3 @@ +int StartingConditional() { + return (GetLocalInt(GetPCSpeaker(), "ZEP_CR_CHANGED")); +} diff --git a/_module/nss/zep_cr_dial_npc.nss b/_module/nss/zep_cr_dial_npc.nss new file mode 100644 index 0000000..ac2e403 --- /dev/null +++ b/_module/nss/zep_cr_dial_npc.nss @@ -0,0 +1,6 @@ +void main() { + object oPC = GetPCSpeaker(); + object oNPC = OBJECT_SELF; + SetLocalObject(oPC, "ZEP_CR_NPC", oNPC); + AssignCommand(oPC, ActionStartConversation(oNPC, "x0_skill_ctrap", TRUE, FALSE)); +} diff --git a/_module/nss/zep_cr_dialogue.nss b/_module/nss/zep_cr_dialogue.nss new file mode 100644 index 0000000..9649406 --- /dev/null +++ b/_module/nss/zep_cr_dialogue.nss @@ -0,0 +1,4 @@ +void main() { + object oPC = GetLastUsedBy(); + AssignCommand(oPC, ActionStartConversation(oPC, "x0_skill_ctrap", TRUE, FALSE)); +} diff --git a/_module/nss/zep_cr_dobelt.nss b/_module/nss/zep_cr_dobelt.nss new file mode 100644 index 0000000..71d98cd --- /dev/null +++ b/_module/nss/zep_cr_dobelt.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_BELT, 6745); +} diff --git a/_module/nss/zep_cr_dobicep_l.nss b/_module/nss/zep_cr_dobicep_l.nss new file mode 100644 index 0000000..db66461 --- /dev/null +++ b/_module/nss/zep_cr_dobicep_l.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_LBICEP, 7151); +} diff --git a/_module/nss/zep_cr_dobicep_r.nss b/_module/nss/zep_cr_dobicep_r.nss new file mode 100644 index 0000000..94cf535 --- /dev/null +++ b/_module/nss/zep_cr_dobicep_r.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_RBICEP, 7147); +} diff --git a/_module/nss/zep_cr_doccloth1.nss b/_module/nss/zep_cr_doccloth1.nss new file mode 100644 index 0000000..2120396 --- /dev/null +++ b/_module/nss/zep_cr_doccloth1.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_COLOR_CLOTH1, 1); +} diff --git a/_module/nss/zep_cr_doccloth2.nss b/_module/nss/zep_cr_doccloth2.nss new file mode 100644 index 0000000..4f5eb29 --- /dev/null +++ b/_module/nss/zep_cr_doccloth2.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_COLOR_CLOTH2, 1); +} diff --git a/_module/nss/zep_cr_docleath1.nss b/_module/nss/zep_cr_docleath1.nss new file mode 100644 index 0000000..deb70c6 --- /dev/null +++ b/_module/nss/zep_cr_docleath1.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_COLOR_LEATHER1, 1); +} diff --git a/_module/nss/zep_cr_docleath2.nss b/_module/nss/zep_cr_docleath2.nss new file mode 100644 index 0000000..5cde377 --- /dev/null +++ b/_module/nss/zep_cr_docleath2.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_COLOR_LEATHER2, 1); +} diff --git a/_module/nss/zep_cr_docmetal1.nss b/_module/nss/zep_cr_docmetal1.nss new file mode 100644 index 0000000..0adfbdb --- /dev/null +++ b/_module/nss/zep_cr_docmetal1.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_COLOR_METAL1, 1); +} diff --git a/_module/nss/zep_cr_docmetal2.nss b/_module/nss/zep_cr_docmetal2.nss new file mode 100644 index 0000000..a23fda3 --- /dev/null +++ b/_module/nss/zep_cr_docmetal2.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_COLOR_METAL2, 1); +} diff --git a/_module/nss/zep_cr_dofoot_l.nss b/_module/nss/zep_cr_dofoot_l.nss new file mode 100644 index 0000000..ca27ecf --- /dev/null +++ b/_module/nss/zep_cr_dofoot_l.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_LFOOT, 83345); +} diff --git a/_module/nss/zep_cr_dofoot_r.nss b/_module/nss/zep_cr_dofoot_r.nss new file mode 100644 index 0000000..e38394f --- /dev/null +++ b/_module/nss/zep_cr_dofoot_r.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_RFOOT, 83346); +} diff --git a/_module/nss/zep_cr_dohand_l.nss b/_module/nss/zep_cr_dohand_l.nss new file mode 100644 index 0000000..25f7d76 --- /dev/null +++ b/_module/nss/zep_cr_dohand_l.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_LHAND, 7145); +} diff --git a/_module/nss/zep_cr_dohand_r.nss b/_module/nss/zep_cr_dohand_r.nss new file mode 100644 index 0000000..e009bfe --- /dev/null +++ b/_module/nss/zep_cr_dohand_r.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_RHAND, 7153); +} diff --git a/_module/nss/zep_cr_doloarm_l.nss b/_module/nss/zep_cr_doloarm_l.nss new file mode 100644 index 0000000..bf1c7d4 --- /dev/null +++ b/_module/nss/zep_cr_doloarm_l.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_LFOREARM, 7152); +} diff --git a/_module/nss/zep_cr_doloarm_r.nss b/_module/nss/zep_cr_doloarm_r.nss new file mode 100644 index 0000000..fa39f16 --- /dev/null +++ b/_module/nss/zep_cr_doloarm_r.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_RFOREARM, 7148); +} diff --git a/_module/nss/zep_cr_doneck.nss b/_module/nss/zep_cr_doneck.nss new file mode 100644 index 0000000..579abbe --- /dev/null +++ b/_module/nss/zep_cr_doneck.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_NECK, 7143); +} diff --git a/_module/nss/zep_cr_dopelvis.nss b/_module/nss/zep_cr_dopelvis.nss new file mode 100644 index 0000000..5d4dbb0 --- /dev/null +++ b/_module/nss/zep_cr_dopelvis.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_PELVIS, 7145); +} diff --git a/_module/nss/zep_cr_dorobe.nss b/_module/nss/zep_cr_dorobe.nss new file mode 100644 index 0000000..0012a6c --- /dev/null +++ b/_module/nss/zep_cr_dorobe.nss @@ -0,0 +1,8 @@ +#include "zep_inc_craft" + +void main() { + object oPC = GetPCSpeaker(); + object oArmor = GetItemInSlot(INVENTORY_SLOT_CHEST, oPC); + ZEP_StartCraft(oPC, oArmor); + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_ROBE, 107993); +} diff --git a/_module/nss/zep_cr_doshin_l.nss b/_module/nss/zep_cr_doshin_l.nss new file mode 100644 index 0000000..0361724 --- /dev/null +++ b/_module/nss/zep_cr_doshin_l.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_LSHIN, 83348); +} diff --git a/_module/nss/zep_cr_doshin_r.nss b/_module/nss/zep_cr_doshin_r.nss new file mode 100644 index 0000000..f3ed41b --- /dev/null +++ b/_module/nss/zep_cr_doshin_r.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_RSHIN, 83349); +} diff --git a/_module/nss/zep_cr_doshold_l.nss b/_module/nss/zep_cr_doshold_l.nss new file mode 100644 index 0000000..966f83e --- /dev/null +++ b/_module/nss/zep_cr_doshold_l.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_LSHOULDER, 7150); +} diff --git a/_module/nss/zep_cr_doshold_r.nss b/_module/nss/zep_cr_doshold_r.nss new file mode 100644 index 0000000..b7bf9f2 --- /dev/null +++ b/_module/nss/zep_cr_doshold_r.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_RSHOULDER, 7146); +} diff --git a/_module/nss/zep_cr_dothigh_l.nss b/_module/nss/zep_cr_dothigh_l.nss new file mode 100644 index 0000000..a5b3dda --- /dev/null +++ b/_module/nss/zep_cr_dothigh_l.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_LTHIGH, 83350); +} diff --git a/_module/nss/zep_cr_dothigh_r.nss b/_module/nss/zep_cr_dothigh_r.nss new file mode 100644 index 0000000..d29300a --- /dev/null +++ b/_module/nss/zep_cr_dothigh_r.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_RTHIGH, 83351); +} diff --git a/_module/nss/zep_cr_dotorso.nss b/_module/nss/zep_cr_dotorso.nss new file mode 100644 index 0000000..f14add4 --- /dev/null +++ b/_module/nss/zep_cr_dotorso.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_ARMOR_MODEL_TORSO, 7144); +} diff --git a/_module/nss/zep_cr_dowbottom.nss b/_module/nss/zep_cr_dowbottom.nss new file mode 100644 index 0000000..e0db4da --- /dev/null +++ b/_module/nss/zep_cr_dowbottom.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_WEAPON_MODEL_BOTTOM, 84542); +} diff --git a/_module/nss/zep_cr_dowmiddle.nss b/_module/nss/zep_cr_dowmiddle.nss new file mode 100644 index 0000000..fbbf67f --- /dev/null +++ b/_module/nss/zep_cr_dowmiddle.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_WEAPON_MODEL_MIDDLE, 84541); +} diff --git a/_module/nss/zep_cr_dowtop.nss b/_module/nss/zep_cr_dowtop.nss new file mode 100644 index 0000000..23d4010 --- /dev/null +++ b/_module/nss/zep_cr_dowtop.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_SetPart(GetPCSpeaker(), ITEM_APPR_WEAPON_MODEL_TOP, 84540); +} diff --git a/_module/nss/zep_cr_fail.nss b/_module/nss/zep_cr_fail.nss new file mode 100644 index 0000000..df0b0d3 --- /dev/null +++ b/_module/nss/zep_cr_fail.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +int StartingConditional() { + return (GetLocalInt(GetPCSpeaker(), "ZEP_CR_DONE") == ZEP_CR_DONE_FAILED); +} diff --git a/_module/nss/zep_cr_fail_dye.nss b/_module/nss/zep_cr_fail_dye.nss new file mode 100644 index 0000000..688e08b --- /dev/null +++ b/_module/nss/zep_cr_fail_dye.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +int StartingConditional() { + return (GetLocalInt(GetPCSpeaker(), "ZEP_CR_DONE") == ZEP_CR_DONE_NODYE); +} diff --git a/_module/nss/zep_cr_fail_gold.nss b/_module/nss/zep_cr_fail_gold.nss new file mode 100644 index 0000000..12ae114 --- /dev/null +++ b/_module/nss/zep_cr_fail_gold.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +int StartingConditional() { + return (GetLocalInt(GetPCSpeaker(), "ZEP_CR_DONE") == ZEP_CR_DONE_NOGOLD); +} diff --git a/_module/nss/zep_cr_nextcolor.nss b/_module/nss/zep_cr_nextcolor.nss new file mode 100644 index 0000000..fb35f09 --- /dev/null +++ b/_module/nss/zep_cr_nextcolor.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_RecolorItem(GetPCSpeaker(), ZEP_CR_COLOR_NEXT); +} diff --git a/_module/nss/zep_cr_nextpart.nss b/_module/nss/zep_cr_nextpart.nss new file mode 100644 index 0000000..50e7d8f --- /dev/null +++ b/_module/nss/zep_cr_nextpart.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_RemakeItem(GetPCSpeaker(), ZEP_CR_PART_NEXT); +} diff --git a/_module/nss/zep_cr_nocheat.nss b/_module/nss/zep_cr_nocheat.nss new file mode 100644 index 0000000..130cef1 --- /dev/null +++ b/_module/nss/zep_cr_nocheat.nss @@ -0,0 +1,22 @@ +void ZEP_PurifyItem(object oItem) { + if (GetLocalInt(oItem, "ZEP_CR_TEMPITEM")) { + PrintString("Destroyed: "+GetName(oItem)); + DestroyObject(oItem); + } +} + +void main() { + object oPC = GetEnteringObject(); + if (GetLocalInt(oPC, "ZEP_CR_STARTED")) { + ZEP_PurifyItem(GetItemInSlot(INVENTORY_SLOT_CHEST, oPC)); + ZEP_PurifyItem(GetItemInSlot(INVENTORY_SLOT_HEAD, oPC)); + ZEP_PurifyItem(GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC)); + ZEP_PurifyItem(GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oPC)); + object oItem = GetFirstItemInInventory(oPC); + while (GetIsObjectValid(oItem)) { + ZEP_PurifyItem(oItem); + oItem = GetNextItemInInventory(oPC); + } + DeleteLocalInt(oPC, "ZEP_CR_STARTED"); + } +} diff --git a/_module/nss/zep_cr_prevcolor.nss b/_module/nss/zep_cr_prevcolor.nss new file mode 100644 index 0000000..45c3ef0 --- /dev/null +++ b/_module/nss/zep_cr_prevcolor.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_RecolorItem(GetPCSpeaker(), ZEP_CR_COLOR_PREV); +} diff --git a/_module/nss/zep_cr_prevpart.nss b/_module/nss/zep_cr_prevpart.nss new file mode 100644 index 0000000..0ce2f09 --- /dev/null +++ b/_module/nss/zep_cr_prevpart.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_RemakeItem(GetPCSpeaker(), ZEP_CR_PART_PREV); +} diff --git a/_module/nss/zep_cr_start_ca.nss b/_module/nss/zep_cr_start_ca.nss new file mode 100644 index 0000000..b90c326 --- /dev/null +++ b/_module/nss/zep_cr_start_ca.nss @@ -0,0 +1,7 @@ +#include "zep_inc_craft" + +void main() { + object oPC = GetPCSpeaker(); + object oArmor = GetItemInSlot(INVENTORY_SLOT_CHEST, oPC); + ZEP_StartCraft(oPC, oArmor); +} diff --git a/_module/nss/zep_cr_start_ch.nss b/_module/nss/zep_cr_start_ch.nss new file mode 100644 index 0000000..ceadd10 --- /dev/null +++ b/_module/nss/zep_cr_start_ch.nss @@ -0,0 +1,8 @@ +#include "zep_inc_craft" + +void main() { + object oPC = GetPCSpeaker(); + object oHelmet = GetItemInSlot(INVENTORY_SLOT_HEAD, oPC); + ZEP_StartCraft(oPC, oHelmet); + ZEP_SetPart(oPC, ZEP_CR_HELMET, 182); +} diff --git a/_module/nss/zep_cr_start_cs.nss b/_module/nss/zep_cr_start_cs.nss new file mode 100644 index 0000000..f77bbfa --- /dev/null +++ b/_module/nss/zep_cr_start_cs.nss @@ -0,0 +1,8 @@ +#include "zep_inc_craft" + +void main() { + object oPC = GetPCSpeaker(); + object oShield = GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oPC); + ZEP_StartCraft(oPC, oShield); + ZEP_SetPart(oPC, ZEP_CR_SHIELD, 57); +} diff --git a/_module/nss/zep_cr_start_cw.nss b/_module/nss/zep_cr_start_cw.nss new file mode 100644 index 0000000..664a00d --- /dev/null +++ b/_module/nss/zep_cr_start_cw.nss @@ -0,0 +1,7 @@ +#include "zep_inc_craft" + +void main() { + object oPC = GetPCSpeaker(); + object oArmor = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); + ZEP_StartCraft(oPC, oArmor); +} diff --git a/_module/nss/zep_cr_stop_abrt.nss b/_module/nss/zep_cr_stop_abrt.nss new file mode 100644 index 0000000..fac0bbc --- /dev/null +++ b/_module/nss/zep_cr_stop_abrt.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_StopCraft(GetPCSpeaker(), FALSE); +} diff --git a/_module/nss/zep_cr_stop_make.nss b/_module/nss/zep_cr_stop_make.nss new file mode 100644 index 0000000..faf1782 --- /dev/null +++ b/_module/nss/zep_cr_stop_make.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +void main() { + ZEP_StopCraft(GetPCSpeaker(), TRUE); +} diff --git a/_module/nss/zep_cr_success.nss b/_module/nss/zep_cr_success.nss new file mode 100644 index 0000000..ec4ecb6 --- /dev/null +++ b/_module/nss/zep_cr_success.nss @@ -0,0 +1,5 @@ +#include "zep_inc_craft" + +int StartingConditional() { + return (GetLocalInt(GetPCSpeaker(), "ZEP_CR_DONE") == ZEP_CR_DONE_SUCCESS); +} diff --git a/_module/nss/zep_inc_craft.nss b/_module/nss/zep_inc_craft.nss new file mode 100644 index 0000000..6d3d0e3 --- /dev/null +++ b/_module/nss/zep_inc_craft.nss @@ -0,0 +1,1160 @@ +//::////////////////////////////////////////////// +//:: Completely redone Armor and Weapon redesign functions +//:: Further redone by Loki Hakanin +//:: zep_inc_craft +//::////////////////////////////////////////////// +/* + This is a complete rework of the Armor- and Weaponcrafting skill + No existing scripts are overridden or replaced, only the conversation + x0_skill_ctrap needs to be replaced to activate the custom crafting. + + Original scripts written by SartriX + Modified for inclusion in the CEP by Loki Hakanin + Note from Loki: In general, all comments I've added + will be labeled as "Note from Loki". + + Additions to the original Bioware scripts: + - Bugs fixed + - Enhanced performance + - Support for custom armor- and weaponmodels + - Helmet and Shield crafting added + + Note from Loki: Do not have a decent server handy to + test the below out on. If the zep_cr_nocheat script is + used either as an "OnEnter" script for a module/server, + or executed therein, it should stop this exploit. This + function is 100% SartriX's original, as since I have not + tested it, I do not know if it needs modification. + - Counters the 'double item' exploit ! + + Note from Loki: Optional Features: Can be enabled + by enabling flags. Bottom 2 use SartriX's original + code, but just with renamed variables and the like to + conform to CEP naming convention. + - Reworked Cost and DC + - Use of crafting placeables (like Forge) + - Use of NPC crafters + + Modifications and enhancements by Loki Hakanin- + - Fixed errors in logic of conditional statements + causing them not to function when a PC attempts + crafting by themselves (with the "require + placble" flag set to FALSE). + - Added code to next/previous cyclying segments to + enhance robustness-functions can now handle + irregular inputs-that is to say, custom models + that aren't all 100% identical to Bioware + numbering conventions (e.g. more than 3 + appearances/colors for a given shield index, more + than 4 for weapons). + - Fixed coding error causing shield alterations to require + dyes. + - Added support for new CEP weapon types. + - Fixed error causing incorrect display of leg options + - Fixed glitch preventing remodelling of hand axes. + + To be Added Later: + - Built in color selection for armor and helmets (optional flag) + + Note from Loki: Note that the code for coloring and + the like is still here, I have merely temporarily + disabled it, by and large For CEP R1, we wanted + things to work just like Bioware's code where we were + replacing/updating code to work with custom content. + Also, as the dynamic color alteration requires + addiitonal item blueprints (the full dyeset), there + was concern this would make default Bioware dyes + useless, violating the CEP's "harm no existing content" + rule. This code and these items will be re-worked in a + later release to integrate with the original Bioware + dyes. + + This crafting system was originally made by SartriX + His original scriptset has been posted on nwvault: + - http://nwvault.ign.com/Files/scripts/data/1071920548260.shtml + +*/ +//::////////////////////////////////////////////// +//:: Created By: SartriX(original version) +//:: Modified by Loki Hakanin +//:: Created On(original version): 16-dec-2003 +//:: Updated On(original version): 16-jan-2004 +//:: Updated/Modified by Loki: 26-Feb-2004 +//::////////////////////////////////////////////// + + +#include "x2_inc_craft" +#include "zep_inc_main" + +// Set to FALSE to disable the requirement of the proper placeable to be near the PC +const int ZEP_CR_REQUIRE_PLACEABLE = FALSE; +//Tag of crafting placeable +const string ZEP_CR_PLACEABLE_TAG = "zep_cr_craftplace"; +// Maximum distance to a crafting placeable +const float ZEP_CR_REQUIRED_DISTANCE = 4.0f; + +// Set to FALSE to disable the requirement and use of dyes when recolouring +const int ZEP_CR_REQUIRE_DYES = FALSE; + +// Maximum cost in percent of the item's original valie at all times regardless of any other settings +const int ZEP_CR_MAXCOST = 90; +// Percentage of cost for each part of a weapon (3 parts max) or a helmet/shield (1 part max) +const int ZEP_CR_PARTCOST = 20; +// Added percentage of cost for dye changes by NPC +const int ZEP_CR_NPCDYECOST = 1; +// Percentage it costs to craft one self compared to what a NPC would ask for the same +// NPC cost is always 100% of the CraftCost in des_crft_aparts.2da +const int ZEP_CR_SELFCRAFT = 70; +// The DC that's added to craft magical items. This DC is added for each magical property it has +const int ZEP_CR_DCADD = 2; + +// Tag of the backup container +// One is supplied as custom placeable (custom -> special -> custom5 -> zep_cr_backup) +// and should be placed on a preferrably inaccessible location. If the container can not be found, +// the backup item will be added to the PC's inventory, it won't break the entire script. +// Note from Loki: I've altered this implementatoin as well. +// Following Bioware's example, I spawn and make invisible a crafting container +// if I find none in the module. Difference being, I delete +// it at the end of crafting, for completeness's sake. +const string ZEP_CR_BACKUP_PLACEABLE = "zep_cr_backup"; + +// Internal constants, do not touch! +const int ZEP_CR_DONE_SUCCESS = 1; +const int ZEP_CR_DONE_FAILED = 2; +const int ZEP_CR_DONE_NOGOLD = 3; +const int ZEP_CR_DONE_NODYE = 4; + +const int ZEP_CR_PART_NEXT = 0; +const int ZEP_CR_PART_PREV = 1; +const int ZEP_CR_COLOR_NEXT = 3; +const int ZEP_CR_COLOR_PREV = 4; + +const int ZEP_CR_TOKENBASE = 20000; + +const int ZEP_CR_HELMET = 8888; +const int ZEP_CR_SHIELD = 8889; + +//Note from Loki: Above constants were all from +//the original script. Have simply been renamed to +//keep them consistent with CEP nomenclature. +//Constants declared below are my own additions: + +//This constant controls whether SartriX's modified +//DC and costs are used. By default, it is FALSE +//(using Bioware defaults instead). Re-enabling it +//will use the costs in the des_crft_aparts.2da +//file instead. +const int ZEP_USE_OPTIONAL_DC_COST = FALSE; + +//Following constants added when we removed the NumParts +//alterations from the des_crafts_aparts.2da file. This was +//done so people using the default NWN crafting system with +//the CEP would not have a very long set of armors that +//would have blank entries (all the lines in the armor +//2DA files from the last Bioware to the first CEP entry). +//These constants define the max "numparts" in place of the +//2DA files +//Note that weapons and helmets still read the baseitems +//file correctly, or have no problems with the default Bioware +//craft system. Shields, of course, are only craftable with +//a custom script, so they are not included as the below is +//a "legacy compatibility" change. + +const int ZEP_MAX_PARTS_NECK = 255; +const int ZEP_MAX_PARTS_SHOULDER = 255; +const int ZEP_MAX_PARTS_BICEP = 255; +const int ZEP_MAX_PARTS_FOREARM = 255; +const int ZEP_MAX_PARTS_HAND = 255; +const int ZEP_MAX_PARTS_TORSO = 255; +const int ZEP_MAX_PARTS_BELT = 255; +const int ZEP_MAX_PARTS_PELVIS = 255; +const int ZEP_MAX_PARTS_THIGH = 255; +const int ZEP_MAX_PARTS_SHIN = 255; +const int ZEP_MAX_PARTS_FOOT = 255; +const int ZEP_MAX_PARTS_ROBE = 255; + + +// - End of constants - // + + +// Sets up everything for oPC to start crafting on oItem +void ZEP_StartCraft(object oPC, object oItem); + +// Tries to let oPC perform the crafting of his current item +// Will set the localvar ZEP_CR_DONE on success or fail with one +// of the following values to check with a conditional script: +// ZEP_CR_DONE_SUCCESS +// ZEP_CR_DONE_FAILED +// ZEP_CR_DONE_NOGOLD +// ZEP_CR_DONE_NODYE +void ZEP_AttemptCraft(object oPC); + +// Stops crafting and cleans up everything set by the crafting script +// When nExecute is FALSE, it will abort the craft, +// when it's TRUE, it will replace the old item with the new one. +void ZEP_StopCraft(object oPC, int nExecute=FALSE); + +// Sets the current part oPC is working on +// It accepts all 4 partseries ITEM_APPR_ARMOR_MODEL_*, +// ITEM_APPR_WEAPON_MODEL_*, ITEM_APPR_ARMOR_COLOR_*, ITEM_APPR_WEAPON_COLOR_* +// as long as the proper item has been set to craft on +// Focusses the camery on the selected part (if applicable) +void ZEP_SetPart(object oPC, int nPart, int nStrRef); + +// Gets the cost to modify oItem into oNew +// Calls the default bioware routines for this, edit this function to override +int ZEP_GetModificationCost(object oItem, object oNew, int nNPC=FALSE); + +// Gets the DC to modify oItem into oNew +// Calls the default bioware routines for this, edit this function to override +int ZEP_GetModificationDC(object oItem, object oNew, int nNPC=FALSE); + +// Remakes and equips the item oPC is working, having the currently set part +// cycled either forward or backward +// nMode: ZEP_CR_PART_NEXT - cycle forward +// nMode: ZEP_CR_PART_PREV - cycle backward +void ZEP_RemakeItem(object oPC, int nMode); + +// Remakes and equips the item oPC is working, having the currently set color +// cycled either forward or backward +// nMode: ZEP_CR_COLOR_NEXT - cycle forward +// nMode: ZEP_CR_COLOR_PREV - cycle backward +void ZEP_RecolorItem(object oPC, int nMode); + +//Function Added by Loki +//Decided to do container checks dynamically and have it +//construct a work container as necessary. This closely +//mirrors Bioware's Own implementation. +object ZEP_GetZEPWorkContainer(object oCaller); + +//Function added by Loki +//Below function used as a substitution for the +//IPGetNumberOfArmorAppearances function in the CEP code. +//This is done because the max NumParts is coded as a +//constant to ensure compatibility with "vanilla' NWN. +int ZEP_GetNumberOfArmorAppearances(int nPart); + + +// - Implementation - // + + +// Sets up everything for oPC to start crafting on oItem +void ZEP_StartCraft(object oPC, object oItem) { + // Immobilize player while crafting + effect eImmob = EffectCutsceneImmobilize(); + eImmob = ExtraordinaryEffect(eImmob); + ApplyEffectToObject(DURATION_TYPE_PERMANENT,eImmob,oPC); + + // Make the camera float near the PC + StoreCameraFacing(); + float fFacing = GetFacing(oPC) + 180.0; + if (fFacing >= 360.0) fFacing -=360.0; + SetCameraFacing(fFacing, 3.5f, 75.0, CAMERA_TRANSITION_TYPE_FAST); + + // Make backup + // Note from Loki: Changed implemenation to stash item in container ALWAYS. + // ZEP_GetZEPWorkContainer will create container if needs be. + object oBackup = CopyItem(oItem, ZEP_GetZEPWorkContainer(OBJECT_SELF), TRUE); + SetLocalObject(oPC, "ZEP_CR_BACKUP", oBackup); + + // Mark temporary item + SetStolenFlag(oItem, TRUE); + SetLocalInt(oItem, "ZEP_CR_TEMPITEM", TRUE); + SetLocalObject(oPC, "ZEP_CR_ITEM", oItem); + + // Preset settings + SetLocalInt(oPC, "ZEP_CR_STARTED", 1); + SetLocalInt(oPC, "ZEP_CR_COST", 0); + SetLocalInt(oPC, "ZEP_CR_DC", 0); + SetLocalInt(oPC, "ZEP_CR_DONE", 0); + SetLocalInt(oPC, "ZEP_CR_CHANGED", FALSE); + SetCustomToken(ZEP_CR_TOKENBASE, ""); + SetCustomToken(ZEP_CR_TOKENBASE+1, "0"); + SetCustomToken(ZEP_CR_TOKENBASE+2, "0"); + SetCustomToken(ZEP_CR_TOKENBASE+3, ""); +} + +// - private - +// Checks if the color for nIndex has changed, if not returns TRUE +// if it has, checks if oPC has the new dye and returns TRUE when he has +// returns FALSE and sets CUSTOM20003 when the required dye is not present +int ZEP_ColorCheck(object oPC, object oItem, object oBackup, int nType, int nIndex) { + // if required dyes are disabled, always return TRUE + if (!ZEP_CR_REQUIRE_DYES) return TRUE; + + // get new color + int nColor = GetItemAppearance(oItem, nType, nIndex); + string sDyeTag = "Dye"; + + if (nColor != GetItemAppearance(oBackup, nType, nIndex)) { + // color has changed, build the tag for the required dye + if (nType == ITEM_APPR_TYPE_ARMOR_COLOR) { + switch(nIndex) { + case ITEM_APPR_ARMOR_COLOR_CLOTH1: + case ITEM_APPR_ARMOR_COLOR_CLOTH2: sDyeTag+= "C"; break; + case ITEM_APPR_ARMOR_COLOR_LEATHER1: + case ITEM_APPR_ARMOR_COLOR_LEATHER2: sDyeTag+= "L"; break; + case ITEM_APPR_ARMOR_COLOR_METAL1: + case ITEM_APPR_ARMOR_COLOR_METAL2: sDyeTag+= "M"; + if (nColor>55 && nColor<60) nColor-=4; break; // translate missing/double metal colors + } + if (nColor<10) sDyeTag+= "0"; + sDyeTag+= IntToString(nColor); + } else { + switch (nColor) { + case 1: sDyeTag+= "M01"; break; // Steel + case 2: sDyeTag+= "M13"; break; // Gold + case 3: sDyeTag+= "M21"; break; // Copper + case 4: sDyeTag+= "M02"; break; // Dark Steel + } + } + if (GetIsObjectValid(GetItemPossessedBy(oPC, sDyeTag))) { + // oPC has the dye, so this color is alright + SetLocalString(oPC, "ZEP_CR_DYES", GetLocalString(oPC, "ZEP_CR_DYES") + sDyeTag + ":"); + return TRUE; + } else { + // oPC does not have the dye, tell which dye is missing + if (GetName(GetObjectByTag(sDyeTag))=="") SpeakString("Missing dye/name: "+sDyeTag); + SetCustomToken(ZEP_CR_TOKENBASE+3, GetName(GetObjectByTag(sDyeTag))); + return FALSE; + } + } + return TRUE; +} + +// Tries to let oPC perform the crafting of his current item +// Will set the localvar ZEP_CR_DONE on success or fail with one +// of the following values to check with a conditional script: +// ZEP_CR_DONE_SUCCESS +// ZEP_CR_DONE_FAILED +// ZEP_CR_DONE_NOGOLD +// ZEP_CR_DONE_NODYE +void ZEP_AttemptCraft(object oPC) { + // don't reattempt a previously craftattempt + if (GetLocalInt(oPC, "ZEP_CR_DONE")>0) return; + + // get current item and backup + object oItem = GetLocalObject(oPC, "ZEP_CR_ITEM"); + object oBackup = GetLocalObject(oPC, "ZEP_CR_BACKUP"); + int nNPC = GetIsObjectValid(GetLocalObject(oPC, "ZEP_CR_NPC")); + int nCost = ZEP_GetModificationCost(oBackup, oItem, nNPC); + int nDC = ZEP_GetModificationDC(oBackup, oItem, nNPC); + int nSkill; + + if (GetGold(oPC)55 && nColor<60) nColor-=4; break; // translate missing/double metal colors + } + if (nColor<10) sDyeTag+= "0"; + sDyeTag+= IntToString(nColor); + SetCustomToken(ZEP_CR_TOKENBASE+3, GetName(GetObjectByTag(sDyeTag))); +} + +// Sets the current part oPC is working on +// It accepts all 4 partseries ITEM_APPR_ARMOR_MODEL_*, +// ITEM_APPR_WEAPON_MODEL_*, ITEM_APPR_ARMOR_COLOR_*, ITEM_APPR_WEAPON_COLOR_* +// as long as the proper item has been set to craft on +// Focusses the camery on the selected part (if applicable) +void ZEP_SetPart(object oPC, int nPart, int nStrRef) { + SetLocalInt(oPC, "ZEP_CR_PART", nPart); + object oItem = GetLocalObject(oPC, "ZEP_CR_ITEM"); + + // * Make the camera float near the PC + float fFacing = GetFacing(oPC) + 180.0; + float fPitch = 75.0; + float fDistance= 3.5; + + if (GetBaseItemType(oItem)==BASE_ITEM_ARMOR) { + switch (nPart) { + case ITEM_APPR_ARMOR_MODEL_LBICEP: + case ITEM_APPR_ARMOR_MODEL_LFOREARM: + case ITEM_APPR_ARMOR_MODEL_LHAND: + case ITEM_APPR_ARMOR_MODEL_LSHOULDER: + case ITEM_APPR_ARMOR_MODEL_LTHIGH: + case ITEM_APPR_ARMOR_MODEL_LSHIN: + case ITEM_APPR_ARMOR_MODEL_LFOOT: fFacing += 60.0; break; + case ITEM_APPR_ARMOR_MODEL_RBICEP: + case ITEM_APPR_ARMOR_MODEL_RFOREARM: + case ITEM_APPR_ARMOR_MODEL_RHAND: + case ITEM_APPR_ARMOR_MODEL_RSHOULDER: + case ITEM_APPR_ARMOR_MODEL_RTHIGH: + case ITEM_APPR_ARMOR_MODEL_RSHIN: + case ITEM_APPR_ARMOR_MODEL_RFOOT: fFacing -= 60.0; break; + } + switch (nPart) { + case ITEM_APPR_ARMOR_MODEL_LBICEP: + case ITEM_APPR_ARMOR_MODEL_RBICEP: + case ITEM_APPR_ARMOR_MODEL_LFOOT: + case ITEM_APPR_ARMOR_MODEL_RFOOT: fDistance = 3.5; fPitch = 47.0; break; + case ITEM_APPR_ARMOR_MODEL_LFOREARM: + case ITEM_APPR_ARMOR_MODEL_RFOREARM: + case ITEM_APPR_ARMOR_MODEL_LHAND: + case ITEM_APPR_ARMOR_MODEL_RHAND: fDistance = 2.0; fPitch = 60.0; break; + case ITEM_APPR_ARMOR_MODEL_LSHIN: + case ITEM_APPR_ARMOR_MODEL_RSHIN: fDistance = 3.5; fPitch = 95.0; break; + case ITEM_APPR_ARMOR_MODEL_LSHOULDER: + case ITEM_APPR_ARMOR_MODEL_RSHOULDER: fDistance = 3.0; fPitch = 50.0; break; + case ITEM_APPR_ARMOR_MODEL_LTHIGH: + case ITEM_APPR_ARMOR_MODEL_RTHIGH: fDistance = 2.5; fPitch = 65.0; break; + case ITEM_APPR_ARMOR_MODEL_NECK: fPitch = 90.0; break; + case ITEM_APPR_ARMOR_MODEL_BELT: + case ITEM_APPR_ARMOR_MODEL_PELVIS: fDistance = 2.0; break; + } + } else if (nPart==ZEP_CR_HELMET) { + fDistance = 2.5; + fPitch = 85.0; + } else if (nPart==ZEP_CR_SHIELD) { + fFacing += 60.0; + fDistance = 3.0; + fPitch = 65.0; + } else { + fFacing -= 60.0; + fDistance = 3.0; + fPitch = 65.0; + } + if (fFacing >= 360.0) fFacing -=360.0; + if (GetRacialType(oPC) == RACIAL_TYPE_HALFORC) fDistance += 1.0f; + SetCameraFacing(fFacing, fDistance, fPitch, CAMERA_TRANSITION_TYPE_VERY_FAST); + + int nCost = GetLocalInt(oPC, "ZEP_CR_COST"); + int nDC = GetLocalInt(oPC, "ZEP_CR_DC"); + SetCustomToken(ZEP_CR_TOKENBASE, GetStringByStrRef(nStrRef)); + SetCustomToken(ZEP_CR_TOKENBASE+1, IntToString(nCost)); + SetCustomToken(ZEP_CR_TOKENBASE+2, IntToString(nDC)); + ZEP_SetColorToken(nPart, GetItemAppearance(oItem, ITEM_APPR_TYPE_ARMOR_COLOR, nPart)); + +} + +// - private - +// Gets the cost to modify oItem into oNew +int ZEP_GetModificationCost(object oItem, object oNew, int nNPC=FALSE) { + int nCost = 0; + int nChanges = -1; + int nPart; + float fFactor; + //Note from Loki: Below segment's logical flow modified + //from original. As SartriX had used differing DC and + //cost values from Bioware, defined in des_crft_aparts.2da, + //this conflicted with the CEP's "play nice with Bioware" + //policy. + //I have left this functionality in, but you must enable + //a flag in the constants section of this file to turn it + //on. Otherwise, default Bioware costs will be used. + //Note that helmets and shields will ALWAYS default to + //using this case, as there is no Bioware code to emulate + //in their case. + if ((ZEP_USE_OPTIONAL_DC_COST == TRUE) || (GetBaseItemType(oItem)==BASE_ITEM_HELMET) || (GetBaseItemType(oItem)== BASE_ITEM_LARGESHIELD) || (GetBaseItemType(oItem)== BASE_ITEM_SMALLSHIELD) || (GetBaseItemType(oItem)== BASE_ITEM_TOWERSHIELD) ) + { + // Find and count changes + if (GetBaseItemType(oItem)==BASE_ITEM_ARMOR) { + for (nPart = 0; nPart<=ITEM_APPR_ARMOR_MODEL_ROBE; nPart++) { + if (GetItemAppearance(oItem, ITEM_APPR_TYPE_ARMOR_MODEL, nPart) != GetItemAppearance(oNew, ITEM_APPR_TYPE_ARMOR_MODEL, nPart)) { + // Part changed, add price factor + nCost += StringToInt(Get2DAString("des_crft_aparts", "CraftCost", nPart)); + nChanges++; + } + } + } else { + for (nPart = 0; nPart<3; nPart++) { + if (GetItemAppearance(oItem, ITEM_APPR_TYPE_WEAPON_MODEL, nPart) != GetItemAppearance(oNew, ITEM_APPR_TYPE_WEAPON_MODEL, nPart)) { + // Part changed, add price factor + nCost += ZEP_CR_PARTCOST; + nChanges++; + } + } + nChanges *= 5; + } + // More as 1 part changed, give a 'discount' + if (nChanges>0) nCost -= nChanges; + // Reworked item may not cost more as 90% of a brand new one + if (nCost>ZEP_CR_MAXCOST) nCost = ZEP_CR_MAXCOST; + if (nNPC) { + // If made by a NPC, charge for the dyes + if (GetBaseItemType(oItem)==BASE_ITEM_ARMOR) { + for (nPart = 0; nPart<=ITEM_APPR_ARMOR_MODEL_ROBE; nPart++) { + if (GetItemAppearance(oItem, ITEM_APPR_TYPE_ARMOR_COLOR, nPart) != GetItemAppearance(oNew, ITEM_APPR_TYPE_ARMOR_COLOR, nPart)) { + // Part changed, add price factor + nCost += ZEP_CR_NPCDYECOST; + } + } + } else { + for (nPart = 0; nPart<3; nPart++) { + if (GetItemAppearance(oItem, ITEM_APPR_TYPE_WEAPON_COLOR, nPart) != GetItemAppearance(oNew, ITEM_APPR_TYPE_WEAPON_COLOR, nPart)) { + // Part changed, add price factor + nCost += ZEP_CR_NPCDYECOST; + } + } + } + fFactor = IntToFloat(nCost) / 100.0; + } else { + // If made by the PC himself, the price is 70% of what an NPC would ask him + fFactor = IntToFloat(nCost * ZEP_CR_SELFCRAFT) / 10000.0; + } + // Calculate and return final cost + nCost = FloatToInt(IntToFloat(GetGoldPieceValue(oItem)) * fFactor); + if (nCost<1) nCost=1; + } + else //Use base Bioware costs for armor and weapons unless told otherwise. + { + int nItemType=GetBaseItemType(oItem); + if (nItemType == BASE_ITEM_ARMOR) + { + nPart=GetLocalInt(GetPCSpeaker(),"ZEP_CR_PART"); + if (nPart==ITEM_APPR_ARMOR_MODEL_ROBE) + nCost=0; + else nCost=CIGetArmorModificationCost(oItem,oNew); + } + else nCost=CIGetWeaponModificationCost(oItem,oNew); + } + return nCost; +} + +// - private - +// Gets the DC to modify oItem into oNew +int ZEP_GetModificationDC(object oItem, object oNew, int nNPC=FALSE) { + if (nNPC) return 0; + int nDC=0; + int nChanges = -1; + int nPart; + float fFactor; + + //Note from Loki: Below segment's logical flow modified + //from original. As SartriX had used differing DC and + //cost values from Bioware, defined in des_crft_aparts.2da, + //this conflicted with the CEP's "play nice with Bioware" + //policy. + //I have left this functionality in, but you must enable + //a flag in the constants section of this file to turn it + //on. Otherwise, default Bioware costs/DC will be used. + //Note that helmets and shields will ALWAYS default to + //using this case, as there is no Bioware code to emulate + //in their case. + + if ((ZEP_USE_OPTIONAL_DC_COST == TRUE) || (GetBaseItemType(oItem)==BASE_ITEM_HELMET) || (GetBaseItemType(oItem)== BASE_ITEM_LARGESHIELD) || (GetBaseItemType(oItem)== BASE_ITEM_SMALLSHIELD) || (GetBaseItemType(oItem)== BASE_ITEM_TOWERSHIELD) ) + { + // Find and count changes + if (GetBaseItemType(oItem)==BASE_ITEM_ARMOR) { + for (nPart = 0; nPart<=ITEM_APPR_ARMOR_MODEL_ROBE; nPart++) { + if (GetItemAppearance(oItem, ITEM_APPR_TYPE_ARMOR_MODEL, nPart) != GetItemAppearance(oNew, ITEM_APPR_TYPE_ARMOR_MODEL, nPart)) { + // Part changed, add DC factor + nDC += StringToInt(Get2DAString("des_crft_aparts", "CraftDC", nPart)); + nChanges++; + } + } + } else { + for (nPart = 0; nPart<3; nPart++) { + if (GetItemAppearance(oItem, ITEM_APPR_TYPE_WEAPON_MODEL, nPart) != GetItemAppearance(oNew, ITEM_APPR_TYPE_WEAPON_MODEL, nPart)) { + // Part changed, add DC factor + nDC += 6; + nChanges++; + } + } + nChanges *= 2; + } + // More as 1 part changed, give a 'discount' + if (nChanges>0) nDC -= nChanges; + itemproperty iP = GetFirstItemProperty(oItem); + while (GetIsItemPropertyValid(iP)) { + nDC += ZEP_CR_DCADD; + iP = GetNextItemProperty(oItem); + } + } + else + { + if (GetBaseItemType(oItem)==BASE_ITEM_ARMOR) + { + nPart=GetLocalInt(GetPCSpeaker(),"ZEP_CR_PART"); + if (nPart==ITEM_APPR_ARMOR_MODEL_ROBE) + nDC=0; + else nDC=CIGetArmorModificationDC(oItem,oNew); + } + else nDC=15; //This value pulled directly from Bioware scripts. + } + return nDC; + +} + +// - private - +// Reverses a : seperated stringlist +string ZEP_ListReverse(string s) { + string sCache; + int n; + int l = GetStringLength(s); + s = GetSubString(s, 1, l); + while (s!="") { + // take string upto next seperator and put this in front of cache + n = FindSubString(s, ":")+1; + sCache = GetStringLeft(s, n) + sCache; + s = GetSubString(s, n, l); + } + return ":"+sCache; +} + +// - private - +// Prereads the parts_chest.2da-file for sAC and puts all used ID's in a : seperated stringlist +string ZEP_PreReadArmorACList(string sAC) { + // pick the right 2da to read the parts from + string s2DA = "parts_chest"; + string sCache= ":"; + string sLine; + // get the maxID used (not the amount of ID's !!!) + //int nMax = IPGetNumberOfArmorAppearances(ITEM_APPR_ARMOR_MODEL_TORSO); + //Note from Loki: Below line changed to make use of + //backward compatibility function. Was previously the + //preceding line. + int nMax = ZEP_GetNumberOfArmorAppearances(ITEM_APPR_ARMOR_MODEL_TORSO); + int n=1; + sAC = GetStringLeft(sAC, 1); + while (n<=nMax) { + // Verify validity of the ID and add to the list + sLine = Get2DAString(s2DA, "ACBONUS", n); + if (GetStringLeft(sLine, 1)==sAC) { + sCache+= IntToString(n)+":"; + } + n++; + } + // Store the list in a modulestring, once normal, once reversed, both with ID 0 added as first index for cycling + SetLocalString(GetModule(), "ZEP_IDPreReadAC_"+GetStringLeft(sAC,1), sCache); + SetLocalString(GetModule(), "ZEP_IDPreReadACR_"+GetStringLeft(sAC,1), ZEP_ListReverse(sCache)); + + return sCache; +} + +// - private - +// Prereads the 2da-file for nPart and puts all used ID's in a : seperated stringlist +string ZEP_PreReadArmorPartList(int nPart) { + // pick the right 2da to read the parts from + string s2DA = "parts_"; + switch (nPart) { + case ITEM_APPR_ARMOR_MODEL_LBICEP: + case ITEM_APPR_ARMOR_MODEL_RBICEP: s2DA+= "bicep"; break; + case ITEM_APPR_ARMOR_MODEL_LFOOT: + case ITEM_APPR_ARMOR_MODEL_RFOOT: s2DA+= "foot"; break; + case ITEM_APPR_ARMOR_MODEL_LFOREARM: + case ITEM_APPR_ARMOR_MODEL_RFOREARM: s2DA+= "forearm"; break; + case ITEM_APPR_ARMOR_MODEL_LHAND: + case ITEM_APPR_ARMOR_MODEL_RHAND: s2DA+= "hand"; break; + case ITEM_APPR_ARMOR_MODEL_LSHIN: + case ITEM_APPR_ARMOR_MODEL_RSHIN: s2DA+= "shin"; break; + case ITEM_APPR_ARMOR_MODEL_LSHOULDER: + case ITEM_APPR_ARMOR_MODEL_RSHOULDER: s2DA+= "shoulder"; break; + case ITEM_APPR_ARMOR_MODEL_LTHIGH: + case ITEM_APPR_ARMOR_MODEL_RTHIGH: s2DA+= "legs"; break; + case ITEM_APPR_ARMOR_MODEL_NECK: s2DA+= "neck"; break; + case ITEM_APPR_ARMOR_MODEL_BELT: s2DA+= "belt"; break; + case ITEM_APPR_ARMOR_MODEL_PELVIS: s2DA+= "pelvis"; break; + case ITEM_APPR_ARMOR_MODEL_ROBE: s2DA+= "robe"; break; + } + + string sCache= ":"; + string sLine; + // get the maxID used (not the amount of ID's !!!) + //int nMax = StringToInt(Get2DAString("des_crft_aparts", "NumParts", nPart)); + //Note from Loki: Below line changed to make use of + //backward compatibility function. Was previously the + //preceding line. + int nMax = ZEP_GetNumberOfArmorAppearances(nPart); + int n=1; + while (n<=nMax) { + // Verify validity of the ID and add to the list + sLine = Get2DAString(s2DA, "ACBONUS", n); + if (sLine!="") { + sCache+= IntToString(n)+":"; + } + n++; + } + // Store the list in a modulestring, once normal, once reversed, both with ID 0 added as first index for cycling + SetLocalString(GetModule(), "ZEP_IDPreRead_"+IntToString(nPart), ":0"+sCache); + SetLocalString(GetModule(), "ZEP_IDPreReadR_"+IntToString(nPart), ":0"+ZEP_ListReverse(sCache)); + return sCache; +} + +// Remakes and equips the item oPC is working, having the currently set part +// cycled either forward or backward +// nMode: ZEP_CR_PART_NEXT - cycle forward +// nMode: ZEP_CR_PART_PREV - cycle backward +void ZEP_RemakeItem(object oPC, int nMode) { + SetLocalInt(oPC, "ZEP_CR_CHANGED", TRUE); + object oItem = GetLocalObject(oPC, "ZEP_CR_ITEM"); + int nPart = GetLocalInt(oPC, "ZEP_CR_PART"); + int nCurrApp, nSlot, nCost, nDC; + string sPreRead; + object oNew; + + if (GetBaseItemType(oItem)==BASE_ITEM_ARMOR) { + // Handle Armor change + nCurrApp = GetItemAppearance(oItem, ITEM_APPR_TYPE_ARMOR_MODEL, nPart); + + if (nPart == ITEM_APPR_ARMOR_MODEL_TORSO) { + string sAC = Get2DAString("parts_chest", "ACBONUS", nCurrApp); + // Fetch the stringlist that holds the ID's for this part + sPreRead = GetLocalString(GetModule(), "ZEP_IDPreReadAC_"+GetStringLeft(sAC,1)); + if (sPreRead=="") // list didn't exist yet, so generate it + sPreRead = ZEP_PreReadArmorACList(sAC); + if (nMode==ZEP_CR_PART_PREV) + sPreRead = GetLocalString(GetModule(), "ZEP_IDPreReadACR_"+GetStringLeft(sAC,1)); + } else { + // Fetch the stringlist that holds the ID's for this part + sPreRead = GetLocalString(GetModule(), "ZEP_IDPreRead_"+IntToString(nPart)); + if (sPreRead=="") // list didn't exist yet, so generate it + sPreRead = ZEP_PreReadArmorPartList(nPart); + if (nMode==ZEP_CR_PART_PREV) sPreRead = GetLocalString(GetModule(), "ZEP_IDPreReadR_"+IntToString(nPart)); + } + + // Find the current ID in the stringlist and pick the one coming after that + string sID; + string sCurrApp = IntToString(nCurrApp); + int n = FindSubString(sPreRead, ":"+sCurrApp+":"); + sID = GetSubString(sPreRead, n+GetStringLength(sCurrApp)+2, 5); + n = FindSubString(sID, ":"); + sID = GetStringLeft(sID, n); + if (sID=="" && nPart == ITEM_APPR_ARMOR_MODEL_TORSO) { + sID = GetSubString(sPreRead, 1, 5); + n = FindSubString(sID, ":"); + sID = GetStringLeft(sID, n); + } + nCurrApp = StringToInt(sID); + + oNew = CopyItemAndModify(oItem, ITEM_APPR_TYPE_ARMOR_MODEL, nPart, nCurrApp, TRUE); + nSlot = INVENTORY_SLOT_CHEST; + + } else if (nPart == ZEP_CR_HELMET) { + // Handle Helmet change + nCurrApp = GetItemAppearance(oItem, ITEM_APPR_TYPE_ARMOR_MODEL, 0); + int nMin = 1; + int nMax = StringToInt(Get2DAString("baseitems", "MaxRange", BASE_ITEM_HELMET)); + + //Note from Loki: Below code added in Do/while loop to + //allow for scaling of helmets within reason without + //needing to constantly reset the baseitems.2da file + //parameters + do { + if (nMode == ZEP_CR_PART_NEXT) { + if (++nCurrApp>nMax) nCurrApp = nMin; + } else { + if (--nCurrApp nMax) nCurrApp=nMin; + } + else + { + if (--nCurrApp < nMin) nCurrApp=nMax; + } + oNew = CopyItemAndModify(oItem, ITEM_APPR_TYPE_SIMPLE_MODEL, 0, nCurrApp, TRUE); + } while (!GetIsObjectValid(oNew)); + + nSlot = INVENTORY_SLOT_LEFTHAND; + + } else { + // Handle Weapon change + nCurrApp = GetItemAppearance(oItem, ITEM_APPR_TYPE_WEAPON_MODEL, nPart); + int nBaseType = GetBaseItemType(oItem); + int nMin = StringToInt(Get2DAString("baseitems", "MinRange", nBaseType)) /10; + int nMax = StringToInt(Get2DAString("baseitems", "MaxRange", nBaseType)) /10; + + + //Once again, Do/While loop added to accomodate the fact that + //CEP models are not all contiguous with each other. This + //allows the code to rapidly skip over gaps in the weapon + //models to the next valid index. + + do { + if (nMode == ZEP_CR_PART_NEXT) { + if (++nCurrApp>nMax) nCurrApp = nMin; + } else { + if (--nCurrAppnMax) nCurrApp = nMin; + } else { + if (--nCurrAppnMax) nCurrApp = nMin; + } else { + if (--nCurrAppnMax) nCurrApp = nMin; + } + else { + if (--nCurrApp= 0) + { + + + ExecuteScript("custom_spellcast",OBJECT_SELF); + + SignalEvent(OBJECT_SELF,EventSpellCastAt(OBJECT_SELF,-1,FALSE)); + } + + if(GetUserDefinedEventNumber() >= 0) + { + + ExecuteScript("custom_userdef",OBJECT_SELF); + + SignalEvent(OBJECT_SELF,EventUserDefined(-1)); + } + + struct attackedEvent lastattackedEvent = GetLastAttackedEvent(); + struct attackedEvent attackedEvent = AttackedEvent(); + + if( attackedEvent.isValid && + (!lastattackedEvent.isValid || (lastattackedEvent != attackedEvent) ) ) + { + SetLastAttackedEvent(attackedEvent); + + ExecuteScript("custom_physicald",OBJECT_SELF); + } + + struct disturbedEvent lastDisturbedEvent = GetLastDisturbedEvent(); + struct disturbedEvent disturbedEvent = DisturbedEvent(); + + if( disturbedEvent.isValid && + (!lastDisturbedEvent.isValid || (lastDisturbedEvent != disturbedEvent) ) ) + { + SetLastDisturbedEvent(disturbedEvent); + + ExecuteScript("custom_disturbed",OBJECT_SELF); + } + + struct damagedEvent lastDamagegEvent = GetLastDamagedEvent(); + struct damagedEvent damagegEvent = DamagedEvent(); + + if( damagegEvent.isValid && + (!lastDamagegEvent.isValid || (lastDamagegEvent != damagegEvent) ) ) + { + SetLastDamagedEvent(damagegEvent); + + ExecuteScript("custom_damage",OBJECT_SELF); + } + + struct blockedEvent blockedEvent = BlockedEvent(); + struct blockedEvent lastBlockedEvent = GetLastBlockedEvent(); + + if( blockedEvent.isValid && + (!lastBlockedEvent.isValid || (lastBlockedEvent != blockedEvent) ) ) + { + SetLastBlockedEvent(blockedEvent); + + + ExecuteScript("custom_blocked",OBJECT_SELF); + } + + if(GetIsDead(OBJECT_SELF) && !GetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM_DeathRun")) + { + SetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM_DeathRun",TRUE); + + + + ExecuteScript("custom_death",OBJECT_SELF); + + } + + } +} diff --git a/_removed/default.nss b/_removed/default.nss new file mode 100644 index 0000000..9a1803f --- /dev/null +++ b/_removed/default.nss @@ -0,0 +1,103 @@ +#include "clone_lib" +void main() +{ + if(GetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM")) + { + + + if(!GetIsDead(OBJECT_SELF) && GetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM_DeathRun")) + { + SetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM_DeathRun",FALSE); + } + + + struct perceivedEvent lastPerceptionEvent = GetLastPerceivedEvent(); + struct perceivedEvent perceptionEvent = PerceivedEvent(); + + if( perceptionEvent.isValid && + (!lastPerceptionEvent.isValid || (lastPerceptionEvent != perceptionEvent) ) ) + { + + SetLastPerceivedEvent(perceptionEvent); + + + ExecuteScript("custom_percep",OBJECT_SELF); + + + } + + + if(GetLastSpell() >= 0) + { + + + ExecuteScript("custom_spellcast",OBJECT_SELF); + + SignalEvent(OBJECT_SELF,EventSpellCastAt(OBJECT_SELF,-1,FALSE)); + } + + if(GetUserDefinedEventNumber() >= 0) + { + + ExecuteScript("custom_userdef",OBJECT_SELF); + + SignalEvent(OBJECT_SELF,EventUserDefined(-1)); + } + + struct attackedEvent lastattackedEvent = GetLastAttackedEvent(); + struct attackedEvent attackedEvent = AttackedEvent(); + + if( attackedEvent.isValid && + (!lastattackedEvent.isValid || (lastattackedEvent != attackedEvent) ) ) + { + SetLastAttackedEvent(attackedEvent); + + ExecuteScript("custom_physicald",OBJECT_SELF); + } + + struct disturbedEvent lastDisturbedEvent = GetLastDisturbedEvent(); + struct disturbedEvent disturbedEvent = DisturbedEvent(); + + if( disturbedEvent.isValid && + (!lastDisturbedEvent.isValid || (lastDisturbedEvent != disturbedEvent) ) ) + { + SetLastDisturbedEvent(disturbedEvent); + + ExecuteScript("custom_disturbed",OBJECT_SELF); + } + + struct damagedEvent lastDamagegEvent = GetLastDamagedEvent(); + struct damagedEvent damagegEvent = DamagedEvent(); + + if( damagegEvent.isValid && + (!lastDamagegEvent.isValid || (lastDamagegEvent != damagegEvent) ) ) + { + SetLastDamagedEvent(damagegEvent); + + ExecuteScript("custom_damage",OBJECT_SELF); + } + + struct blockedEvent blockedEvent = BlockedEvent(); + struct blockedEvent lastBlockedEvent = GetLastBlockedEvent(); + + if( blockedEvent.isValid && + (!lastBlockedEvent.isValid || (lastBlockedEvent != blockedEvent) ) ) + { + SetLastBlockedEvent(blockedEvent); + + + ExecuteScript("custom_blocked",OBJECT_SELF); + } + + if(GetIsDead(OBJECT_SELF) && !GetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM_DeathRun")) + { + SetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM_DeathRun",TRUE); + + + + ExecuteScript("custom_death",OBJECT_SELF); + + } + + } +} diff --git a/_removed/level_include.nss b/_removed/level_include.nss new file mode 100644 index 0000000..d931a83 --- /dev/null +++ b/_removed/level_include.nss @@ -0,0 +1,626 @@ +void EffectAnnounce(object oPlayer) +{ +object oPC = oPlayer; +int nInt; +if(GetSubRace(oPC) == "Night Elf" && GetRacialType(oPC) == RACIAL_TYPE_ELF) + +{ + + if(GetHitDice(oPC) == 4)//gets it at 4th level + { +//AC +2 + + SendMessageToPC(oPC,"AC increased +2"); +//Movement speed up 120% + nInt=GetLocalInt(oPC, "ms_nightelf"); + if (nInt!=1) + { + SetLocalInt(oPC, "ms_nightelf", 1); + SendMessageToPC(oPC,"Movement speed increased by 120%"); + } + } + if(GetHitDice(oPC) == 8)//gets it at 8th level + { + +//Attack Increase +3 + SendMessageToPC(oPC,"Attack increased +3"); +//Damage increase +2 + SendMessageToPC(oPC,"Negative Damage increased +2"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: slowdown"); + } + if(GetHitDice(oPC) == 10)//gets it at 10th level + { +// Immunity cursed + SendMessageToPC(oPC,"Gained immunity to curse"); + } + if(GetHitDice(oPC) == 6)//gets it at 6th level + { +// Saving Throw + SendMessageToPC(oPC,"Reflex saving throws & saving throws vs evil increased +2"); + } + if(GetHitDice(oPC) == 12)//gets it at 12th level + { +//Skill Increase + SendMessageToPC(oPC,"Skill increased: Listen +10"); + SendMessageToPC(oPC,"Skill increased: Move Silently +10"); + } + if(GetHitDice(oPC) == 16)//gets it at 4th level + { + +//Immune to Doom + SendMessageToPC(oPC,"Gained immunity to spell: Doom"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: implosion"); + } + if(GetHitDice(oPC) == 4)//gets it at 4th level + { +//Ultravision + SendMessageToPC(oPC,"Gained Ultravision"); + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + } + + } +if(GetSubRace(oPC) == "Drow" && GetRacialType(oPC) == RACIAL_TYPE_ELF) + { + SendMessageToPC(oPlayer,"Spell Resistance increased"); + if(GetHitDice(oPC) == 4)//gets it at 4th level + { +//AC +2 + SendMessageToPC(oPC,"AC increased +2"); + } + if(GetHitDice(oPC) == 8)//gets it at 8th level + { + + //Attack Increase +2 + SendMessageToPC(oPC,"Attack increased +2"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: negative energy burst"); + } + if(GetHitDice(oPC) == 10)//gets it at 10th level + { +//Damage Immunity +20% Magic + SendMessageToPC(oPC,"Gained 20% immunity to magic damage"); +//Immunity Blindness + SendMessageToPC(oPC,"Gained immunity to blindness"); + } + if(GetHitDice(oPC) == 6)//gets it at 6th level + { +//Saving throw increase +1 all + SendMessageToPC(oPC,"Will saving throws & saving throws vs death increased +1"); + } + if(GetHitDice(oPC) > 11)//gets it at 4th level + { +//Skill Increase + SendMessageToPC(oPC,"Skill increased: Discipline +5"); + SendMessageToPC(oPC,"Skill increased: Concentration +5"); + } + if(GetHitDice(oPC) == 16)//gets it at 4th level + { + +// Spell Immunity Darkness + SendMessageToPC(oPC,"Gained immunity to spell: Darkness"); + +//True Seeing + SendMessageToPC(oPC,"Gained True Seeing"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: improved circle of doom"); + } +//Spell Resistance 24 + + } + if(GetSubRace(oPC) == "Wood Elf" && GetRacialType(oPC) == RACIAL_TYPE_HALFELF) + { + + + if(GetHitDice(oPC) == 8)//gets it at 4th level + { +//Attack Increase +2 + SendMessageToPC(oPC,"AC increased +2"); + } + if(GetHitDice(oPC) == 10)//gets it at 4th level + { + +//Concealment percentage 20% + SendMessageToPC(oPC,"Gained 20% concealment"); +//Damage Immunity +50% + SendMessageToPC(oPC,"Gained 50% immunity to positive damage"); +//Immunity Paraysis + SendMessageToPC(oPC,"Gained immunity to paralysis"); + FloatingTextStringOnCreature("Your talisman gains powers", oPC); + SendMessageToPC(oPC,"New Talisman power: improved invisibility"); + SendMessageToPC(oPC,"New Talisman power: haste"); + } + if(GetHitDice(oPC) == 4)//gets it at 4th level + { +//Movement speed up 140% + nInt=GetLocalInt(oPC, "ms_woodelf"); + if (nInt!=1) + { + SetLocalInt(oPC, "ms_woodelf", 1); + SendMessageToPC(oPC,"Movement speed increased by 120%"); + } + } + if(GetHitDice(oPC) == 6)//gets it at 6th level + { +//Saving throw increase Fort +2 + SendMessageToPC(oPC,"Fort saving throws increased +2"); + } + if(GetHitDice(oPC) == 12)//gets it at 12th level + { +//Skill Increase Empathy + SendMessageToPC(oPC,"Skill increased: Aminal Empathy +10"); + SendMessageToPC(oPC,"Skill increased: Move Silently +5"); + } + if(GetHitDice(oPC) == 16)//gets it at 17th level + { + +//Spell Immunity, web + SendMessageToPC(oPC,"Gained immunity to spell: Web"); + FloatingTextStringOnCreature("Your talisman gains powers", oPC); + SendMessageToPC(oPC,"New Talisman power: earthquake"); + } + + } + +if(GetSubRace(oPC) == "Duergar" && GetRacialType(oPC) == RACIAL_TYPE_DWARF) + { + SendMessageToPC(oPlayer,"Spell Resistance increased"); + if(GetHitDice(oPC) == 4)//gets it at 4th level + { +//AC +2 + SendMessageToPC(oPC,"AC increased +2"); + } + if(GetHitDice(oPC) == 8)//gets it at 4th level + { +//Attack Increase +2 + SendMessageToPC(oPC,"Attack increased +2"); + } + if(GetHitDice(oPC) == 10)//gets it at 4th level + { + +//Damage Immunity Bludgeoning +20% + SendMessageToPC(oPC,"Gained 20% immunity to bludgeon damage"); +//Immunity + SendMessageToPC(oPC,"Gained immunity to poison"); + SendMessageToPC(oPC,"Gained immunity to disease"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: aura of vitality"); + } + if(GetHitDice(oPC) == 6)//gets it at 4th level + { +//Saving throw increase +1 all + SendMessageToPC(oPC,"Will saving throws saving throws vs death increased +2"); + SendMessageToPC(oPC,"Fort saving saving throws increased +4"); + } + if(GetHitDice(oPC) == 12)//gets it at 4th level + { +//Skill Increase Taunt & Parry +5 + SendMessageToPC(oPC,"Skill increased: Parry +5"); + SendMessageToPC(oPC,"Skill increased: Taunt +5"); + } + if(GetHitDice(oPC) == 16)//gets it at 4th level + { +//True Seeing + SendMessageToPC(oPC,"Gained True Seeing"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: greater restoration"); + } +//Spell Resistance 20 + +//Give Subrace Item + + + } +if(GetSubRace(oPC) == "Silver Dwarf" && GetRacialType(oPC) == RACIAL_TYPE_DWARF) + { + SendMessageToPC(oPlayer,"Spell Resistance increased"); + if(GetHitDice(oPC) == 4)//gets it at 4th level + { +//AC +2 + SendMessageToPC(oPC,"AC increased +2"); +//Movement speed up 60% + nInt=GetLocalInt(oPC, "ms_silverdwarf"); + if (nInt!=1) + { + SetLocalInt(oPC, "ms_sliverdwarf", 1); + SendMessageToPC(oPC,"Movement speed increased by 120%"); + } + } + if(GetHitDice(oPC) == 8)//gets it at 4th level + { + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: ghostly visage"); + SendMessageToPC(oPC,"New Talisman power: invisibility"); + } + if(GetHitDice(oPC) == 10)//gets it at 4th level + { +//Concealment percentage 30% + SendMessageToPC(oPC,"Gained 30% concealment"); +//Immunity + SendMessageToPC(oPC,"Gained immunity to Daze"); + SendMessageToPC(oPC,"Gained immunity to Stun"); + SendMessageToPC(oPC,"Gained immunity to Poison"); + } + if(GetHitDice(oPC) == 6)//gets it at 4th level + { + +//Saving throw increase +5 fort + SendMessageToPC(oPC,"Fort saving throws increased +5"); + } + if(GetHitDice(oPC) == 12)//gets it at 4th level + { +//Skill Increase + SendMessageToPC(oPC,"Skill increased: Discipline +5"); + SendMessageToPC(oPC,"Skill increased: Spot +5"); + } + if(GetHitDice(oPC) == 16)//gets it at 4th level + { + +//True Seeing + SendMessageToPC(oPC,"Gained True Seeing"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: shadow shield"); + } +//Spell Resistance 16 + +//Give Subrace Item + + + } +if(GetSubRace(oPC) == "Dragoon" && GetRacialType(oPC) == RACIAL_TYPE_HUMAN) + + { + SendMessageToPC(oPlayer,"Spell Resistance increased"); + if(GetHitDice(oPC) == 4)//gets it at 4th level + { + +//AC +2 + + SendMessageToPC(oPC,"AC increased +2"); +//Movement speed Increase 30% + nInt=GetLocalInt(oPC, "ms_dragoon"); + if (nInt!=1) + { + SetLocalInt(oPC, "ms_dragoon", 1); + SendMessageToPC(oPC,"Movement speed increased by 110%"); + } + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: breath of fire"); + } + if(GetHitDice(oPC) == 10)//gets it at 4th level + { +//Damage Immunity Fire 100% + SendMessageToPC(oPC,"Gained 100% immunity to fire damage"); +//Immunity + SendMessageToPC(oPC,"Gained immunity to Fear"); + SendMessageToPC(oPC,"Gained immunity to Paralysis"); + } + if(GetHitDice(oPC) == 8)//gets it at 4th level + { +//Attack Increase +4 + SendMessageToPC(oPC,"Attack increased +4"); +//Damage increase fire +1 + SendMessageToPC(oPC,"Fire Damage increased +2"); + } + if(GetHitDice(oPC) == 6)//gets it at 4th level + { + +//Saving throw increase +1 all + SendMessageToPC(oPC,"Saving throws vs mind spells increased +1"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: breath of cold"); + } + if(GetHitDice(oPC) == 12)//gets it at 4th level + { + +//Skill Increase + SendMessageToPC(oPC,"Skill increased: Discipline +10"); + SendMessageToPC(oPC,"Skill increased: Concentration +5"); + + FloatingTextStringOnCreature("Your talisman gains powers", oPC); + SendMessageToPC(oPC,"New Talisman power: breath of slowdown"); + SendMessageToPC(oPC,"New Talisman power: breath of paralysis"); + } + if(GetHitDice(oPC) == 16)//gets it at 4th level + { + +//Spell immunity + SendMessageToPC(oPC,"Gained immunity to spell: Storm of Vengeance"); + +//True Seeing + SendMessageToPC(oPC,"Gained True Seeing"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: summon red dragon"); + } +//Spell Resistance 12 + +//Give Subrace Item + + } +if(GetSubRace(oPC) == "Horodrim" && GetRacialType(oPC) == RACIAL_TYPE_HUMAN) + + { + SendMessageToPC(oPlayer,"Magic Damage increased"); + SendMessageToPC(oPlayer,"Spell Resistance increased"); + if(GetHitDice(oPC) == 4)//gets it at 4th level + { +//AC +6 + SendMessageToPC(oPC,"AC increased +4"); +//Movement speed up 100% + nInt=GetLocalInt(oPC, "ms_horodrim"); + if (nInt!=1) + { + SetLocalInt(oPC, "ms_horodrim", 1); + SendMessageToPC(oPC,"Movement speed increased by 150%"); + } + } +// Magical Damage gets +1 per level up to a Max of +20 + + + + if(GetHitDice(oPC) == 10)//gets it at 4th level + { +//Immunity spell Res Decrease + SendMessageToPC(oPC,"Gained immunity to spell type: Spell resistance decrease"); + } + if(GetHitDice(oPC) == 6)//gets it at 4th level + { +//Saving throw increase +3 mind + SendMessageToPC(oPC,"Will saving throws & saving throws vs mind spells increased +3"); + } + if(GetHitDice(oPC) == 12)//gets it at 4th level + { + +//Skill Increase + SendMessageToPC(oPC,"Skill increased: Concentration +10"); + SendMessageToPC(oPC,"Skill increased: Spellcraft +10"); + SendMessageToPC(oPC,"Skill increased: Use Magic Device +10"); + FloatingTextStringOnCreature("Your talisman gains powers", oPC); + SendMessageToPC(oPC,"New Talisman power: greater dispel"); + SendMessageToPC(oPC,"New Talisman power: premonition"); + } + if(GetHitDice(oPC) == 16)//gets it at 4th level + { + +//Spell Immunity, specific spell + SendMessageToPC(oPC,"Gained immunity to spell: Lesser Dispel"); + SendMessageToPC(oPC,"Gained immunity to spell: Dispel Magic"); + SendMessageToPC(oPC,"Gained immunity to spell: Greater Dispelling"); + SendMessageToPC(oPC,"Gained immunity to spell: Lesser Spell Breach"); + SendMessageToPC(oPC,"Gained immunity to spell: Greater Spell Breach"); + SendMessageToPC(oPC,"Gained immunity to spell: Mordenkainen's Disjunction"); + + +//True Seeing + SendMessageToPC(oPC,"Gained True Seeing"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: mummy dust"); + } +//Spell Resistance 36 + + +//Give Subrace Item + + + } +if(GetSubRace(oPC) == "Succubus" && GetRacialType(oPC) == RACIAL_TYPE_HUMAN) + + { + SendMessageToPC(oPlayer,"Cold Damage increased"); + SendMessageToPC(oPlayer,"Spell Resistance increased"); +if(GetHitDice(oPC) == 4)//gets it at 4th level + { +//AC +6 + SendMessageToPC(oPC,"AC increased +4"); +//Movement speed up 100% + nInt=GetLocalInt(oPC, "ms_horodrim"); + if (nInt!=1) + { + SetLocalInt(oPC, "ms_horodrim", 1); + SendMessageToPC(oPC,"Movement speed increased by 150%"); + } + } +// Magical Damage gets +1 per level up to a Max of +20 +if(GetHitDice(oPC) == 8)//gets it at 4th level + { + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: flame lash"); + } + if(GetHitDice(oPC) == 10)//gets it at 4th level + { +//Immunity spell Res Decrease + SendMessageToPC(oPC,"Gained immunity to spell type: Spell resistance decrease"); + } + if(GetHitDice(oPC) == 6)//gets it at 4th level + { +//Saving throw increase +3 mind + SendMessageToPC(oPC,"Will saving throws & saving throws vs mind spells increased +3"); + } + if(GetHitDice(oPC) == 12)//gets it at 4th level + { +//Skill Increase + SendMessageToPC(oPC,"Skill increased: Concentration +10"); + SendMessageToPC(oPC,"Skill increased: Spellcraft +10"); + SendMessageToPC(oPC,"Skill increased: Use Magic Device +10"); + SendMessageToPC(oPC,"Skill increased: Persuasion +10"); + } + if(GetHitDice(oPC) == 16)//gets it at 4th level + { + +//Spell Immunity, specific spell + SendMessageToPC(oPC,"Gained immunity to spell: Lesser Dispel"); + SendMessageToPC(oPC,"Gained immunity to spell: Dispel Magic"); + SendMessageToPC(oPC,"Gained immunity to spell: Greater Dispelling"); + SendMessageToPC(oPC,"Gained immunity to spell: Lesser Spell Breach"); + SendMessageToPC(oPC,"Gained immunity to spell: Greater Spell Breach"); + SendMessageToPC(oPC,"Gained immunity to spell: Mordenkainen's Disjunction"); + + +//True Seeing + SendMessageToPC(oPC,"Gained True Seeing"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: dominate monster"); + } +//Spell Resistance 36 + + +//Give Subrace Item + } + +if(GetSubRace(oPC) == "Pixie" && GetRacialType(oPC) == RACIAL_TYPE_GNOME) + + { + SendMessageToPC(oPlayer,"Spell Resistance increased"); + if(GetHitDice(oPC) == 4)//gets it at 4th level + { +//AC +6 + SendMessageToPC(oPC,"AC increased +4"); +//Haste + SendMessageToPC(oPC,"Gained Haste"); + } + if(GetHitDice(oPC) == 10)//gets it at 4th level + { +//Concealment percentage 20% + SendMessageToPC(oPC,"Gained 50% concealment"); + +//Immunity + SendMessageToPC(oPC,"Gained immunity to spell type: Spell resistance decrease"); +//Miss chance 10% + SendMessageToPC(oPC,"Gained supernatural evasion: 10% chance to evade"); + } + if(GetHitDice(oPC) == 6)//gets it at 4th level + { +//Saving throw increase +2 all + SendMessageToPC(oPC,"Universal saving throws increased +2"); + } + if(GetHitDice(oPC) == 12)//gets it at 4th level + { +//Skill Increase + SendMessageToPC(oPC,"Skill increased: Animal Empathy +10"); + SendMessageToPC(oPC,"Skill increased: Move Silently +10"); + SendMessageToPC(oPC,"Skill increased: Hide +10"); + SendMessageToPC(oPC,"Skill increased: Use Magic Device +10"); + } + + if(GetHitDice(oPC) == 8)//gets it at 4th level + { + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: improved invisibility"); + } + if(GetHitDice(oPC) == 16)//gets it at 4th level + { + + +//Ultravision + SendMessageToPC(oPC,"Ultravision"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: mass heal"); + } +//Spell Resistance 36 + + + } +if(GetSubRace(oPC) == "Demon" && GetRacialType(oPC) == RACIAL_TYPE_HALFORC) + + { + + if(GetHitDice(oPC) == 4)//gets it at 4th level + { +//AC +3 + SendMessageToPC(oPC,"AC increased +3"); + } + if(GetHitDice(oPC) == 8)//gets it at 4th level + { + +//Attack Increase +4 + SendMessageToPC(oPC,"Attack increased +4"); +//Damage increase +4 + SendMessageToPC(oPC,"Acid Damage increased +4"); + FloatingTextStringOnCreature("Your talisman gains powers", oPC); + SendMessageToPC(oPC,"New Talisman power: breath of fear"); + SendMessageToPC(oPC,"New Talisman power: breath of fire"); + } + if(GetHitDice(oPC) == 10)//gets it at 4th level + { +//Damage Immunity +100% fire, acid + SendMessageToPC(oPC,"Gained 100% immunity to fire damage"); + SendMessageToPC(oPC,"Gained 100% immunity to acid damage"); +//Immunity + SendMessageToPC(oPC,"Gained immunity to charm"); + SendMessageToPC(oPC,"Gained immunity to disease"); + SendMessageToPC(oPC,"Gained immunity to death"); + } + if(GetHitDice(oPC) == 16)//gets it at 4th level + { + +//Regeneration 1 damage every 6.0 seconds + SendMessageToPC(oPC,"Gained regeneration +1"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: timestop"); + } + if(GetHitDice(oPC) == 16)//gets it at 4th level + { +//Bonus Skill + SendMessageToPC(oPC,"Skill increased: Taunt +15"); + } + +} + + +if(GetSubRace(oPC) == "Morphlord" && GetRacialType(oPC) == RACIAL_TYPE_GNOME) + + { + SendMessageToPC(oPlayer,"Spell Resistance increased"); + if(GetHitDice(oPC) == 4)//gets it at 4th level + { +//AC +3 + SendMessageToPC(oPC,"AC increased +3"); +//Movement speed up 130% + nInt=GetLocalInt(oPC, "ms_morphlord"); + if (nInt!=1) + { + SetLocalInt(oPC, "ms_morphlord", 1); + SendMessageToPC(oPC,"Movement speed increased by 130%"); + } + } + if(GetHitDice(oPC) == 8)//gets it at 4th level + { + +//Damage Increase +3 + SendMessageToPC(oPC,"Electrical Damage increased +3"); + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: call lightening"); + } + if(GetHitDice(oPC) == 10)//gets it at 4th level + { +//Immunity Paralysis + SendMessageToPC(oPC,"Gained immunity to paralysis"); + } + if(GetHitDice(oPC) == 6)//gets it at 4th level + { +//Saving throw increase +2 all + SendMessageToPC(oPC,"Fort saving throws & saving throws vs mind spells increased +1"); + } + if(GetHitDice(oPC) == 12)//gets it at 4th level + { +//Skill Increase + SendMessageToPC(oPC,"Skill increased: Animal Empathy +10"); + SendMessageToPC(oPC,"Skill increased: Concentration +10"); + SendMessageToPC(oPC,"Skill increased: Spellcraft +10"); + SendMessageToPC(oPC,"Skill increased: Use Magic Device +10"); + } +if(GetHitDice(oPC) == 16)//gets it at 4th level + { + FloatingTextStringOnCreature("Your talisman gains power", oPC); + SendMessageToPC(oPC,"New Talisman power: shapechange"); + } +//Spell Resistance 18 + + + + } +} +//void main () {} + diff --git a/_removed/nw_g0_conversat.nss b/_removed/nw_g0_conversat.nss new file mode 100644 index 0000000..3e5ff1c --- /dev/null +++ b/_removed/nw_g0_conversat.nss @@ -0,0 +1,28 @@ +//////////////////////////////////////////////////////////// +// OnConversation +// g_ConversationDG.nss +// Copyright (c) 2001 Bioware Corp. +//////////////////////////////////////////////////////////// +// Created By: Noel Borstad +// Created On: 04/25/02001 +// Description: This is the default script that is called if +// no OnConversation script is specified. +//////////////////////////////////////////////////////////// +#include "custom_set_lib" +#include "inc_eventhook" +void main() +{ + ExecuteAllScriptsHookedToEvent(OBJECT_SELF, EVENT_VIRTUAL_ONCONVERSATION); + + if(!GetLocalInt(OBJECT_SELF,"PC_CLONE_SYSTEM")) + { + if ( GetListenPatternNumber() == -1 ) + { + BeginConversation(); + } + } + else + { + ExecuteScript("custom_conv",OBJECT_SELF); + } +} diff --git a/_removed/nw_i0_generic.nss b/_removed/nw_i0_generic.nss new file mode 100644 index 0000000..9a9eae6 --- /dev/null +++ b/_removed/nw_i0_generic.nss @@ -0,0 +1,5903 @@ +//:://///////////////////////////////////////////// +//:: Generic Scripting Include v1.0 +//:: NW_I0_GENERIC +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + ******************************************** + WARNING THIS SCRIPT IS CHANGED AT YOUR PERIL + ******************************************** + + This is the master generic script and currently + handles all combat and some plot behavior + within NWN. If this script is tampered + with there is a chance of introducing game + breaking bugs. But other than that enjoy. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Sept 20, 2001 +//::////////////////////////////////////////////// + +//GENERIC STRUCTURES + +struct sEnemies +{ + int FIGHTERS; + int FIGHTER_LEVELS; + int CLERICS; + int CLERIC_LEVELS; + int MAGES; + int MAGE_LEVELS; + int MONSTERS; + int MONTERS_LEVELS; + int TOTAL; + int TOTAL_LEVELS; +}; + +//Flee and move constants +int NW_GENERIC_FLEE_EXIT_FLEE = 0; +int NW_GENERIC_FLEE_EXIT_RETURN = 1; +int NW_GENERIC_FLEE_TELEPORT_FLEE = 2; +int NW_GENERIC_FLEE_TELEPORT_RETURN = 3; + +//Shout constants +int NW_GENERIC_SHOUT_I_WAS_ATTACKED = 1; // NOT USED +int NW_GENERIC_SHOUT_I_AM_DEAD = 12; //IN OnDeath Script +int NW_GENERIC_SHOUT_BACK_UP_NEEDED = 13; //IN TalentMeleeAttacked +int NW_GENERIC_SHOUT_BLOCKER = 2; + +//Master Constants +int NW_FLAG_SPECIAL_CONVERSATION = 0x00000001; +int NW_FLAG_SHOUT_ATTACK_MY_TARGET = 0x00000002; +int NW_FLAG_STEALTH = 0x00000004; +int NW_FLAG_SEARCH = 0x00000008; +int NW_FLAG_SET_WARNINGS = 0x00000010; +int NW_FLAG_ESCAPE_RETURN = 0x00000020; //Failed +int NW_FLAG_ESCAPE_LEAVE = 0x00000040; +int NW_FLAG_TELEPORT_RETURN = 0x00000080; //Failed +int NW_FLAG_TELEPORT_LEAVE = 0x00000100; +int NW_FLAG_PERCIEVE_EVENT = 0x00000200; +int NW_FLAG_ATTACK_EVENT = 0x00000400; +int NW_FLAG_DAMAGED_EVENT = 0x00000800; +int NW_FLAG_SPELL_CAST_AT_EVENT = 0x00001000; +int NW_FLAG_DISTURBED_EVENT = 0x00002000; +int NW_FLAG_END_COMBAT_ROUND_EVENT = 0x00004000; +int NW_FLAG_ON_DIALOGUE_EVENT = 0x00008000; +int NW_FLAG_RESTED_EVENT = 0x00010000; +int NW_FLAG_DEATH_EVENT = 0x00020000; +int NW_FLAG_SPECIAL_COMBAT_CONVERSATION = 0x00040000; +int NW_FLAG_AMBIENT_ANIMATIONS = 0x00080000; +int NW_FLAG_HEARTBEAT_EVENT = 0x00100000; +int NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS = 0x00200000; +int NW_FLAG_DAY_NIGHT_POSTING = 0x00400000; +int NW_FLAG_AMBIENT_ANIMATIONS_AVIAN = 0x00800000; +int NW_FLAG_APPEAR_SPAWN_IN_ANIMATION = 0x01000000; +int NW_FLAG_SLEEPING_AT_NIGHT = 0x02000000; +int NW_FLAG_FAST_BUFF_ENEMY = 0x04000000; + +//Behavior Constants +int NW_FLAG_BEHAVIOR_SPECIAL = 0x00000001; +int NW_FLAG_BEHAVIOR_CARNIVORE = 0x00000002; //Will always attack regardless of faction +int NW_FLAG_BEHAVIOR_OMNIVORE = 0x00000004; //Will only attack if approached +int NW_FLAG_BEHAVIOR_HERBIVORE = 0x00000008; //Will never attack. Will alway flee. + +//Talent Type Constants +int NW_TALENT_PROTECT = 1; +int NW_TALENT_ENHANCE = 2; + +//PRIVATE FUNCTION DECLARATIONS + +//Checks the target for a specific EFFECT_TYPE constant value +int GetHasEffect(int nEffectType, object oTarget = OBJECT_SELF); +//Adds all three of the class levels together. Used before GetHitDice became available +int GetCharacterLevel(object oTarget); +//Returns the number of persons who are considered friendly to the the target. +int CheckFriendlyFireOnTarget(object oTarget, float fDistance = 5.0); +//Returns the number of enemies on a target. +int CheckEnemyGroupingOnTarget(object oTarget, float fDistance = 5.0); +//Find a single target who is an enemy with 30m of self +object FindSingleRangedTarget(); +//Calculate the number of people currently attacking self. +int GetNumberOfMeleeAttackers(); +//Calculate the number of people attacking self from beyond 5m +int GetNumberOfRangedAttackers(); +//Determine the percentage of HP object-self has left +int GetPercentageHPLoss(object oWounded); +//Determine the number of targets within 20m that are of the specified racial-type +int GetRacialTypeCount(int nRacial_Type); +//Returns the nearest object that can be seen, then checks for the nearest heard target. +object GetNearestSeenOrHeardEnemy(); +//Sets a local variable for the last spell used +void SetLastGenericSpellCast(int nSpell); +//Returns a SPELL_ constant for the last spell used +int GetLastGenericSpellCast(); +//Compares the current spell with the last one cast +int CompareLastSpellCast(int nSpell); +//If using ambient sleep this will remove the effect +void RemoveAmbientSleep(); +//Does a check to determine if the NPC has an attempted spell or attack target +int GetIsFighting(object oFighting); +//Searches for the nearest locked object to the master +object GetLockedObject(object oMaster); +//Equip the weapon appropriate to enemy and position +void EquipAppropriateWeapons(object oTarget); +//Returns the henchmen to a commandable state of grace +void ResetHenchmenState(); +//Returns true if self is a henchmen +int AssociateCheck(object oCheck); +//Returns true if the object has any posts or waypoints to walk +int GetIsPostOrWalking(object oWalker = OBJECT_SELF); +//Prints a log string with the ID of the passed in talent. +void DubugPrintTalentID(talent tTalent); +//Inserts a debug print string into the log. +void MyPrintString(string sString); + +//DETERMINE COMBAT ROUND SUB FUNCTIONS + +int BashDoorCheck(object oIntruder = OBJECT_INVALID); +int DetermineClassToUse(); +struct sEnemies DetermineEnemies(); +string GetMostDangerousClass(struct sEnemies sCount); +int GetMatchCompatibility(talent tUse, string sClass, int nType); +int MatchCombatProtections(talent tUse); +int MatchSpellProtections(talent tUse); +int MatchElementalProtections(talent tUse); +talent StartProtectionLoop(); +int GetAttackCompatibility(talent tUse, int nClass); +int MatchReflexAttacks(talent tUse); +int MatchFortAttacks(talent tUse); +object GetRangedAttackGroup(int bAllowFriendlyFire = FALSE); +int VerifyDisarm(talent tUse, object oTarget); +int VerifyCombatMeleeTalent(talent tUse, object oTarget); + +//CURRENT TALENT FUNCTIONS +int TalentUseProtectionOnSelf(); +int TalentUseProtectionOthers(); +int TalentEnhanceOthers(); +int TalentUseEnhancementOnSelf(); +int TalentMeleeAttacked(object oIntruder = OBJECT_INVALID); +int TalentRangedAttackers(object oIntruder = OBJECT_INVALID); +int TalentRangedEnemies(object oIntruder = OBJECT_INVALID); +int TalentSummonAllies(); +int TalentHealingSelf(); //Use spells and potions +int TalentHeal(int nForce = FALSE); //User spells only on others and self +int TalentMeleeAttack(object oIntruder = OBJECT_INVALID); +int TalentSneakAttack(); +int TalentFlee(object oIntruder = OBJECT_INVALID); +int TalentUseTurning(); +int TalentPersistentAbilities(); +int TalentAdvancedBuff(float fDistance); +int TalentBuffSelf(); //Used for Potions of Enhancement and Protection +int TalentCureCondition(); +int TalentDragonCombat(object oIntruder = OBJECT_INVALID); +int TalentBardSong(); +int TalentAdvancedProtectSelf(); +int TalentSpellAttack(object oIntruder); + +// This block of functions were added by Jugalator +int TalentImportantArcaneSpells(int nClass); +int TalentImportantDivineSpells(int nClass); +int TalentImportantRangerSpells(); +int TalentImportantPaladinSpells(); +int GetAverageHD(); +int Jug_AtLocation(int nSpellID, object oTarget, int iModifier, int iRequirement, int iChance = 100); +int Jug_AtObject(int nSpellID, object oTarget, int iModifier, int iRequirement, int iChance = 100); +int Jug_GetHasBeneficialEnhancement(object oTarget); +object Jug_GetNearestAlly(); +int Jug_IsArcaneCaster(object oTarget = OBJECT_SELF); +int Jug_IsDivineCaster(object oTarget = OBJECT_SELF); +void Jug_Debug(string sString); + +//CORE AI FUNCTIONS +void DetermineCombatRound(object oIntruder = OBJECT_INVALID, int nAI_Difficulty = 10); +void SetListeningPatterns(); +void RespondToShout(object oShouter, int nShoutIndex, object oIntruder = OBJECT_INVALID); +void RunCircuit(int nTens, int nNum, int nRun = FALSE, float fPause = 1.0); +void WalkWayPoints(int nRun = FALSE, float fPause = 1.0); +void RunNextCircuit(int nRun = FALSE, float fPause = 1.0); +int CheckWayPoints(object oWalker = OBJECT_SELF); + +//PLOT FUNCTIONS +void SetNPCWarningStatus(int nStatus = TRUE); +int GetNPCWarningStatus(); +void SetSummonHelpIfAttacked(); +void CreateSignPostNPC(string sTag, location lLocal); +void ActivateFleeToExit(); +int GetFleeToExit(); + +//MASTER LOCAL FUNCTIONS +void SetSpawnInCondition(int nCondition, int bValid = TRUE); +int GetSpawnInCondition(int nCondition); +void SetSpawnInLocals(int nCondition); + +//ASSOCIATE MASTER VARIABLE FUNCTIONS +void SetAssociateState(int nCondition, int bValid = TRUE); +int GetAssociateState(int nCondition); + +//ASSOCIATE FUNCTIONS +int GetAssociateCRMax(); +int GetAssociateHealMaster(); +float GetFollowDistance(); +void CheckIsUnlocked(object oLastObject); +void SetAssociateStartLocation(); +location GetAssociateStartLocation(); + +//AMBIENT ANIMATION COMMANDS +void PlayMobileAmbientAnimations(); +void PlayImmobileAmbientAnimations(); + +//BEHAVIOR LOCAL FUNCTIONS +void SetBehaviorState(int nCondition, int bValid = TRUE); +int GetBehaviorState(int nCondition); +void DetermineSpecialBehavior(object oIntruder = OBJECT_INVALID); + +//:://///////////////////////////////////////////// +//:: Master Local Get and Set +//:: FileName +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + All On Spawn in conditions in the game are now + being stored within one local. The get and set + changed or checks the condition of this one + Hex local. The NW_FLAG_XXX variables above + allow for the user of these functions throughout + the generic scripts. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Nov 14, 2001 +//::////////////////////////////////////////////// + +void SetSpawnInCondition(int nCondition, int bValid = TRUE) +{ + int nPlot = GetLocalInt(OBJECT_SELF, "NW_GENERIC_MASTER"); + if(bValid == TRUE) + { + nPlot = nPlot | nCondition; + SetSpawnInLocals(nCondition); + SetLocalInt(OBJECT_SELF, "NW_GENERIC_MASTER", nPlot); + } + else if (bValid == FALSE) + { + nPlot = nPlot & ~nCondition; + SetLocalInt(OBJECT_SELF, "NW_GENERIC_MASTER", nPlot); + } +} + +int GetSpawnInCondition(int nCondition) +{ + int nPlot = GetLocalInt(OBJECT_SELF, "NW_GENERIC_MASTER"); + if(nPlot & nCondition) + { + return TRUE; + } + return FALSE; +} + +void SetSpawnInLocals(int nCondition) +{ + if(nCondition == NW_FLAG_SHOUT_ATTACK_MY_TARGET) + { + SetListenPattern(OBJECT_SELF, "NW_ATTACK_MY_TARGET", 5); + } + else if(nCondition == NW_FLAG_ESCAPE_RETURN) + { + SetLocalLocation(OBJECT_SELF, "NW_GENERIC_START_POINT", GetLocation(OBJECT_SELF)); + } + else if(nCondition == NW_FLAG_TELEPORT_LEAVE) + { + SetLocalLocation(OBJECT_SELF, "NW_GENERIC_START_POINT", GetLocation(OBJECT_SELF)); + } +} + +//:://///////////////////////////////////////////// +//:: DetermineCombatRound +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + This function is the master function for the + generic include and is called from the main + script. This function is used in lieu of + any actual scripting. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 16, 2001 +//::////////////////////////////////////////////// + +void DetermineCombatRound(object oIntruder = OBJECT_INVALID, int nAI_Difficulty = 10) +{ + + if(GetAssociateState(NW_ASC_IS_BUSY)) + { + return; + } + if(BashDoorCheck(oIntruder)) {return;} + int nClass = DetermineClassToUse(); + + //This check is to see if the master is being attacked and in need of help + + if(GetAssociateState(NW_ASC_HAVE_MASTER)) + { + if(GetAssociateState(NW_ASC_MODE_DEFEND_MASTER)) + { + oIntruder = GetLastHostileActor(GetMaster()); + if(!GetIsObjectValid(oIntruder)) + { + oIntruder = GetGoingToBeAttackedBy(GetMaster()); + if(!GetIsObjectValid(oIntruder)) + { + oIntruder = GetLastHostileActor(); + if(!GetIsObjectValid(oIntruder)) + { + return; + } + else if(!GetIsEnemy(oIntruder)) + { + oIntruder = OBJECT_INVALID; + } + } + } + } + } + if(GetIsObjectValid(GetMaster())) + { + if(GetDistanceToObject(GetMaster()) > 15.0) + { + if(GetCurrentAction(GetMaster()) != ACTION_FOLLOW) + { + ClearAllActions(); + //ActionAttack(OBJECT_INVALID); + ActionForceFollowObject(GetMaster(), GetFollowDistance()); + //ActionForceMoveToObject(GetMaster(), TRUE, GetFollowDistance(), 5.0); + return; + } + } + } + + int nOffense = d100(); + + if(GetIsObjectValid(oIntruder) || + GetIsObjectValid(GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN)) || + (GetIsObjectValid(oIntruder) && GetIsObjectValid(GetMaster()))) + { + int nAlignment = GetAlignmentGoodEvil(OBJECT_SELF); + //AM I AN ARCANE SPELLCASTER? + if(nClass == CLASS_TYPE_WIZARD || nClass == CLASS_TYPE_SORCERER || nClass == CLASS_TYPE_BARD) + { + if(nClass == CLASS_TYPE_BARD) + { + if(TalentHeal()) {return;} + if(TalentBardSong()) {return;} + } + if(GetRacialType(OBJECT_SELF) != RACIAL_TYPE_ABERRATION || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_BEAST || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_ELEMENTAL || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_VERMIN || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_MAGICAL_BEAST || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_UNDEAD || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_DRAGON || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_ANIMAL) + { + //Use healing potions to not die + if(TalentHealingSelf()) {return;} + } + + // Added by Jugalator: + if (TalentImportantArcaneSpells(nClass)) { return; } + + //Use a defensive talent fire then offensive if that fails + if(nOffense > 75) + { + if(TalentAdvancedProtectSelf()){return;} //******************************************// + //Use protections on Self + if(TalentUseProtectionOnSelf()) {return;} + //Use protection on allies + if(TalentUseProtectionOthers()) {return;} + //Check if the character can enhance themselves + if(TalentUseEnhancementOnSelf()) {return;} + //Use Enhancements on the part + if(TalentEnhanceOthers()) {return;} + //Check for Personal Attackers + if(TalentMeleeAttacked(oIntruder)) {return;} + //Check for Ranged Attackers + if(TalentRangedAttackers(oIntruder)) {return;} + //Check for Ranged Enemies + if(TalentRangedEnemies(oIntruder)) {return;} + //Check for Allies + if(TalentSummonAllies()) {return;} + //Spell Attack + if(TalentSpellAttack(oIntruder)) {return;} + //Attack if out of spells + if(TalentMeleeAttack(oIntruder)) {return;} + } + else //Use a offensive talent only + { + if(GetIsObjectValid(GetMaster())) + { + if(TalentUseProtectionOthers()) {return;} + if(TalentEnhanceOthers()) {return;} + } + //Check for Personal Attackers + if(TalentMeleeAttacked(oIntruder)) {return;} + //Check for Ranged Attackers + if(TalentRangedAttackers(oIntruder)) {return;} + //Check for Ranged Enemies + if(TalentRangedEnemies(oIntruder)) {return;} + //Summon Allies + if(TalentSummonAllies()) {return;} + //Spell Attack + if(TalentSpellAttack(oIntruder)) {return;} + //Attack if out of spells + if(TalentMeleeAttack(oIntruder)) {return;} + } + return; + } + else if((nClass == CLASS_TYPE_CLERIC || nClass == CLASS_TYPE_DRUID) && GetRacialType(OBJECT_SELF) != RACIAL_TYPE_UNDEAD) + { + //Cast spells specific to the main enemy I am facing. + if(TalentAdvancedProtectSelf()) {return;} //******************************************// + //Remove negative effects from allies + if(TalentCureCondition()) {return;} + //Turning check + if(TalentUseTurning()) {return;} + //Check if allies or self are injured + if(TalentHeal()) {return;} + //Use healing potions to not die + if(TalentHealingSelf()) {return;} + + if(nOffense > 75) + { + if(GetNumberOfMeleeAttackers() > 1) + { + if(TalentMeleeAttacked(oIntruder)) {return;} + if(TalentMeleeAttack(oIntruder)) {return;} + } + else if(GetNumberOfMeleeAttackers() == 1) + { + if(TalentMeleeAttack(oIntruder)) {return;} + } + else + { + // Added by Jugalator: + if (TalentImportantDivineSpells(nClass)) {return;} + + //Check if the character can enhance themselves + if(TalentUseEnhancementOnSelf()) {return;} + // Check for enhancements on party + if(TalentEnhanceOthers()) {return;} + //Cast general protection on self + if(TalentUseProtectionOnSelf()) {return;} + //Check for Allies + if(TalentUseProtectionOthers()) {return;} + //Check for Allies + if(TalentSummonAllies()) {return;} + //Check for Personal Attackers + if(Random(101) > 75) + { + if(TalentMeleeAttacked(oIntruder)) {return;} + } + //Check for Ranged Attackers + if(TalentRangedAttackers(oIntruder)) {return;} + //Check for Ranged Enemies + if(TalentRangedEnemies(oIntruder)) {return;} + //Attack if out of spells + if(TalentMeleeAttack(oIntruder)) {return;} + } + } + else + { + // Added by Jugalator: + if (TalentImportantDivineSpells(nClass)) {return;} + + //Cast Summon Spells + if(TalentSummonAllies()) {return;} + //Check for Personal Attackers + if(TalentMeleeAttacked(oIntruder)) {return;} + //Check for Ranged Attackers + if(TalentRangedAttackers(oIntruder)) {return;} + //Check for Ranged Enemies + if(TalentRangedEnemies(oIntruder)) {return;} + //Spell Attack + if(TalentSpellAttack(oIntruder)) {return;} + //Attack if out of spells + if(TalentMeleeAttack(oIntruder)) {return;} + } + return; + } + else if((nClass == CLASS_TYPE_CLERIC || nClass == CLASS_TYPE_DRUID) && GetRacialType(OBJECT_SELF) == RACIAL_TYPE_UNDEAD) + { + //Turning check + if(TalentUseTurning()) {return;} + if(nOffense > 75) + { + if(GetNumberOfMeleeAttackers() > 1) + { + if(TalentMeleeAttacked(oIntruder)) {return;} + if(TalentMeleeAttack(oIntruder)) {return;} + } + else if(GetNumberOfMeleeAttackers() == 1) + { + if(TalentMeleeAttack(oIntruder)) {return;} + } + else + { + //Check if the character can enhance themselves + if(TalentUseEnhancementOnSelf()) {return;} + // Check for enhancements on party + if(TalentEnhanceOthers()) {return;} + //Cast general protection on self + if(TalentUseProtectionOnSelf()) {return;} + //Check for Allies + if(TalentUseProtectionOthers()) {return;} + //Check for Allies + if(TalentSummonAllies()) {return;} + //Check for Personal Attackers + if(Random(101) > 75) + { + if(TalentMeleeAttacked(oIntruder)) {return;} + } + //Check for Ranged Attackers + if(TalentRangedAttackers(oIntruder)) {return;} + //Check for Ranged Enemies + if(TalentRangedEnemies(oIntruder)) {return;} + //Attack if out of spells + if(TalentMeleeAttack(oIntruder)) {return;} + } + } + else + { + //Cast Summon Spells + if(TalentSummonAllies()) {return;} + //Check for Personal Attackers + if(TalentMeleeAttacked(oIntruder)) {return;} + //Check for Ranged Attackers + if(TalentRangedAttackers(oIntruder)) {return;} + //Spell Attack + if(TalentSpellAttack(oIntruder)) {return;} + //Check for Ranged Enemies + if(TalentRangedEnemies(oIntruder)) {return;} + //Attack if out of spells + if(TalentMeleeAttack(oIntruder)) {return;} + } + return; + } + else if(nClass == CLASS_TYPE_FIGHTER || + nClass == CLASS_TYPE_ROGUE || + nClass == CLASS_TYPE_PALADIN || + nClass == CLASS_TYPE_RANGER || + nClass == CLASS_TYPE_MONK || + nClass == CLASS_TYPE_BARBARIAN) + { + if(GetRacialType(OBJECT_SELF) != RACIAL_TYPE_ABERRATION || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_BEAST || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_ELEMENTAL || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_VERMIN || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_MAGICAL_BEAST || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_UNDEAD || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_DRAGON || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_ANIMAL || + GetRacialType(OBJECT_SELF) != RACIAL_TYPE_CONSTRUCT) + { + //Use healing potions to not die + if(TalentHealingSelf()) {return;} + //Use potions of enhancement and protection + if(TalentBuffSelf()) {return;} + } + +/* + * DISABLED since 0.70 beta since the spell casting appear to be bugged. + * I'll enable them in a future patch if I manage to get them to work, + * but until then... + */ +/* + // Added by Jugalator: + if (nClass == CLASS_TYPE_RANGER) { + if (TalentImportantRangerSpells()) { return; } + } else if (nClass == CLASS_TYPE_PALADIN) { + if (TalentImportantPaladinSpells()) { return; } + } +*/ + //Check if the character can enhance themselves + if(TalentUseEnhancementOnSelf()) {return;} + //Check for Paladins who can turn undead + if(TalentUseTurning()) {return;} + //Sneak Attack Flanking attack + if(TalentSneakAttack()) {return;} + //Use melee skills and feats + if(TalentMeleeAttack(oIntruder)) {return;} + return; + } + else if(nClass == CLASS_TYPE_COMMONER) + { + if(TalentFlee(oIntruder)) {return;} + return; + } + else if(nClass == CLASS_TYPE_UNDEAD) + { + //SpeakString("Determining Combat Round Undead"); + if(TalentPersistentAbilities()) {return;} + + // Added by Jugalator: +// if (Jug_IsArcaneCaster()) +// { + if (TalentImportantArcaneSpells(nClass)) {return;} +// } +// if (Jug_IsDivineCaster()) +// { + if (TalentImportantDivineSpells(nClass)) {return;} +// } + + if(nOffense > 75) + { + if(TalentAdvancedProtectSelf()){return;} + //Check if the character can enhance themselves + if(TalentUseEnhancementOnSelf()) {return;} + // Check for enhancements on party + if(TalentEnhanceOthers()) {return;} + //Use protections on Self + if(TalentUseProtectionOnSelf()) {;return;}; + //Check for Allies + if(TalentUseProtectionOthers()) {return;} + //Check for Allies + if(TalentSummonAllies()) {return;} + //Check for Personal Attackers + if(TalentMeleeAttacked(oIntruder)) {return;} + //Check for Ranged Attackers + if(TalentRangedAttackers(oIntruder)) {return;} + //Check for Ranged Enemies + if(TalentRangedEnemies(oIntruder)) {return;} + //Attack if out of spells + if(TalentMeleeAttack(oIntruder)) {return;} + } + else + { + if(TalentSummonAllies()) {return;} + //Check for Personal Attackers + if(TalentMeleeAttacked(oIntruder)) {return;} + //Check for Ranged Attackers + if(TalentRangedAttackers(oIntruder)) {return;} + //Check for Ranged Enemies + if(TalentRangedEnemies(oIntruder)) {return;} + //Spell Attack + if(TalentSpellAttack(oIntruder)) {return;} + //Attack if out of spells + if(TalentMeleeAttack(oIntruder)) {return;} + } + return; + } + else if(nClass == CLASS_TYPE_DRAGON) + { + //Use healing + if(TalentHeal()) {return;} + if(TalentCureCondition()) {return;} + if(d100() < 15) + { + if(TalentRangedEnemies(oIntruder)) {return;} + if(TalentMeleeAttacked(oIntruder)) {return;} + } + if(TalentPersistentAbilities()) {return;} + if(TalentAdvancedProtectSelf()){return;} + if(TalentUseProtectionOnSelf()) {return;} + if(TalentDragonCombat(oIntruder)) {return;} + } + else if (nClass == CLASS_TYPE_OUTSIDER) + { + if(TalentPersistentAbilities()) {return;} + if(TalentSummonAllies()) {return;} + if(d100() > 50) + { + if(TalentMeleeAttack(oIntruder)) {return;} + } + if(GetAlignmentGoodEvil(OBJECT_SELF) == ALIGNMENT_GOOD) + { + if(TalentHeal()) {return;} + } + + if(TalentHealingSelf()) {return;} + + // Added by Jugalator: +// if (Jug_IsArcaneCaster()) +// { + if (TalentImportantArcaneSpells(nClass)) {return;} +// } +// if (Jug_IsDivineCaster()) +// { + if (TalentImportantDivineSpells(nClass)) {return;} +// } + + if(TalentAdvancedProtectSelf()){return;} + if(TalentUseProtectionOnSelf()) {return;} + if(TalentUseEnhancementOnSelf()) {return;} + if(TalentMeleeAttacked(oIntruder)) {return;} + if(TalentRangedAttackers(oIntruder)) {return;} + if(TalentRangedEnemies(oIntruder)) {return;} + if(TalentSpellAttack(oIntruder)) {return;} + if(TalentMeleeAttack(oIntruder)) {return;} + } + else if (nClass == CLASS_TYPE_CONSTRUCT || nClass == CLASS_TYPE_ELEMENTAL) + { + if(TalentPersistentAbilities()) {return;} + if(TalentSummonAllies()) {return;} + if(d100() > 50) + { + if(TalentMeleeAttack(oIntruder)) {return;} + } + + // Added by Jugalator: +// if (Jug_IsArcaneCaster()) +// { + if (TalentImportantArcaneSpells(nClass)) {return;} +// } +// if (Jug_IsDivineCaster()) +// { + if (TalentImportantDivineSpells(nClass)) {return;} +// } + if(TalentAdvancedProtectSelf()){return;} + if(TalentUseProtectionOnSelf()) {return;} + if(TalentUseEnhancementOnSelf()) {return;} + if(TalentMeleeAttacked(oIntruder)) {return;} + if(TalentRangedAttackers(oIntruder)) {return;} + if(TalentRangedEnemies(oIntruder)) {return;} + if(TalentSpellAttack(oIntruder)) {return;} + if(TalentMeleeAttack(oIntruder)) {return;} + } + else + { + if(TalentPersistentAbilities()) {return;} + //Check if I am injured + if(TalentHeal()) {return;} + if(nOffense > 75) + { + // Added by Jugalator: +// if (Jug_IsArcaneCaster()) +// { + if (TalentImportantArcaneSpells(nClass)) {return;} +// } +// if (Jug_IsDivineCaster()) +// { + if (TalentImportantDivineSpells(nClass)) {return;} +// } + + if(TalentAdvancedProtectSelf()){return;} + //Check if the character can enhance themselves + if(TalentUseEnhancementOnSelf()) {return;} + // Check for enhancements on party + if(TalentEnhanceOthers()) {return;} + //Use protections on Self + if(TalentUseProtectionOnSelf()) {return;} + //Check for Allies + if(TalentUseProtectionOthers()) {return;} + //Check for Allies + if(TalentSummonAllies()) {return;} + //Check for Personal Attackers + if(TalentMeleeAttacked(oIntruder)) {return;} + //Check for Ranged Attackers + if(TalentRangedAttackers(oIntruder)) {return;} + //Check for Ranged Enemies + if(TalentRangedEnemies(oIntruder)) {return;} + //Attack if out of spells + if(TalentMeleeAttack(oIntruder)) {return;} + } + else + { + // Added by Jugalator: +// if (Jug_IsArcaneCaster()) +// { + if (TalentImportantArcaneSpells(nClass)) {return;} +// } +// if (Jug_IsDivineCaster()) +// { + if (TalentImportantDivineSpells(nClass)) {return;} +// } + + if(TalentSummonAllies()) {return;} + //Check for Personal Attackers + if(TalentMeleeAttacked(oIntruder)) {return;} + //Check for Ranged Attackers + if(TalentRangedAttackers(oIntruder)) {return;} + //Check for Ranged Enemies + if(TalentRangedEnemies(oIntruder)) {return;} + //Spell Attack + if(TalentSpellAttack(oIntruder)) {return;} + //Attack if out of spells + if(TalentMeleeAttack(oIntruder)) {return;} + } + return; + } + } + //This check is to make sure that people do not drop out of combat before they are supposed to. + object oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + if(GetIsObjectValid(oTarget)) + { + SpeakString("Danger Will Robinson Danger"); + DetermineCombatRound(oTarget); + return; + } + //This is a call to the function which determines which way point to go back to. + ClearAllActions(); + SetLocalObject(OBJECT_SELF, "NW_GENERIC_LAST_ATTACK_TARGET", OBJECT_INVALID); + WalkWayPoints(); +} + +//:://///////////////////////////////////////////// +//:: SetListeningPatterns +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sets the correct listen checks on the NPC by + determining what talents they possess or what + class they use. + + This is also a good place to set up all of + the sleep and appear disappear animations for + various models. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 24, 2001 +//::////////////////////////////////////////////// + +void SetListeningPatterns() +{ + //There is a 70% chance to make someone sleep if it is night. + //If they have no way points to walk. + if(GetIsNight() && !CheckWayPoints()) + { + if(GetSpawnInCondition(NW_FLAG_SLEEPING_AT_NIGHT)) + { + if(d10() <= 7) + { + int nRand = Random(361); + SetFacing(IntToFloat(nRand)); + //effect eSleep = EffectSleep(); + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, eSleep, OBJECT_SELF); + } + } + } + if(GetSpawnInCondition(NW_FLAG_APPEAR_SPAWN_IN_ANIMATION)) + { + + effect eAppear = EffectAppear(); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eAppear, OBJECT_SELF); + } + + SetListening(OBJECT_SELF, TRUE); + + SetListenPattern(OBJECT_SELF, "NW_I_WAS_ATTACKED", 1); + + //This sets the commoners listen pattern to mob under + //certain conditions + if(GetLevelByClass(CLASS_TYPE_COMMONER) > 0) + { + SetListenPattern(OBJECT_SELF, "NW_MOB_ATTACK", 2); + } + SetListenPattern(OBJECT_SELF, "NW_I_AM_DEAD", 3); + + //Set a custom listening pattern for the creature so that placables with + //"NW_BLOCKER" + Blocker NPC Tag will correctly call to their blockers. + string sBlocker = "NW_BLOCKER_BLK_" + GetTag(OBJECT_SELF); + SetListenPattern(OBJECT_SELF, sBlocker, 4); + SetListenPattern(OBJECT_SELF, "NW_CALL_TO_ARMS", 6); +} + +//:://///////////////////////////////////////////// +//:: Respond To Shouts +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Allows the listener to react in a manner + consistant with the given shout but only to one + combat shout per round +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 25, 2001 +//::////////////////////////////////////////////// + +//NOTE ABOUT COMMONERS +/* + Commoners are universal cowards. If you attack anyone they will flee for 4 seconds away from the attacker. + However to make the commoners into a mob, make a single commoner at least 10th level of the same faction. + If that higher level commoner is attacked or killed then the commoners will attack the attacker. They will disperse again + after some of them are killed. Should NOT make multi-class creatures using commoners. +*/ +//NOTE ABOUT BLOCKERS +/* + It should be noted that the Generic Script for On Dialogue attempts to get a local set on the shouter by itself. + This object represents the LastOpenedBy object. It is this object that becomes the oIntruder within this function. +*/ + +//NOTE ABOUT INTRUDERS +/* + The intruder object is for cases where a placable needs to pass a LastOpenedBy Object or a AttackMyAttacker + needs to make his attacker the enemy of everyone. +*/ + +void RespondToShout(object oShouter, int nShoutIndex, object oIntruder = OBJECT_INVALID) +{ + switch (nShoutIndex) + { + case 1://NW_GENERIC_SHOUT_I_WAS_ATTACKED: + { + object oTarget = oIntruder; + if(!GetIsObjectValid(oTarget)) + { + oTarget = GetLastHostileActor(oShouter); + } + if(!GetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL)) + { + if(!GetLevelByClass(CLASS_TYPE_COMMONER)) + { + if(!GetIsObjectValid(GetAttemptedAttackTarget()) && !GetIsObjectValid(GetAttemptedSpellTarget())) + { + if(GetIsObjectValid(oTarget)) + { + if(!GetIsFriend(oTarget) && GetIsFriend(oShouter)) + { + RemoveAmbientSleep(); + //DetermineCombatRound(oTarget); + DetermineCombatRound(GetLastHostileActor(oShouter)); + } + } + } + } + else if (GetLevelByClass(CLASS_TYPE_COMMONER, oShouter) >= 10) + { + ActionAttack(GetLastHostileActor(oShouter)); + } + else + { + DetermineCombatRound(oIntruder); + } + } + else + { + DetermineSpecialBehavior(); + } + } + break; + + case 2://NW_GENERIC_SHOUT_MOB_ATTACK: + { + if(!GetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL)) + { + //Is friendly check to make sure that only like minded commoners attack. + if(GetIsFriend(oShouter)) + { + ActionAttack(GetLastHostileActor(oShouter)); + } + //if(TalentMeleeAttack()) {return;} + } + else + { + DetermineSpecialBehavior(); + } + } + break; + + case 3://NW_GENERIC_SHOUT_I_AM_DEAD: + { + if(!GetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL)) + { + //Use I was attacked script above + if(!GetLevelByClass(CLASS_TYPE_COMMONER)) + { + if(!GetIsObjectValid(GetAttemptedAttackTarget()) && !GetIsObjectValid(GetAttemptedSpellTarget())) + { + if(GetIsObjectValid(GetLastHostileActor(oShouter))) + { + if(!GetIsFriend(GetLastHostileActor(oShouter)) && GetIsFriend(oShouter)) + { + DetermineCombatRound(GetLastHostileActor(oShouter)); + } + } + } + } + else if (GetLevelByClass(CLASS_TYPE_COMMONER, oShouter) >= 10) + { + ActionAttack(GetLastHostileActor(oShouter)); + } + else + { + DetermineCombatRound(); + } + + } + else + { + DetermineSpecialBehavior(); + } + } + break; + //For this shout to work the object must shout the following + //string sHelp = "NW_BLOCKER_BLK_" + GetTag(OBJECT_SELF); + case 4: //BLOCKER OBJECT HAS BEEN DISTURBED + { + if(!GetLevelByClass(CLASS_TYPE_COMMONER)) + { + if(!GetIsObjectValid(GetAttemptedAttackTarget()) && !GetIsObjectValid(GetAttemptedSpellTarget())) + { + if(GetIsObjectValid(oIntruder)) + { + SetIsTemporaryEnemy(oIntruder); + DetermineCombatRound(oIntruder); + } + } + } + else if (GetLevelByClass(CLASS_TYPE_COMMONER, oShouter) >= 10) + { + ActionAttack(oIntruder); + } + else + { + DetermineCombatRound(); + } + } + break; + + case 5: //ATTACK MY TARGET + { + AdjustReputation(oIntruder, OBJECT_SELF, -100); + if(GetIsFriend(oShouter)) + { + SetIsTemporaryEnemy(oIntruder); + ClearAllActions(); + DetermineCombatRound(oIntruder); + } + } + break; + + case 6: //CALL_TO_ARMS + { + //This was once commented out. + DetermineCombatRound(); + } + break; + + //ASSOCIATE SHOUT RESPONSES ****************************************************************************** + + case ASSOCIATE_COMMAND_ATTACKNEAREST: //Used to de-activate AGGRESSIVE DEFEND MODE + { + ResetHenchmenState(); + SetAssociateState(NW_ASC_MODE_DEFEND_MASTER, FALSE); + SetAssociateState(NW_ASC_MODE_STAND_GROUND, FALSE); + DetermineCombatRound(); + } + break; + + case ASSOCIATE_COMMAND_FOLLOWMASTER: //Only used to retreat, or break free from Stand Ground Mode + { + ResetHenchmenState(); + SetAssociateState(NW_ASC_MODE_STAND_GROUND, FALSE); + DelayCommand(2.5, PlayVoiceChat(VOICE_CHAT_CANDO)); + + if(GetAssociateState(NW_ASC_AGGRESSIVE_STEALTH)) + { + //ActionUseSkill(SKILL_HIDE, OBJECT_SELF); + } + if(GetAssociateState(NW_ASC_AGGRESSIVE_SEARCH)) + { + ActionUseSkill(SKILL_SEARCH, OBJECT_SELF); + } + ActionForceFollowObject(GetMaster(), GetFollowDistance()); + SetAssociateState(NW_ASC_IS_BUSY); + DelayCommand(5.0, SetAssociateState(NW_ASC_IS_BUSY, FALSE)); + } + break; + + case ASSOCIATE_COMMAND_GUARDMASTER: //Used to activate AGGRESSIVE DEFEND MODE + { + ResetHenchmenState(); + DelayCommand(2.5, PlayVoiceChat(VOICE_CHAT_CANDO)); + //Companions will only attack the Masters Last Attacker + SetAssociateState(NW_ASC_MODE_DEFEND_MASTER); + SetAssociateState(NW_ASC_MODE_STAND_GROUND, FALSE); + if(GetIsObjectValid(GetLastHostileActor(GetMaster()))) + { + DetermineCombatRound(GetLastHostileActor(GetMaster())); + } + } + break; + + case ASSOCIATE_COMMAND_HEALMASTER: //Ignore current healing settings and heal me now + { + ResetHenchmenState(); + //SetCommandable(TRUE); + if(TalentCureCondition()) {DelayCommand(2.0, PlayVoiceChat(VOICE_CHAT_CANDO)); return;} + if(TalentHeal(TRUE)) {DelayCommand(2.0, PlayVoiceChat(VOICE_CHAT_CANDO)); return;} + DelayCommand(2.5, PlayVoiceChat(VOICE_CHAT_CANTDO)); + } + break; + + case ASSOCIATE_COMMAND_MASTERFAILEDLOCKPICK: //Check local for Re-try locked doors and + { + if(!GetAssociateState(NW_ASC_MODE_STAND_GROUND)) + { + if(GetAssociateState(NW_ASC_RETRY_OPEN_LOCKS)) + { + int bValid = TRUE; + object oLastObject = GetLockedObject(GetMaster()); + int nSkill = GetSkillRank(SKILL_OPEN_LOCK) - GetAbilityModifier(ABILITY_DEXTERITY); + + if(GetIsObjectValid(oLastObject) && GetPlotFlag(oLastObject) == FALSE) + { + if(GetIsDoorActionPossible(oLastObject, DOOR_ACTION_KNOCK) || GetIsPlaceableObjectActionPossible(oLastObject, PLACEABLE_ACTION_KNOCK)) + { + ClearAllActions(); + PlayVoiceChat(VOICE_CHAT_CANDO); + ActionCastSpellAtObject(SPELL_KNOCK, oLastObject); + ActionWait(1.0); + bValid = FALSE; + } + else if (GetIsDoorActionPossible(oLastObject, DOOR_ACTION_UNLOCK)|| GetIsPlaceableObjectActionPossible(oLastObject, PLACEABLE_ACTION_UNLOCK)) + { + ClearAllActions(); + PlayVoiceChat(VOICE_CHAT_PICKLOCK); + ActionWait(1.0); + ActionUseSkill(SKILL_OPEN_LOCK,oLastObject); + bValid = FALSE; + } + else if(nSkill < 5 && GetAbilityScore(OBJECT_SELF, ABILITY_STRENGTH) >= 16 && GetSkillRank(SKILL_OPEN_LOCK) <= 0) + { + if(GetIsDoorActionPossible(oLastObject, DOOR_ACTION_BASH) || GetIsPlaceableObjectActionPossible(oLastObject, PLACEABLE_ACTION_BASH)) + { + ClearAllActions(); + PlayVoiceChat(VOICE_CHAT_CANDO); + ActionEquipMostDamagingMelee(oLastObject); + ActionAttack(oLastObject); + SetLocalObject(OBJECT_SELF, "NW_GENERIC_DOOR_TO_BASH", oLastObject); + bValid = FALSE; + } + } + if(bValid == TRUE) + { + //ClearAllActions(); + PlayVoiceChat(VOICE_CHAT_CANTDO); + } + else + { + ActionDoCommand(PlayVoiceChat(VOICE_CHAT_TASKCOMPLETE)); + } + } + } + } + } + break; + + case ASSOCIATE_COMMAND_MASTERUNDERATTACK: //Check whether the master has you in AGGRESSIVE DEFEND MODE + { + if(!GetAssociateState(NW_ASC_MODE_STAND_GROUND)) + { + //Check the henchmens current target + object oTarget = GetAttemptedAttackTarget(); + if(!GetIsObjectValid(oTarget)) + { + oTarget = GetAttemptedSpellTarget(); + if(!GetIsObjectValid(oTarget)) + { + if(GetAssociateState(NW_ASC_MODE_DEFEND_MASTER)) + { + //PlayVoiceChat(VOICE_CHAT_ENEMIES); + DetermineCombatRound(GetLastHostileActor(GetMaster())); + } + else + { + //PlayVoiceChat(VOICE_CHAT_ENEMIES); + DetermineCombatRound(); + } + } + } + //Switch targets only if the target is not attacking the master and is greater than 6.0 from + //the master. + if(GetAttackTarget(oTarget) != GetMaster() && GetDistanceBetween(oTarget, GetMaster()) > 6.0) + { + if(GetAssociateState(NW_ASC_MODE_DEFEND_MASTER) && GetIsObjectValid(GetLastHostileActor(GetMaster()))) + { + //PlayVoiceChat(VOICE_CHAT_ENEMIES); + DetermineCombatRound(GetLastHostileActor(GetMaster())); + } + } + } + } + break; + + case ASSOCIATE_COMMAND_STANDGROUND: //No longer follow the master or guard him + { + SetAssociateState(NW_ASC_MODE_STAND_GROUND); + SetAssociateState(NW_ASC_MODE_DEFEND_MASTER, FALSE); + DelayCommand(2.0, PlayVoiceChat(VOICE_CHAT_CANDO)); + ActionAttack(OBJECT_INVALID); + ClearAllActions(); + } + break; + + case ASSOCIATE_COMMAND_MASTERSAWTRAP: + { + int nCheck = 0; + if(!GetIsInCombat()) + { + if(!GetAssociateState(NW_ASC_MODE_STAND_GROUND)) + { + object oTrap = GetLastTrapDetected(); + if(GetIsObjectValid(oTrap)) + { + int nTrapDC = GetTrapDisarmDC(oTrap); + int nSkill = GetSkillRank(SKILL_DISABLE_TRAP); + int nMod = GetAbilityModifier(ABILITY_DEXTERITY); + if((nSkill - nMod) > 0) + { + nSkill = nSkill + 20 - nTrapDC; + } + else + { + nSkill = 0; + nCheck = 1; + } + + if(GetCurrentAction(OBJECT_SELF) != ACTION_DISABLETRAP && nSkill > 0) + { + PlayVoiceChat(VOICE_CHAT_STOP); + if(GetHasSkill(SKILL_DISABLE_TRAP, OBJECT_SELF)) + { + ClearAllActions(); + ActionUseSkill(SKILL_DISABLE_TRAP, oTrap); + ActionDoCommand(SetCommandable(TRUE)); + ActionDoCommand(PlayVoiceChat(VOICE_CHAT_TASKCOMPLETE)); + SetCommandable(FALSE); + nCheck = 2; + } + } + else if(nCheck = 0 && + GetSkillRank(SKILL_DISABLE_TRAP) > 0 && + GetCurrentAction(OBJECT_SELF) != ACTION_DISABLETRAP) + { + PlayVoiceChat(VOICE_CHAT_CANTDO); + } + } + } + } + } + break; + + case ASSOCIATE_COMMAND_MASTERATTACKEDOTHER: + { + if(!GetAssociateState(NW_ASC_MODE_STAND_GROUND)) + { + if(!GetAssociateState(NW_ASC_MODE_DEFEND_MASTER)) + { + if(!GetIsFighting(OBJECT_SELF)) + { + //PlayVoiceChat(VOICE_CHAT_ENEMIES); + object oAttack = GetAttackTarget(GetMaster()); + if(GetIsObjectValid(oAttack) && GetObjectSeen(oAttack)) + { + ClearAllActions(); + DetermineCombatRound(oAttack); + } + } + } + } + } + break; + + case ASSOCIATE_COMMAND_MASTERGOINGTOBEATTACKED: + { + if(!GetAssociateState(NW_ASC_MODE_STAND_GROUND)) + { + if(!GetIsFighting(OBJECT_SELF)) + { + object oAttacker = GetGoingToBeAttackedBy(GetMaster()); + if(GetIsObjectValid(oAttacker) && GetObjectSeen(oAttacker)) + { + ClearAllActions(); + //PlayVoiceChat(VOICE_CHAT_ENEMIES); + DetermineCombatRound(oAttacker); + } + } + } + } + break; + + case ASSOCIATE_COMMAND_LEAVEPARTY: + { + object oMaster = GetMaster(); + if(GetIsObjectValid(oMaster)) + { + ClearAllActions(); + if(GetAssociate(ASSOCIATE_TYPE_HENCHMAN, GetMaster()) == OBJECT_SELF) + { + AddJournalQuestEntry("Henchman",50,GetMaster(),FALSE,FALSE,TRUE); + } + SetLocalObject(OBJECT_SELF,"NW_L_FORMERMASTER", oMaster); + RemoveHenchman(oMaster, OBJECT_SELF); + } + } + break; + } +} + +//:://///////////////////////////////////////////// +//:: Set and Get NPC Warning Status +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + This function sets a local int on OBJECT_SELF + which will be checked in the On Attack, On + Damaged and On Disturbed scripts to check if + the offending poarty was a PC and was friendly. + The Get will return the status of the local. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 29, 2001 +//::////////////////////////////////////////////// + +void SetNPCWarningStatus(int nStatus = TRUE) +{ + SetLocalInt(OBJECT_SELF, "NW_GENERIC_WARNING_STATUS", nStatus); +} + +int GetNPCWarningStatus() +{ + return GetLocalInt(OBJECT_SELF, "NW_GENERIC_WARNING_STATUS"); +} + +//:://///////////////////////////////////////////// +//:: Set SummonHelpIfAttacked +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + This function works in tandem with an encounter + to spawn in guards to fight for the attacked + NPC. MAKE SURE THE ENCOUNTER TAG IS SET TO: + + "ENC_" + NPC TAG +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 29, 2001 +//::////////////////////////////////////////////// + +//Presently Does not work with the current implementation of encounter trigger +void SetSummonHelpIfAttacked() +{ + string sEncounter = "ENC_" + GetTag(OBJECT_SELF); + object oTrigger = GetObjectByTag(sEncounter); + + if(GetIsObjectValid(oTrigger)) + { + SetEncounterActive(TRUE, oTrigger); + } +} + +//************************************************************************************************************************************ +//************************************************************************************************************************************ +// +// ESCAPE FUNCTIONS +// +//************************************************************************************************************************************ +//************************************************************************************************************************************ + +//:://///////////////////////////////////////////// +//:: Set, Get Activate,Flee to Exit +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + The target object flees to the specified + way point and then destroys itself, to be + respawned at a later point. For unkillable + sign post characters who are not meant to fight + back. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 29, 2001 +//::////////////////////////////////////////////// + +//This function is used only because ActionDoCommand can only accept void functions +void CreateSignPostNPC(string sTag, location lLocal) +{ + CreateObject(OBJECT_TYPE_CREATURE, sTag, lLocal); +} + +void ActivateFleeToExit() +{ + object oExitWay = GetWaypointByTag("EXIT_" + GetTag(OBJECT_SELF)); + int nPlot = GetLocalInt(OBJECT_SELF, "NW_GENERIC_MASTER"); + location lLocal = GetLocalLocation(OBJECT_SELF, "NW_GENERIC_START_POINT"); + float fDelay = 6.0; + string sTag = GetTag(OBJECT_SELF); + + if(nPlot & NW_FLAG_TELEPORT_RETURN || nPlot & NW_FLAG_TELEPORT_LEAVE) + { + effect eVis = EffectVisualEffect(VFX_IMP_UNSUMMON); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, OBJECT_SELF); + if(nPlot & NW_FLAG_TELEPORT_RETURN) + { + DelayCommand(fDelay, ActionDoCommand(CreateSignPostNPC(sTag, lLocal))); + } + ActionDoCommand(DestroyObject(OBJECT_SELF, 0.75)); + } + else + { + if(nPlot & NW_FLAG_ESCAPE_LEAVE) + { + ActionMoveToObject(oExitWay, TRUE); + ActionDoCommand(DestroyObject(OBJECT_SELF, 1.0)); + } + else if(nPlot & NW_FLAG_ESCAPE_RETURN) + { + ActionMoveToObject(oExitWay, TRUE); + DelayCommand(fDelay, ActionDoCommand(CreateSignPostNPC(sTag, lLocal))); + ActionDoCommand(DestroyObject(OBJECT_SELF, 1.0)); + } + } +} + +int GetFleeToExit() +{ + int nPlot = GetLocalInt(OBJECT_SELF, "NW_GENERIC_MASTER"); + if(nPlot & NW_FLAG_ESCAPE_RETURN) + { + return TRUE; + } + else if(nPlot & NW_FLAG_ESCAPE_LEAVE) + { + return TRUE; + } + else if(nPlot & NW_FLAG_TELEPORT_RETURN) + { + return TRUE; + } + else if(nPlot & NW_FLAG_TELEPORT_LEAVE) + { + return TRUE; + } + return FALSE; +} + +//************************************************************************************************************************************ +//************************************************************************************************************************************ +// +//WAY POINT WALK FUNCTIONS +// +//************************************************************************************************************************************ +//************************************************************************************************************************************ + +//:://///////////////////////////////////////////// +//:: Walk Way Point Path +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Allows specified person walk a waypoint path +*/ +//::////////////////////////////////////////////// +//:: Created By: Aidan Scanlan +//:: Created On: July 10, 2001 +//::////////////////////////////////////////////// + +void WalkWayPoints(int nRun = FALSE, float fPause = 1.0) //Run first circuit +{ + ClearAllActions(); + string DayWayString; + string NightWayString; + string DayPostString; + string NightPostString; + string sWay; + string sPost; + + //The block of code below deals with night and day cycle for postings and walkway points. + if(GetSpawnInCondition(NW_FLAG_DAY_NIGHT_POSTING)) + { + DayWayString = "WP_"; + NightWayString = "WN_"; + DayPostString = "POST_"; + NightPostString = "NIGHT_"; + } + else + { + DayWayString = "WP_"; + NightWayString = "WP_"; + DayPostString = "POST_"; + NightPostString = "POST_"; + } + + if(GetIsDay() || GetIsDawn()) + { + SetLocalString(OBJECT_SELF, "NW_GENERIC_WALKWAYS_PREFIX", DayWayString); + SetLocalString(OBJECT_SELF, "NW_GENERIC_POSTING_PREFIX", DayPostString); + } + else + { + SetLocalString(OBJECT_SELF, "NW_GENERIC_WALKWAYS_PREFIX", NightWayString); + SetLocalString(OBJECT_SELF, "NW_GENERIC_POSTING_PREFIX", NightPostString); + } + + + sWay = GetLocalString(OBJECT_SELF, "NW_GENERIC_WALKWAYS_PREFIX"); + sPost = GetLocalString(OBJECT_SELF, "NW_GENERIC_POSTING_PREFIX"); + + //I have now determined what the prefixs for the current walkways and postings are and will use them instead + // of POST_ and WP_ + + if(GetSpawnInCondition(NW_FLAG_STEALTH)) + { + // + ActionUseSkill(SKILL_HIDE, OBJECT_SELF); + } + if(GetSpawnInCondition(NW_FLAG_SEARCH)) + { + // + ActionUseSkill(SKILL_SEARCH, OBJECT_SELF); + } + + //Test if OBJECT_SELF has waypoints to walk + string sWayTag = GetTag( OBJECT_SELF ); + sWayTag = sWay + sWayTag + "_01"; + object oWay1 = GetNearestObjectByTag(sWayTag); + if(!GetIsObjectValid(oWay1)) + { + oWay1 = GetObjectByTag(sWayTag); + } + if(GetIsObjectValid(oWay1) && GetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS)) + { + //turn off the ambient animations if the creature should walk way points. + SetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS, FALSE); + SetSpawnInCondition(NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS, FALSE); + } + + if(GetIsObjectValid(oWay1)) + { + int nNth = 1; + int nTens; + int nNum; + object oNearest = GetNearestObject(OBJECT_TYPE_WAYPOINT, OBJECT_SELF, nNth); + while (GetIsObjectValid(oNearest)) + { + string sNearestTag = GetTag(oNearest); + //removes the first 3 and last three characters from the waypoint's tag + //and checks it against his own tag. Waypoint tag format is WP_MyTag_XX. + if( GetSubString( sNearestTag, 3, GetStringLength( sNearestTag ) - 6 ) == GetTag( OBJECT_SELF ) ) + { + string sTens = GetStringRight(GetTag(oNearest),2); + nTens = StringToInt(sTens)/10; + nNum= StringToInt(GetStringRight(GetTag(oNearest),1)); + oNearest = OBJECT_INVALID; + } + else + { + nNth++; + oNearest = GetNearestObject(OBJECT_TYPE_WAYPOINT,OBJECT_SELF,nNth); + } + } + RunCircuit(nTens, nNum, nRun, fPause); //*************************************** + ActionWait(fPause); + ActionDoCommand(RunNextCircuit(nRun, fPause)); + //ActionDoCommand(SignalEvent(OBJECT_SELF,EventUserDefined(2))); + } + else + { + sWayTag = GetTag( OBJECT_SELF ); + sWayTag = sPost + sWayTag; + oWay1 = GetNearestObjectByTag(sWayTag); + if(!GetIsObjectValid(oWay1)) + { + oWay1 = GetObjectByTag(sWayTag); + } + + if(GetIsObjectValid(oWay1)) + { + ActionForceMoveToObject(oWay1, nRun, 1.0, 60.0); + float fFacing = GetFacing(oWay1); + ActionDoCommand(SetFacing(fFacing)); + } + } + if(GetIsObjectValid(oWay1) && GetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS)) + { + SetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS, FALSE); + SetSpawnInCondition(NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS, FALSE); + } +} + +void RunNextCircuit(int nRun = FALSE, float fPause = 1.0) +{ + RunCircuit(0,1, nRun, fPause); //*************************************** + ActionWait(fPause); + ActionDoCommand(RunNextCircuit(nRun, fPause)); + //ActionDoCommand(SignalEvent(OBJECT_SELF,EventUserDefined(2))); +} + +//:://///////////////////////////////////////////// +//:: Run Circuit +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Calculates the proper path to follow along a + predetermined set of way points +*/ +//::////////////////////////////////////////////// +//:: Created By: Aidan Scanlan +//:: Created On: July 10, 2001 +//::////////////////////////////////////////////// + +void RunCircuit(int nTens, int nNum, int nRun = FALSE, float fPause = 1.0) +{ + // starting at a given way point, move sequentialy through incrementally + // increasing points until there are no more valid ones. + string sWay = GetLocalString(OBJECT_SELF, "NW_GENERIC_WALKWAYS_PREFIX"); + + object oTargetPoint = GetWaypointByTag(sWay + GetTag(OBJECT_SELF) + "_" + IntToString(nTens) +IntToString(nNum)); + + while(GetIsObjectValid(oTargetPoint)) + { + ActionWait(fPause); + ActionMoveToObject(oTargetPoint, nRun); + nNum++; + if (nNum > 9) + { + nTens++; + nNum = 0; + } + oTargetPoint = GetWaypointByTag(sWay + GetTag(OBJECT_SELF) + "_" + IntToString(nTens) +IntToString(nNum)); + } + // once there are no more waypoints available, decriment back to the last + // valid point. + nNum--; + if (nNum < 0) + { + nTens--; + nNum = 9; + } + + // start the cycle again going back to point 01 + oTargetPoint = GetWaypointByTag(sWay + GetTag(OBJECT_SELF) + "_" + IntToString(nTens) +IntToString(nNum)); + while(GetIsObjectValid(oTargetPoint)) + { + ActionWait(fPause); + ActionMoveToObject(oTargetPoint, nRun); + nNum--; + if (nNum < 0) + { + nTens--; + nNum = 9; + } + oTargetPoint = GetWaypointByTag(sWay + GetTag(OBJECT_SELF) + "_" + IntToString(nTens) +IntToString(nNum)); + } +} + +//:://///////////////////////////////////////////// +//:: Check Walkways +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + This function checks the passed in object to + see if they are supposed to be walking to + day or night postings. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Feb 26, 2002 +//::////////////////////////////////////////////// + +int CheckWayPoints(object oWalker = OBJECT_SELF) +{ + object oWay1; + object oWay2; + object oWay3; + object oWay4; + string sTag = GetTag(oWalker); + if(GetSpawnInCondition(NW_FLAG_DAY_NIGHT_POSTING)) + { + oWay2 = GetWaypointByTag("NIGHT_" + sTag); + oWay4 = GetWaypointByTag("WN_" + sTag + "_01"); + } + + oWay1 = GetWaypointByTag("POST_" + sTag); + oWay3 = GetWaypointByTag("WP_" + sTag + "_01"); + + if(GetIsObjectValid(oWay2) || GetIsObjectValid(oWay4) || GetIsObjectValid(oWay1) || GetIsObjectValid(oWay3)) + { + return TRUE; + } + return FALSE; +} + + +//::///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//:: Talent checks and use functions +//:: Copyright (c) 2001 Bioware Corp. +//::///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +/* + This is a series of functions that check + if a particular type of talent is available and + if so then use that talent. +*/ +//::///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 16, 2001 +//::///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +// PROTECT SELF +int TalentUseProtectionOnSelf() +{ + talent tUse; + int nType, nIndex; + int bValid = FALSE; + int nCR = GetAssociateCRMax(); + + tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_PROTECTION_SELF, 20); + if(!GetIsTalentValid(tUse)) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_PROTECTION_SINGLE, 20); + if(GetIsTalentValid(tUse)) + { + // + bValid = TRUE; + } + } + else + { + // + bValid = TRUE; + } + + if(bValid == TRUE) + { + nType = GetTypeFromTalent(tUse); + nIndex = GetIdFromTalent(tUse); + + if(nType == TALENT_TYPE_SPELL) + { + if(!GetHasSpellEffect(nIndex)) + { + ClearAllActions(); + + + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + else if(nType == TALENT_TYPE_FEAT) + { + if(!GetHasFeatEffect(nIndex)) + { + ClearAllActions(); + + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + else + { + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + + return FALSE; +} + +//PROTECT PARTY +int TalentUseProtectionOthers() +{ + talent tUse, tMass; + int nType, nFriends, nIndex; + int nCnt = 1; + int bValid = FALSE; + int nCR = GetAssociateCRMax(); + object oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_FRIEND, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_PROTECTION_SINGLE, nCR); + tMass = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_PROTECTION_AREAEFFECT, nCR); + + //Override the nearest target if the master wants aggressive buff spells + if(GetAssociateState(NW_ASC_AGGRESSIVE_BUFF) && GetAssociateState(NW_ASC_HAVE_MASTER)) + { + oTarget = GetMaster(); + } + + while(GetIsObjectValid(oTarget)) + { + if(GetIsTalentValid(tMass)) + { + if(CheckFriendlyFireOnTarget(oTarget) > 2) + { + nType = GetTypeFromTalent(tMass); + nIndex = GetIdFromTalent(tMass); + if(nType == TALENT_TYPE_SPELL) + { + if(!GetHasSpellEffect(nIndex, oTarget)) + { + ClearAllActions(); + ActionUseTalentOnObject(tMass, oTarget); + return TRUE; + } + } + else if(nType == TALENT_TYPE_FEAT) + { + if(!GetHasFeatEffect(nIndex, oTarget)) + { + ClearAllActions(); + + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + else + { + ClearAllActions(); + ActionUseTalentOnObject(tMass, oTarget); + return TRUE; + } + } + } + + if(GetIsTalentValid(tUse)) + { + nType = GetTypeFromTalent(tUse); + nIndex = GetIdFromTalent(tUse); + if(nType == TALENT_TYPE_SPELL) + { + if(!GetHasSpellEffect(nIndex, oTarget)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + else if(nType == TALENT_TYPE_FEAT) + { + if(!GetHasFeatEffect(nIndex, oTarget)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + else + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + nCnt++; + oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_FRIEND, OBJECT_SELF, nCnt, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + } + + return FALSE; +} + +// ENHANCE OTHERS +int TalentEnhanceOthers() +{ + talent tUse, tMass; + int nType, nFriends, nIndex; + int nCnt = 1; + int bValid = FALSE; + int nCR = GetAssociateCRMax(); + object oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_FRIEND, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_ENHANCEMENT_SINGLE, nCR); + tMass = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_ENHANCEMENT_AREAEFFECT, nCR); + + //Override the nearest target if the master wants aggressive buff spells + if(GetAssociateState(NW_ASC_AGGRESSIVE_BUFF) && GetAssociateState(NW_ASC_HAVE_MASTER)) + { + oTarget = GetMaster(); + } + while(GetIsObjectValid(oTarget)) + { + if(GetIsTalentValid(tMass)) + { + if(CheckFriendlyFireOnTarget(oTarget) > 2) + { + nType = GetTypeFromTalent(tMass); + nIndex = GetIdFromTalent(tMass); + if(nType == TALENT_TYPE_SPELL) + { + if(!GetHasSpellEffect(nIndex, oTarget)) + { + ClearAllActions(); + ActionUseTalentOnObject(tMass, oTarget); + return TRUE; + } + } + else if(nType == TALENT_TYPE_FEAT) + { + if(!GetHasFeatEffect(nIndex, oTarget)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + else + { + ClearAllActions(); + ActionUseTalentOnObject(tMass, oTarget); + return TRUE; + } + } + } + + if(GetIsTalentValid(tUse)) + { + nType = GetTypeFromTalent(tUse); + nIndex = GetIdFromTalent(tUse); + if(nType == TALENT_TYPE_SPELL) + { + + if(!GetHasSpellEffect(nIndex, oTarget)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + else if(nType == TALENT_TYPE_FEAT) + { + if(!GetHasFeatEffect(nIndex, oTarget)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + else + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + nCnt++; + oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_FRIEND, OBJECT_SELF, nCnt, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + } + + return FALSE; +} + +// ENHANCE SELF +int TalentUseEnhancementOnSelf() +{ + talent tUse; + int nType; + int bValid = FALSE; + int nIndex; + int nCR = GetAssociateCRMax(); + + tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_ENHANCEMENT_SELF, 20); + if(!GetIsTalentValid(tUse)) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_ENHANCEMENT_SINGLE, 20); + if(GetIsTalentValid(tUse)) + { + bValid = TRUE; + } + } + else + { + bValid = TRUE; + } + + if(bValid == TRUE) + { + nType = GetTypeFromTalent(tUse); + nIndex = GetIdFromTalent(tUse); + + if(nType == TALENT_TYPE_SPELL) + { + if(!GetHasSpellEffect(nIndex)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + else if(nType == TALENT_TYPE_FEAT) + { + if(!GetHasFeatEffect(nIndex)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + else + { + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + + return FALSE; +} + +// SPELL CASTER MELEE ATTACKED +int TalentMeleeAttacked(object oIntruder = OBJECT_INVALID) +{ + talent tUse; + int nMelee = GetNumberOfMeleeAttackers(); + object oTarget = oIntruder; + int nCR = GetAssociateCRMax(); + + if(!GetIsObjectValid(oIntruder) && GetIsObjectValid(GetLastHostileActor())) + { + oTarget = GetLastHostileActor(); + } + else + { + return FALSE; + } + /* + ISSUE 1: The check in this function to use a random ability after failing to use best will fail in the following + case. The creature is unable to affect the target with the spell and has only 1 spell of that type. This can + be eliminated with a check in the else to the effect of : + + else if(!CompareLastSpellCast(GetIdFromTalent(tUse))) + + This check was not put in in version 1.0 due to time constraints. + + ISSUE 2: Given the Spell Attack is the drop out check the else statements in this talent should be cut. + */ + + if(nMelee == 1) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_TOUCH, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + else + { + // Jugalator: Note - only cast random spell if best failed + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_HARMFUL_TOUCH); + if(GetIsTalentValid(tUse)) + { + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_RANGED, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + else + { + // Jugalator: Note - only cast random spell if best failed + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_HARMFUL_RANGED); + if(GetIsTalentValid(tUse)) + { + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_AREAEFFECT_DISCRIMINANT, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + else + { + // Jugalator: Note - only cast random spell if best failed + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_HARMFUL_AREAEFFECT_DISCRIMINANT); + if(GetIsTalentValid(tUse)) + { + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + } + else if (nMelee > 1) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_AREAEFFECT_DISCRIMINANT, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + else + { + // Jugalator: Note - only cast random spell if best failed + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_HARMFUL_AREAEFFECT_DISCRIMINANT); + if(GetIsTalentValid(tUse)) + { + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_TOUCH, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + else + { + // Jugalator: Note - only cast random spell if best failed + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_HARMFUL_TOUCH); + if(GetIsTalentValid(tUse)) + { + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_RANGED, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + else + { + // Jugalator: Note - only cast random spell if best failed + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_HARMFUL_RANGED); + if(GetIsTalentValid(tUse)) + { + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + } + + return FALSE; +} + +// SPELL CASTER RANGED ATTACKED +int TalentRangedAttackers(object oIntruder = OBJECT_INVALID) +{ + //Check for Single Ranged Targets + talent tUse; + object oTarget = oIntruder; + int nCR = GetAssociateCRMax(); + if(!GetIsObjectValid(oIntruder)) + { + oTarget = GetLastHostileActor(); + } + if(GetIsObjectValid(oTarget) && GetDistanceBetween(oTarget, OBJECT_SELF) > 5.0) + { + if(CheckFriendlyFireOnTarget(oTarget) > 0) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_AREAEFFECT_DISCRIMINANT, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget)/* && + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + else if(CheckEnemyGroupingOnTarget(oTarget) > 0) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_AREAEFFECT_INDISCRIMINANT, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + //ActionUseTalentOnObject(tUse, oTarget); + ActionUseTalentAtLocation(tUse, GetLocation(oTarget)); + return TRUE; + } + } + } + else + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_RANGED, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + } + + return FALSE; +} + +// SPELL CASTER WITH RANGED ENEMIES +int TalentRangedEnemies(object oIntruder = OBJECT_INVALID) +{ + talent tUse; + object oTarget = oIntruder; + int nCR = GetAssociateCRMax(); + if(!GetIsObjectValid(oIntruder)) + { + oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + } + if(GetIsObjectValid(oTarget)) + { + int nEnemy = CheckEnemyGroupingOnTarget(oTarget); + if(CheckFriendlyFireOnTarget(oTarget) > 0 && nEnemy > 0) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_AREAEFFECT_DISCRIMINANT, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + else if(nEnemy > 0) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_AREAEFFECT_INDISCRIMINANT, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentAtLocation(tUse, GetLocation(oTarget)); + //ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + else + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_AREAEFFECT_DISCRIMINANT, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + } + else if(GetDistanceToObject(oTarget) > 5.0) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_RANGED, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + else + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_TOUCH, nCR); + if(GetIsTalentValid(tUse)) + { + // Jugalator: BioWare not allowing casters to cast + // two or more spells of the same kind in a row?? + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && + !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget) /*&& + !CompareLastSpellCast(GetIdFromTalent(tUse))*/ ) || + GetTypeFromTalent(tUse) != TALENT_TYPE_SPELL ) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + } + + return FALSE; +} + /* + ISSUE 1: The check in this function to use a random ability after failing to use best will fail in the following + case. The creature is unable to affect the target with the spell and has only 1 spell of that type. This can + be eliminated with a check in the else to the effect of : + + else if(!CompareLastSpellCast(GetIdFromTalent(tUse))) + + This check was not put in in version 1.0 due to time constraints. + May cause an AI loop in some Mages with limited spell selection. + */ +int TalentSpellAttack(object oIntruder) +{ + talent tUse; + object oTarget = oIntruder; + if(!GetIsObjectValid(oTarget) || GetArea(oTarget) != GetArea(OBJECT_SELF) || GetPlotFlag(OBJECT_SELF) == TRUE) + { + oTarget = GetLastHostileActor(); + + if(!GetIsObjectValid(oTarget) + || GetIsDead(oTarget) + || GetArea(oTarget) != GetArea(OBJECT_SELF) + || GetPlotFlag(OBJECT_SELF) == TRUE) + { + oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + + if(!GetIsObjectValid(oTarget)) + { + return FALSE; + } + } + } + //Attack chosen target + int bValid = FALSE; + + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_HARMFUL_AREAEFFECT_DISCRIMINANT); + + if(GetIsTalentValid(tUse)) + { + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget)) ) + { + bValid = TRUE; + } + } + if(bValid == FALSE) + { + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_HARMFUL_RANGED); + if(GetIsTalentValid(tUse)) + { + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget)) ) + { + bValid = TRUE; + } + } + } + if(bValid == FALSE) + { + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_HARMFUL_TOUCH); + if(GetIsTalentValid(tUse)) + { + if( (GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL && !GetHasSpellEffect(GetIdFromTalent(tUse), oTarget)) ) + { + bValid = TRUE; + } + } + } + if (bValid == TRUE) + { + if( GetTypeFromTalent(tUse) == TALENT_TYPE_SPELL) + { + SetLastGenericSpellCast(GetIdFromTalent(tUse)); + } + DubugPrintTalentID(tUse); + + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + + return FALSE; +} + + +// SUMMON ALLIES +int TalentSummonAllies() +{ + talent tUse; + int nCR = GetAssociateCRMax(); + object oTarget; + location lSelf; + + if(!GetIsObjectValid(GetAssociate(ASSOCIATE_TYPE_SUMMONED))) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_OBTAIN_ALLIES, 20); + if(GetIsTalentValid(tUse)) + { + oTarget = FindSingleRangedTarget(); + if(GetIsObjectValid(oTarget)) + { + vector vTarget = GetPosition(oTarget); + vector vSource = GetPosition(OBJECT_SELF); + vector vDirection = vTarget - vSource; + float fDistance = VectorMagnitude(vDirection) / 2.0f; + vector vPoint = VectorNormalize(vDirection) * fDistance + vSource; + lSelf = Location(GetArea(OBJECT_SELF), vPoint, GetFacing(OBJECT_SELF)); + //lSelf = GetLocation(oTarget); + } + else + { + lSelf = GetLocation(OBJECT_SELF); + } + ClearAllActions(); + //This is for henchmen wizards, so they do no run off and get killed + //summoning in allies. + if(GetIsObjectValid(GetMaster())) + { + ActionUseTalentAtLocation(tUse, GetLocation(GetMaster())); + } + else + { + ActionUseTalentAtLocation(tUse, lSelf); + } + return TRUE; + } + } + + return FALSE; +} + +// HEAL SELF WITH POTIONS AND SPELLS +int TalentHealingSelf() +{ + talent tUse; + int nCurrent = GetCurrentHitPoints(OBJECT_SELF) * 2; + int nBase = GetMaxHitPoints(OBJECT_SELF); + if(nCurrent < nBase) + { + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_BENEFICIAL_HEALING_TOUCH); + if(GetIsTalentValid(tUse)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + else + { + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_BENEFICIAL_HEALING_POTION); + if(GetIsTalentValid(tUse)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + } + + return FALSE; +} + +// HEAL ALL ALLIES +int TalentHeal(int nForce = FALSE) +{ + talent tUse; + int nCurrent = GetCurrentHitPoints(OBJECT_SELF) * 2; + int nBase = GetMaxHitPoints(OBJECT_SELF); + int nCR; + + if(GetAssociateHealMaster() || nForce == TRUE) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_HEALING_TOUCH, 20); + if(GetIsTalentValid(tUse) && !GetIsDead(GetMaster())) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, GetMaster()); + return TRUE; + } + } + if(nCurrent < nBase) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_HEALING_TOUCH, 20); + if(GetIsTalentValid(tUse)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + + object oTarget = GetFactionMostDamagedMember(OBJECT_SELF); + if(GetIsObjectValid(oTarget)) + { + if(GetRacialType(oTarget) == RACIAL_TYPE_UNDEAD) + { + return FALSE; + } + nCurrent = GetCurrentHitPoints(oTarget)*2; + nBase = GetMaxHitPoints(oTarget); + + if(nCurrent < nBase && !GetIsDead(oTarget)) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_HEALING_TOUCH, 20); + if(GetIsTalentValid(tUse)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + } + } + + return FALSE; +} + +// MELEE ATTACK OTHERS +/* + ISSUE 1: Talent Melee Attack should set the Last Spell Used to 0 so that melee casters can use + a single special ability. +*/ + +int TalentMeleeAttack(object oIntruder = OBJECT_INVALID) +{ + + + object oTarget = oIntruder; + if(!GetIsObjectValid(oTarget) || GetArea(oTarget) != GetArea(OBJECT_SELF) || GetPlotFlag(OBJECT_SELF) == TRUE) + { + oTarget = GetAttemptedAttackTarget(); + + if(!GetIsObjectValid(oTarget) || GetIsDead(oTarget) || + (!GetObjectSeen(oTarget) && !GetObjectHeard(oTarget)) + || GetArea(oTarget) != GetArea(OBJECT_SELF) + || GetPlotFlag(OBJECT_SELF) == TRUE) + { + oTarget = GetLastHostileActor(); + + if(!GetIsObjectValid(oTarget) + || GetIsDead(oTarget) + || GetArea(oTarget) != GetArea(OBJECT_SELF) + || GetPlotFlag(OBJECT_SELF) == TRUE) + { + oTarget = GetNearestSeenOrHeardEnemy(); + + if(!GetIsObjectValid(oTarget)) + { + return FALSE; + } + } + } + } + else + { + // + } + + + talent tUse; + int nAC = GetAC(oTarget); + float fAttack; + int nAttack = GetCharacterLevel(OBJECT_SELF); + + fAttack = (IntToFloat(nAttack) * 0.75) + IntToFloat(GetAbilityModifier(ABILITY_STRENGTH)); + //fAttack = IntToFloat(nAttack) + GetAbilityModifier(ABILITY_STRENGTH); + + int nDiff = nAC - nAttack; + + + if(nDiff < 10) + { + ClearAllActions(); + EquipAppropriateWeapons(oTarget); + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_HARMFUL_MELEE); + + + + if(GetIsTalentValid(tUse) && VerifyDisarm(tUse, oTarget) && VerifyCombatMeleeTalent(tUse, oTarget)) + { + ActionUseTalentOnObject(tUse, oTarget); + return TRUE; + } + else + { + ActionAttack(oTarget); + return TRUE; + } + } + else + { + ClearAllActions(); + EquipAppropriateWeapons(oTarget); + ActionAttack(oTarget); + return TRUE; + } + + return FALSE; +} + +// SNEAK ATTACK OTHERS +int TalentSneakAttack() +{ + object oTarget; + int nFriends; + + if(GetHasFeat(FEAT_SNEAK_ATTACK)) + { + nFriends = CheckFriendlyFireOnTarget(OBJECT_SELF); + if(nFriends > 0) + { + oTarget = GetLastHostileActor(GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_FRIEND, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN)); + if(GetIsObjectValid(oTarget) && !GetIsDead(oTarget)) + { + ActionAttack(oTarget); + return TRUE; + } + } + } + + return FALSE; +} + +// FLEE COMBAT AND HOSTILES +int TalentFlee(object oIntruder = OBJECT_INVALID) +{ + object oTarget = oIntruder; + if(!GetIsObjectValid(oIntruder)) + { + oTarget = GetLastHostileActor(); + if(!GetIsObjectValid(oTarget) || GetIsDead(oTarget)) + { + oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + float fDist = GetDistanceBetween(OBJECT_SELF, oTarget); + if(!GetIsObjectValid(oTarget)) + { + return FALSE; + } + } + } + + ClearAllActions(); + //Look at this to remove the delay + ActionMoveAwayFromObject(oTarget, TRUE, 10.0f); + DelayCommand(4.0, ClearAllActions()); + return TRUE; +} + +// TURN UNDEAD +int TalentUseTurning() +{ + int nCount; + if(GetHasFeat(FEAT_TURN_UNDEAD)) + { + object oUndead = GetNearestSeenOrHeardEnemy(); + int nHD = GetHitDice(oUndead); + if(GetHasEffect(EFFECT_TYPE_TURNED, oUndead) || GetHitDice(OBJECT_SELF) <= nHD) + { + return FALSE; + } + int nElemental = GetHasFeat(FEAT_AIR_DOMAIN_POWER) + GetHasFeat(FEAT_EARTH_DOMAIN_POWER) + GetHasFeat(FEAT_FIRE_DOMAIN_POWER) + GetHasFeat(FEAT_FIRE_DOMAIN_POWER); + int nVermin = GetHasFeat(FEAT_PLANT_DOMAIN_POWER) + GetHasFeat(FEAT_ANIMAL_COMPANION); + int nConstructs = GetHasFeat(FEAT_DESTRUCTION_DOMAIN_POWER); + int nOutsider = GetHasFeat(FEAT_GOOD_DOMAIN_POWER) + GetHasFeat(FEAT_EVIL_DOMAIN_POWER); + + if(nElemental == TRUE) + { + nCount += GetRacialTypeCount(RACIAL_TYPE_ELEMENTAL); + } + if(nVermin == TRUE) + { + nCount += GetRacialTypeCount(RACIAL_TYPE_VERMIN); + } + if(nOutsider == TRUE) + { + nCount += GetRacialTypeCount(RACIAL_TYPE_OUTSIDER); + } + if(nConstructs == TRUE) + { + nCount += GetRacialTypeCount(RACIAL_TYPE_CONSTRUCT); + } + nCount += GetRacialTypeCount(RACIAL_TYPE_UNDEAD); + + if(nCount > 0) + { + ClearAllActions(); + //ActionCastSpellAtObject(SPELLABILITY_TURN_UNDEAD, OBJECT_SELF); + ActionUseFeat(FEAT_TURN_UNDEAD, OBJECT_SELF);// GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY)); + return TRUE; + } + } + + return FALSE; +} + +// ACTIVATE AURAS +int TalentPersistentAbilities() +{ + talent tUse = GetCreatureTalentBest(TALENT_CATEGORY_PERSISTENT_AREA_OF_EFFECT, 20); + int nSpellID; + if(GetIsTalentValid(tUse)) + { + nSpellID = GetIdFromTalent(tUse); + if(!GetHasSpellEffect(nSpellID)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + + return FALSE; +} + +// FAST BUFF SELF +int TalentAdvancedBuff(float fDistance) +{ + object oPC = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, OBJECT_SELF, 1, CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY); + if(GetIsObjectValid(oPC)) + { + if(GetDistanceToObject(oPC) <= fDistance) + { + if(!GetIsFighting(OBJECT_SELF)) + { + ClearAllActions(); + //Combat Protections + if(GetHasSpell(SPELL_PREMONITION)) + { + ActionCastSpellAtObject(SPELL_PREMONITION, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_GREATER_STONESKIN)) + { + ActionCastSpellAtObject(SPELL_GREATER_STONESKIN, OBJECT_SELF, METAMAGIC_NONE, 0, FALSE, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_STONESKIN)) + { + ActionCastSpellAtObject(SPELL_STONESKIN, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + //Visage Protections + if(GetHasSpell(SPELL_SHADOW_SHIELD)) + { + ActionCastSpellAtObject(SPELL_SHADOW_SHIELD, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_ETHEREAL_VISAGE)) + { + ActionCastSpellAtObject(SPELL_ETHEREAL_VISAGE, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_GHOSTLY_VISAGE)) + { + ActionCastSpellAtObject(SPELL_GHOSTLY_VISAGE, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + //Mantle Protections + if(GetHasSpell(SPELL_GREATER_SPELL_MANTLE)) + { + ActionCastSpellAtObject(SPELL_GREATER_SPELL_MANTLE, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_SPELL_MANTLE)) + { + ActionCastSpellAtObject(SPELL_SPELL_MANTLE, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_LESSER_SPELL_BREACH)) + { + ActionCastSpellAtObject(SPELL_LESSER_SPELL_BREACH, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + // Globes + if(GetHasSpell(SPELL_GLOBE_OF_INVULNERABILITY)) + { + ActionCastSpellAtObject(SPELL_GLOBE_OF_INVULNERABILITY, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_MINOR_GLOBE_OF_INVULNERABILITY)) + { + ActionCastSpellAtObject(SPELL_MINOR_GLOBE_OF_INVULNERABILITY, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + + //Misc Protections + if(GetHasSpell(SPELL_ELEMENTAL_SHIELD)) + { + ActionCastSpellAtObject(SPELL_ELEMENTAL_SHIELD, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + + //Elemental Protections + if(GetHasSpell(SPELL_PROTECTION_FROM_ELEMENTS)) + { + ActionCastSpellAtObject(SPELL_PROTECTION_FROM_ELEMENTS, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_RESIST_ELEMENTS)) + { + ActionCastSpellAtObject(SPELL_RESIST_ELEMENTS, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_ENDURE_ELEMENTS)) + { + ActionCastSpellAtObject(SPELL_ENDURE_ELEMENTS, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + + //Mental Protections + if(GetHasSpell(SPELL_MIND_BLANK)) + { + ActionCastSpellAtObject(SPELL_MIND_BLANK, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_LESSER_MIND_BLANK)) + { + ActionCastSpellAtObject(SPELL_LESSER_MIND_BLANK, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_CLARITY)) + { + ActionCastSpellAtObject(SPELL_CLARITY, OBJECT_SELF, METAMAGIC_NONE, FALSE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + //Summon Ally + if(GetHasSpell(SPELL_SUMMON_CREATURE_IX)) + { + ActionCastSpellAtLocation(SPELL_SUMMON_CREATURE_IX, GetLocation(OBJECT_SELF), METAMAGIC_NONE, FALSE, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_SUMMON_CREATURE_VIII)) + { + ActionCastSpellAtLocation(SPELL_SUMMON_CREATURE_VIII, GetLocation(OBJECT_SELF), METAMAGIC_NONE, FALSE, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_SUMMON_CREATURE_VII)) + { + ActionCastSpellAtLocation(SPELL_SUMMON_CREATURE_VII, GetLocation(OBJECT_SELF), METAMAGIC_NONE, FALSE, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_SUMMON_CREATURE_VI)) + { + ActionCastSpellAtLocation(SPELL_SUMMON_CREATURE_VI, GetLocation(OBJECT_SELF), METAMAGIC_NONE, FALSE, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_SUMMON_CREATURE_V)) + { + ActionCastSpellAtLocation(SPELL_SUMMON_CREATURE_V, GetLocation(OBJECT_SELF), METAMAGIC_NONE, FALSE, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_SUMMON_CREATURE_IV)) + { + ActionCastSpellAtLocation(SPELL_SUMMON_CREATURE_IV, GetLocation(OBJECT_SELF), METAMAGIC_NONE, FALSE, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_SUMMON_CREATURE_III)) + { + ActionCastSpellAtLocation(SPELL_SUMMON_CREATURE_III, GetLocation(OBJECT_SELF), METAMAGIC_NONE, FALSE, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_SUMMON_CREATURE_II)) + { + ActionCastSpellAtLocation(SPELL_SUMMON_CREATURE_II, GetLocation(OBJECT_SELF), METAMAGIC_NONE, FALSE, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + else if(GetHasSpell(SPELL_SUMMON_CREATURE_I)) + { + ActionCastSpellAtLocation(SPELL_SUMMON_CREATURE_I, GetLocation(OBJECT_SELF), METAMAGIC_NONE, FALSE, PROJECTILE_PATH_TYPE_DEFAULT, TRUE); + } + + + return TRUE; + } + } + } + + return FALSE; +} + +// USE POTIONS +int TalentBuffSelf() +{ + talent tUse; + int nType; + int bValid = FALSE; + int nIndex; + + tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_PROTECTION_POTION, 20); + if(!GetIsTalentValid(tUse)) + { + tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_ENHANCEMENT_POTION, 20); + if(!GetIsTalentValid(tUse)) + { + return FALSE; + } + } + nType = GetTypeFromTalent(tUse); + nIndex = GetIdFromTalent(tUse); + + if(nType == TALENT_TYPE_SPELL) + { + if(!GetHasSpellEffect(nIndex)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + + return FALSE; +} + +// CURE DISEASE, POISON ETC +int TalentCureCondition() +{ + int nCurse = 0x00000001; + int nPoison = 0x00000002; + int nDisease = 0x00000004; + int nAbility = 0x00000008; + int nDrained = 0x00000010; + int nBlindDeaf = 0x00000020; + int nSum; + int nType; + int nSpell; + effect eEffect; + + object oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_HUGE, GetLocation(OBJECT_SELF)); + while(GetIsObjectValid(oTarget)) + { + if(GetIsFriend(oTarget)) + { + eEffect = GetFirstEffect(oTarget); + while(GetIsEffectValid(eEffect)) + { + nType = GetEffectType(eEffect); + + if(nType == EFFECT_TYPE_DISEASE) + { + nSum = nSum | nDisease; + } + else if(nType == EFFECT_TYPE_POISON) + { + nSum = nSum | nPoison; + } + else if(nType == EFFECT_TYPE_CURSE) + { + nSum = nSum | nCurse; + } + else if(nType == EFFECT_TYPE_NEGATIVELEVEL) + { + nSum = nSum | nDrained; + } + else if(nType == EFFECT_TYPE_ABILITY_DECREASE) + { + nSum = nSum | nAbility; + } + else if(nType == EFFECT_TYPE_BLINDNESS || nType == EFFECT_TYPE_DEAF) + { + nSum = nSum | nBlindDeaf; + } + eEffect = GetNextEffect(oTarget); + } + } + if(nSum != 0) + { + if(((nSum & nDrained) || + (nSum & nDisease & nPoison) || + (nSum & nDisease) || + (nSum & nBlindDeaf) || + (nSum & nCurse & nPoison) || + (nSum & nCurse & nDisease) || + (nSum & nBlindDeaf & nPoison) || + (nSum & nCurse & nBlindDeaf) || + (nSum & nBlindDeaf & nDisease)) && + (GetHasSpell(SPELL_GREATER_RESTORATION) || GetHasSpell(SPELL_RESTORATION)) + ) + { + nSpell = SPELL_GREATER_RESTORATION; + if(!GetHasSpell(SPELL_GREATER_RESTORATION)) + { + nSpell = SPELL_RESTORATION; + } + } + else if((nSum & nAbility) && + (GetHasSpell(SPELL_GREATER_RESTORATION) || GetHasSpell(SPELL_RESTORATION) || GetHasSpell(SPELL_LESSER_RESTORATION))) + { + nSpell = SPELL_GREATER_RESTORATION; + if(!GetHasSpell(SPELL_GREATER_RESTORATION)) + { + nSpell = SPELL_RESTORATION; + if(!GetHasSpell(SPELL_RESTORATION)) + { + nSpell = SPELL_LESSER_RESTORATION; + } + } + } + else if(((nSum & nPoison) || + (nSum & nDisease & nPoison) || + (nSum & nDisease)) && + GetHasSpell(SPELL_NEUTRALIZE_POISON)) + { + nSpell = SPELL_NEUTRALIZE_POISON; + } + else if((nSum & nDisease) && GetHasSpell(SPELL_REMOVE_DISEASE)) + { + nSpell = SPELL_REMOVE_DISEASE; + } + else if((nSum & nCurse) && GetHasSpell(SPELL_REMOVE_CURSE)) + { + nSpell = SPELL_REMOVE_CURSE; + } + else if((nSum & nBlindDeaf) && GetHasSpell(SPELL_REMOVE_BLINDNESS_AND_DEAFNESS)) + { + nSpell = SPELL_REMOVE_BLINDNESS_AND_DEAFNESS; + } + if(nSpell != 0) + { + ClearAllActions(); + ActionCastSpellAtObject(nSpell, oTarget); + return TRUE; + } + } + nSum = 0; + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_HUGE, GetLocation(OBJECT_SELF)); + } + + return FALSE; +} + +// DRAGON COMBAT +int TalentDragonCombat(object oIntruder = OBJECT_INVALID) +{ + object oTarget = oIntruder; + if(!GetIsObjectValid(oTarget)) + { + oTarget = GetAttemptedAttackTarget(); + if(!GetIsObjectValid(oTarget) || GetIsDead(oTarget)) + { + oTarget = GetLastHostileActor(); + if(!GetIsObjectValid(oTarget) || GetIsDead(oTarget)) + { + oTarget = GetNearestSeenOrHeardEnemy(); + if(!GetIsObjectValid(oTarget)) + { + return FALSE; + } + } + } + } + talent tUse; + int nCnt = GetLocalInt(OBJECT_SELF, "NW_GENERIC_DRAGONS_BREATH"); + tUse = GetCreatureTalentBest(TALENT_CATEGORY_DRAGONS_BREATH, 20); + //SpeakString(IntToString(nCnt)); + if(GetIsTalentValid(tUse) && nCnt >= 2) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + nCnt = 0; + SetLocalInt(OBJECT_SELF, "NW_GENERIC_DRAGONS_BREATH", nCnt); + return TRUE; + } + nCnt++; + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_HARMFUL_MELEE); + if(GetIsTalentValid(tUse) && VerifyDisarm(tUse, oTarget)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, oTarget); + SetLocalInt(OBJECT_SELF, "NW_GENERIC_DRAGONS_BREATH", nCnt); + return TRUE; + } + else + { + ClearAllActions(); + ActionAttack(oTarget); + SetLocalInt(OBJECT_SELF, "NW_GENERIC_DRAGONS_BREATH", nCnt); + return TRUE; + } + + SetLocalInt(OBJECT_SELF, "NW_GENERIC_DRAGONS_BREATH", nCnt); + return FALSE; +} + +// BARD SONG +int TalentBardSong() +{ + //BARD SONG CONSTANT PENDING + if(!GetHasSpellEffect(411)) + { + if(GetHasFeat(FEAT_BARD_SONGS)) + { + ClearAllActions(); + ActionUseFeat(FEAT_BARD_SONGS, OBJECT_SELF); + return TRUE; + } + } + + return FALSE; +} + +//************************************************************************************************************************************ +//************************************************************************************************************************************ +//************************************************************************************************************************************ +// VERSION 2.0 TALENTS +//************************************************************************************************************************************ +//************************************************************************************************************************************ +//************************************************************************************************************************************ + +// ADVANCED PROTECT SELF Talent 2.0 +// This will use the class specific defensive spells first and leave the rest for the normal defensive AI + +int TalentAdvancedProtectSelf() +{ + + talent tUse; + struct sEnemies sCount = DetermineEnemies(); + int bValid = FALSE; + int nCnt; + string sClass = GetMostDangerousClass(sCount); + tUse = StartProtectionLoop(); + while(GetIsTalentValid(tUse) && nCnt < 10) + { + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_BENEFICIAL_PROTECTION_SELF); + if(GetIsTalentValid(tUse) && GetMatchCompatibility(tUse, sClass, NW_TALENT_PROTECT)) + { + bValid = TRUE; + nCnt = 11; + } + else + { + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_BENEFICIAL_PROTECTION_SINGLE); + if(GetIsTalentValid(tUse) && GetMatchCompatibility(tUse, sClass, NW_TALENT_PROTECT)) + { + bValid = TRUE; + nCnt = 11; + } + else + { + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_BENEFICIAL_PROTECTION_AREAEFFECT); + if(GetIsTalentValid(tUse) && GetMatchCompatibility(tUse, sClass, NW_TALENT_PROTECT)) + { + bValid = TRUE; + nCnt = 11; + } + } + } + nCnt++; + } + if(bValid == TRUE) + { + int nType = GetTypeFromTalent(tUse); + int nIndex = GetIdFromTalent(tUse); + + if(nType == TALENT_TYPE_SPELL) + { + if(!GetHasSpellEffect(nIndex)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + else if(nType == TALENT_TYPE_FEAT) + { + if(!GetHasFeatEffect(nIndex)) + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + else + { + ClearAllActions(); + ActionUseTalentOnObject(tUse, OBJECT_SELF); + return TRUE; + } + } + + return FALSE; +} + +//************************************************************************************************************************************ +//************************************************************************************************************************************ +//************************************************************************************************************************************ +// PRIVATE FUNCTIONS +//************************************************************************************************************************************ +//************************************************************************************************************************************ +//************************************************************************************************************************************ + +//:://///////////////////////////////////////////// +//:: Get Character Levels +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Returns the combined class levels of the + target. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 22, 2001 +//::////////////////////////////////////////////// + +int GetCharacterLevel(object oTarget) +{ + return GetLevelByPosition(1, oTarget) + GetLevelByPosition(2, oTarget) + GetLevelByPosition(3, oTarget); +} + +//:://///////////////////////////////////////////// +//:: Get Has Effect +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Checks to see if the target has a given + spell effect +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 26, 2001 +//::////////////////////////////////////////////// +int GetHasEffect(int nEffectType, object oTarget = OBJECT_SELF) +{ + effect eCheck = GetFirstEffect(oTarget); + while(GetIsEffectValid(eCheck)) + { + if(GetEffectType(eCheck) == nEffectType) + { + return TRUE; + } + eCheck = GetNextEffect(oTarget); + } + return FALSE; +} + +//:://///////////////////////////////////////////// +//:: Check Friendly Fire on Target +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Takes a target object and a radius and + returns how many targets of the caster's faction + are in that zone. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: , 2001 +//::////////////////////////////////////////////// + +int CheckFriendlyFireOnTarget(object oTarget, float fDistance = 5.0) +{ + int nCnt, nHD, nMyHD; + nMyHD = GetHitDice(OBJECT_SELF); + object oCheck = GetFirstObjectInShape(SHAPE_SPHERE, fDistance, GetLocation(oTarget)); + while(GetIsObjectValid(oCheck)) + { + //Use this instead of GetIsFriend to make sure that friendly casualties do not occur. + //Formerlly GetIsReactionTypeFriendly(oCheck) + nHD = GetHitDice(oCheck); + if((GetIsFriend(oCheck)) && + oTarget != oCheck && + nMyHD <= (nHD * 2)) + { + if(!GetIsReactionTypeFriendly(oCheck) || !AssociateCheck(oCheck)) + { + nCnt++; + } + } + oCheck = GetNextObjectInShape(SHAPE_SPHERE, fDistance, GetLocation(oTarget)); + } + return nCnt; +} + +//:://///////////////////////////////////////////// +//:: Check For Enemies Around Target +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Takes a target object and a radius and + returns how many targets of the enemy faction + are in that zone. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 16, 2001 +//::////////////////////////////////////////////// +int CheckEnemyGroupingOnTarget(object oTarget, float fDistance = 5.0) +{ + int nCnt; + object oCheck = GetFirstObjectInShape(SHAPE_SPHERE, fDistance, GetLocation(oTarget)); + while(GetIsObjectValid(oCheck)) + { + if(GetIsEnemy(oCheck) && oTarget != oCheck) + { + nCnt++; + } + oCheck = GetNextObjectInShape(SHAPE_SPHERE, fDistance, GetLocation(oTarget)); + } + return nCnt; +} + +//:://///////////////////////////////////////////// +//:: Find Single Ranged Target +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Seeks out an enemy more than 5m away and alone +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: October 5, 2001 +//::////////////////////////////////////////////// + +object FindSingleRangedTarget() +{ + int nCnt = FALSE; + object oTarget; + float fDistance = 50.0; + object oCount = GetFirstObjectInShape(SHAPE_SPHERE, 30.0, GetLocation(OBJECT_SELF)); + while (GetIsObjectValid(oCount) && nCnt == FALSE) + { + if(oCount != OBJECT_SELF) + { + if(GetIsEnemy(oCount) && oTarget != OBJECT_SELF) + { + fDistance = GetDistanceBetween(oTarget, OBJECT_SELF); + if(fDistance == 0.0) + { + fDistance = 60.0; + } + if(GetDistanceBetween(oCount, OBJECT_SELF) < fDistance && fDistance > 3.0) + { + oTarget = oCount; + //nCnt = TRUE; + } + } + } + oCount = GetNextObjectInShape(SHAPE_SPHERE, 30.0, GetLocation(OBJECT_SELF)); + } + return oTarget; +} + +//:://///////////////////////////////////////////// +//:: GetNumberOfMeleeAttackers +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Check how many enemies are within 5m of the + target object. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 11, 2001 +//::////////////////////////////////////////////// +int GetNumberOfMeleeAttackers() +{ + int nCnt = 0; + object oTarget = GetFirstObjectInShape(SHAPE_SPHERE, 5.0, GetLocation(OBJECT_SELF), TRUE); + while(GetIsObjectValid(oTarget)) + { + if(GetIsEnemy(oTarget)) + { + nCnt++; + } + oTarget = GetNextObjectInShape(SHAPE_SPHERE, 5.0, GetLocation(OBJECT_SELF), TRUE); + } + return nCnt; +} + +//:://///////////////////////////////////////////// +//:: GetNumberOfRangedAttackers +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Check how many enemies are attacking the + target from as distance +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 12, 2001 +//::////////////////////////////////////////////// +int GetNumberOfRangedAttackers() +{ + int nCnt; + object oTarget = GetFirstObjectInShape(SHAPE_SPHERE, 40.0, GetLocation(OBJECT_SELF), TRUE); + while(GetIsObjectValid(oTarget)) + { + if(GetAttackTarget(oTarget) == OBJECT_SELF && GetDistanceBetween(OBJECT_SELF, oTarget) > 5.0) + { + nCnt++; + } + oTarget = GetNextObjectInShape(SHAPE_SPHERE, 40.0, GetLocation(OBJECT_SELF), TRUE); + } + return nCnt; +} + +//:://///////////////////////////////////////////// +//:: Get Percentage of HP Loss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Returns a number between 0 and 1.0 that gives + a representation of how wounded the target is. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Nov 18, 2001 +//::////////////////////////////////////////////// + +int GetPercentageHPLoss(object oWounded) +{ + float fMaxHP = IntToFloat(GetMaxHitPoints(oWounded)); + float fCurrentHP = IntToFloat(GetCurrentHitPoints(oWounded)); + float fHP_Perc = (fCurrentHP / fMaxHP) * 100; + + int nHP = FloatToInt(fHP_Perc); + + return nHP; +} + +//:://///////////////////////////////////////////// +//:: Get Racial Type Count +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Counts and returns the number of a certain + racial type within a certain radius. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Nov 18, 2001 +//::////////////////////////////////////////////// + +int GetRacialTypeCount(int nRacial_Type) +{ + int nCnt = 1; + int nCount = 0; + object oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, OBJECT_SELF, nCnt, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN, CREATURE_TYPE_RACIAL_TYPE, nRacial_Type); + while(GetIsObjectValid(oTarget) && GetDistanceToObject(oTarget) <= 20.0) + { + if(!GetHasEffect(EFFECT_TYPE_TURNED, oTarget)) + { + nCount++; + } + nCnt++; + oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, OBJECT_SELF, nCnt, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN, CREATURE_TYPE_RACIAL_TYPE, nRacial_Type); + } + return nCount; +} + +//:://///////////////////////////////////////////// +//:: Get Enemy Creature Seen or Heard +//:: Copyright (c) 2002 Bioware Corp. +//::////////////////////////////////////////////// +/* + This function finds an enemy that can be seen + first and if that fails an enemy that can be + heard only. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Jan 28, 2002 +//::////////////////////////////////////////////// + +object GetNearestSeenOrHeardEnemy() +{ + object oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + if(!GetIsObjectValid(oTarget)) + { + oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_HEARD_AND_NOT_SEEN); + if(!GetIsObjectValid(oTarget)) + { + return OBJECT_INVALID; + } + } + return oTarget; +} + +//:://///////////////////////////////////////////// +//:: Get / Set Compare Last Spell Cast +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Gets the local int off of the character + determining what the Last Spell Cast was. + + Sets the local int on of the character + storing what the Last Spell Cast was. + + Compares whether the local is the same as the + currently selected spell. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Feb 27, 2002 +//::////////////////////////////////////////////// + +int GetLastGenericSpellCast() +{ + return GetLocalInt(OBJECT_SELF, "NW_GENERIC_LAST_SPELL"); +} + +void SetLastGenericSpellCast(int nSpell) +{ + SetLocalInt(OBJECT_SELF, "NW_GENERIC_LAST_SPELL", nSpell); +} + +int CompareLastSpellCast(int nSpell) +{ + int nLastSpell = GetLastGenericSpellCast(); + if(nSpell == nLastSpell) + { + return TRUE; + SetLastGenericSpellCast(-1); + } + return FALSE; +} + +//:://///////////////////////////////////////////// +//:: Remove Ambient Sleep +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Checks if the NPC has sleep on them because + of ambient animations. Sleeping creatures + must make a DC 15 listen check. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Feb 27, 2002 +//::////////////////////////////////////////////// + +void RemoveAmbientSleep() +{ + if(GetHasEffect(EFFECT_TYPE_SLEEP)) + { + effect eSleep = GetFirstEffect(OBJECT_SELF); + while(GetIsEffectValid(eSleep)) + { + if(GetEffectCreator(eSleep) == OBJECT_SELF) + { + int nRoll = d20(); + nRoll += GetSkillRank(SKILL_LISTEN); + nRoll += GetAbilityModifier(ABILITY_WISDOM); + if(nRoll > 15) + { + RemoveEffect(OBJECT_SELF, eSleep); + } + } + eSleep = GetNextEffect(OBJECT_SELF); + } + } +} + +//:://///////////////////////////////////////////// +//:: GetIsFighting +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Checks if the passed object has an Attempted + Attack or Spell Target +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: March 13, 2002 +//::////////////////////////////////////////////// +int GetIsFighting(object oFighting) +{ + object oAttack = GetAttemptedAttackTarget(); + object oSpellTarget = GetAttemptedSpellTarget(); + + if(GetIsObjectValid(oAttack) || GetIsObjectValid(oSpellTarget)) + { + return TRUE; + } + return FALSE; +} + +//:://///////////////////////////////////////////// +//:: Get Locked Object +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Finds the closest locked object to the object + passed in up to a maximum of 10 objects. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: March 15, 2002 +//::////////////////////////////////////////////// + +object GetLockedObject(object oMaster) +{ + int nCnt = 1; + int bValid = TRUE; + object oLastObject = GetNearestObjectToLocation(OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE, GetLocation(oMaster), nCnt); + while (GetIsObjectValid(oLastObject) && bValid == TRUE) + { + //COMMENT THIS BACK IN WHEN DOOR ACTION WORKS ON PLACABLE. + + //object oItem = GetFirstItemInInventory(oLastObject); + if(GetLocked(oLastObject)) + { + return oLastObject; + } + nCnt++; + if(nCnt == 10) + { + bValid = FALSE; + } + oLastObject = GetNearestObjectToLocation(OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE, GetLocation(oMaster), nCnt); + } + return OBJECT_INVALID; +} + +//:://///////////////////////////////////////////// +//:: Equip Appropriate Weapons +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Makes the user get his best weapons. If the + user is a Henchmen then he checks the player + preference. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: April 2, 2002 +//::////////////////////////////////////////////// + +void EquipAppropriateWeapons(object oTarget) +{ + if(GetIsObjectValid(GetMaster())) + { + if(GetAssociateState(NW_ASC_USE_RANGED_WEAPON)) + { + ActionEquipMostDamagingRanged(oTarget); + } + else + { + ActionEquipMostDamagingMelee(oTarget); + } + } + else + { + //if(!GetIsWeaponEffective(oTarget)) + //{ + if(GetDistanceToObject(oTarget) > 5.0) + { + ActionEquipMostDamagingRanged(oTarget); + } + else + { + ActionEquipMostDamagingMelee(oTarget); + } + //} + } +} + +int AssociateCheck(object oCheck) +{ + object oHench = GetAssociate(ASSOCIATE_TYPE_HENCHMAN); + if(oCheck != oHench) + { + return TRUE; + } + return FALSE; +} + +//:://///////////////////////////////////////////// +//:: Verify Disarm +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Checks that the melee talent being used + is Disarm and if so then if the target has a + weapon. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// + +int VerifyDisarm(talent tUse, object oTarget) +{ + int bValid = FALSE; + + if(GetTypeFromTalent(tUse) == TALENT_TYPE_FEAT) + { + int nFeat = GetIdFromTalent(tUse); + if(nFeat == FEAT_DISARM) + { + object oSlot1 = GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oTarget); + object oSlot2 = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oTarget); + object oWeapon = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND); + object oWeapon2 = GetItemInSlot(INVENTORY_SLOT_LEFTHAND); + + if(GetIsObjectValid(oSlot1) || GetIsObjectValid(oSlot2)) + { + if(GetIsObjectValid(oWeapon) && !GetWeaponRanged(oWeapon)) + { + + return TRUE; + } + else if(GetIsObjectValid(oWeapon2) && !GetWeaponRanged(oWeapon2)) + { + return TRUE; + } + } + + return FALSE; + } + else + { + return TRUE; + } + } + + return TRUE; +} + +//:://///////////////////////////////////////////// +//:: Verify Melee Talent Use +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Makes sure that certain talents are not used + on Elementals, Undead or Constructs +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: May 23, 2002 +//::////////////////////////////////////////////// +int VerifyCombatMeleeTalent(talent tUse, object oTarget) +{ + int nFeatID = GetIdFromTalent(tUse); + if(nFeatID == FEAT_SAP || + nFeatID == FEAT_STUNNING_FIST) + { + int nRacial = GetRacialType(oTarget); + if(nRacial == RACIAL_TYPE_CONSTRUCT || + nRacial == RACIAL_TYPE_UNDEAD || + nRacial == RACIAL_TYPE_ELEMENTAL || + nRacial == RACIAL_TYPE_VERMIN) + { + return FALSE; + } + } + return TRUE; +} + +//::////////////////////////////////////////////////////////////////////////////////////////////// +//:: Associate Include Functions +//:: NW_I0_ASSOCIATE +//:: Copyright (c) 2001 Bioware Corp. +//::///////////////////////////////////////////////////////////////////////////////////////////// +/* + Determines and stores the behavior of the + associates used by the PC +*/ +//::///////////////////////////////////////////////////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: November 16, 2001 +//::///////////////////////////////////////////////////////////////////////////////////////////// + +//Distance +int NW_ASC_DISTANCE_2_METERS = 0x00000001; +int NW_ASC_DISTANCE_4_METERS = 0x00000002; +int NW_ASC_DISTANCE_6_METERS = 0x00000004; +//Heal when +int NW_ASC_HEAL_AT_75 = 0x00000008; +int NW_ASC_HEAL_AT_50 = 0x00000010; +int NW_ASC_HEAL_AT_25 = 0x00000020; +//Auto AI +int NW_ASC_AGGRESSIVE_BUFF = 0x00000040; +int NW_ASC_AGGRESSIVE_SEARCH = 0x00000080; +int NW_ASC_AGGRESSIVE_STEALTH = 0x00000100; +//Open Locks on master fail +int NW_ASC_RETRY_OPEN_LOCKS = 0x00000200; +//Casting power +int NW_ASC_OVERKIll_CASTING = 0x00000400; // GetMax Spell +int NW_ASC_POWER_CASTING = 0x00000800; // Get Double CR or max 4 casting +int NW_ASC_SCALED_CASTING = 0x00001000; // CR + 4; + +int NW_ASC_USE_CUSTOM_DIALOGUE = 0x00002000; +int NW_ASC_DISARM_TRAPS = 0x00004000; +int NW_ASC_USE_RANGED_WEAPON = 0x00008000; +int NW_ASC_MODE_DEFEND_MASTER = 0x04000000; //Guard Me Mode, Attack Nearest sets this to FALSE. +int NW_ASC_MODE_STAND_GROUND = 0x08000000; //The Henchman will ignore move to object in the heartbeat + //If this is set to FALSE then they are in follow mode +int NW_ASC_MASTER_GONE = 0x10000000; +int NW_ASC_MASTER_REVOKED = 0x20000000; +int NW_ASC_IS_BUSY = 0x40000000; //Only busy if attempting to bash or pick a lock +int NW_ASC_HAVE_MASTER = 0x80000000; //Not actually used, here for system continuity + +void SetAssociateState(int nCondition, int bValid = TRUE) +{ + int nPlot = GetLocalInt(OBJECT_SELF, "NW_ASSOCIATE_MASTER"); + if(bValid == TRUE) + { + nPlot = nPlot | nCondition; + SetLocalInt(OBJECT_SELF, "NW_ASSOCIATE_MASTER", nPlot); + } + else if (bValid == FALSE) + { + nPlot = nPlot & ~nCondition; + SetLocalInt(OBJECT_SELF, "NW_ASSOCIATE_MASTER", nPlot); + } +} + +int GetAssociateState(int nCondition) +{ + if(nCondition == NW_ASC_HAVE_MASTER) + { + if(GetIsObjectValid(GetMaster())) + { + return TRUE; + } + } + else + { + int nPlot = GetLocalInt(OBJECT_SELF, "NW_ASSOCIATE_MASTER"); + if(nPlot & nCondition) + { + return TRUE; + } + } + return FALSE; +} + +//:://///////////////////////////////////////////// +//:: Get CR Max for Talents +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Determines the Spell CR to be used in the + given situation +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Nov 18, 2001 +//::////////////////////////////////////////////// + +int GetAssociateCRMax() +{ + return 20; +} + +//:://///////////////////////////////////////////// +//:: Should I Heal My Master +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Determines the healing variable for the master + and then asks if the master if below that level. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Nov 18, 2001 +//::////////////////////////////////////////////// + +int GetAssociateHealMaster() +{ + if(GetAssociateState(NW_ASC_HAVE_MASTER)) + { + object oMaster = GetMaster(); + int nLoss = GetPercentageHPLoss(oMaster); + if(!GetIsDead(oMaster)) + { + if(GetAssociateState(NW_ASC_HEAL_AT_75) && nLoss <= 75) + { + return TRUE; + } + else if(GetAssociateState(NW_ASC_HEAL_AT_50) && nLoss <= 50) + { + return TRUE; + } + else if(GetAssociateState(NW_ASC_HEAL_AT_25) && nLoss <= 25) + { + return TRUE; + } + } + } + return FALSE; +} + +float GetFollowDistance() +{ + float fDistance; + if(GetAssociateState(NW_ASC_DISTANCE_2_METERS)) + { + fDistance = 2.0; + } + else if(GetAssociateState(NW_ASC_DISTANCE_4_METERS)) + { + fDistance = 4.0; + } + else if(GetAssociateState(NW_ASC_DISTANCE_6_METERS)) + { + fDistance = 6.0; + } + //SpeakString(FloatToString(fDistance, 5, 5)); + return fDistance; +} + + +//:://///////////////////////////////////////////// +//:: Check if an item is locked +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Checks that an item was unlocked. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Nov 19, 2001 +//::////////////////////////////////////////////// + +void CheckIsUnlocked(object oLastObject) +{ + if(GetLocked(oLastObject)) + { + ActionDoCommand(PlayVoiceChat(VOICE_CHAT_CUSS)); + } + else + { + ActionDoCommand(PlayVoiceChat(VOICE_CHAT_CANDO)); + } +} + +//:://///////////////////////////////////////////// +//:: Set and Get Associate Start Location +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Preston Watmaniuk +//:: Created On: Nov 21, 2001 +//::////////////////////////////////////////////// + +void SetAssociateStartLocation() +{ + SetLocalLocation(OBJECT_SELF, "NW_ASSOCIATE_START", GetLocation(OBJECT_SELF)); +} + +location GetAssociateStartLocation() +{ + return GetLocalLocation(OBJECT_SELF, "NW_ASSOCIATE_START"); +} + +//:://///////////////////////////////////////////// +//:: Play Mobile Ambient Animations +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Used for spawned creatures to not look like + zombies +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Nov 23, 2001 +//::////////////////////////////////////////////// + +void PlayMobileAmbientAnimations() +{ + location lLocal; + vector vFrnd; + int nRoll = Random(5)+1; + object oFriend = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_FRIEND, OBJECT_SELF, nRoll, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + int nHDMe = GetHitDice(OBJECT_SELF); + int nHDOther = GetHitDice(oFriend); + + //If a bird + if(!GetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS_AVIAN)) + { + /* + Use this animation for all player races and humanoids + who are civilized. Monstrous races will wonder about + and try to look busy in as non-social manner. + */ + if(GetRacialType(OBJECT_SELF) == RACIAL_TYPE_ELF || + GetRacialType(OBJECT_SELF) == RACIAL_TYPE_GNOME || + GetRacialType(OBJECT_SELF) == RACIAL_TYPE_HALFELF || + GetRacialType(OBJECT_SELF) == RACIAL_TYPE_HALFLING || + GetRacialType(OBJECT_SELF) == RACIAL_TYPE_HALFORC || + GetRacialType(OBJECT_SELF) == RACIAL_TYPE_HUMAN || + GetRacialType(OBJECT_SELF) == RACIAL_TYPE_HUMANOID_GOBLINOID || + GetRacialType(OBJECT_SELF) == RACIAL_TYPE_HUMANOID_REPTILIAN || + GetRacialType(OBJECT_SELF) == RACIAL_TYPE_HUMANOID_ORC) + { + if(nRoll == 4 || nRoll == 5) + { + ClearAllActions(); + ActionRandomWalk(); + } + else + { + if(!GetIsObjectValid(oFriend) || GetIsPC(oFriend) || IsInConversation(oFriend)) + { + ClearAllActions(); + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 0.75); + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 0.75); + } + else + { + if(GetDistanceToObject(oFriend) >= 3.0 && GetDistanceToObject(oFriend) <= 5.0 ) + { + ClearAllActions(); + ActionMoveToObject(oFriend, FALSE, 2.0); + } + else if(GetDistanceToObject(oFriend) >= 5.0) + { + ClearAllActions(); + ActionPlayAnimation(ANIMATION_FIREFORGET_GREETING, 0.75); + ActionMoveToObject(oFriend, FALSE, 2.0); + } + vFrnd = GetPosition(oFriend); + SetFacingPoint(vFrnd); + nRoll = d4(); + } + + if(GetIsObjectValid(oFriend)) + { + ClearAllActions(); + if(nHDMe == nHDOther) + { + if(nRoll == 1) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_NORMAL, 1.0, 6.0); + } + else if(nRoll == 2) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_PLEADING, 1.0, 6.0); + } + else if(nRoll == 3) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_FORCEFUL, 1.0, 6.0); + } + else + { + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 0.75); + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 0.75); + } + } + else if(nHDMe > nHDOther) + { + if(nRoll == 1) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_NORMAL, 1.0, 6.0); + } + else if(nRoll == 2) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_FORCEFUL, 1.0, 6.0); + } + else if(nRoll == 3) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_LAUGHING, 1.0, 6.0); + } + else + { + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 0.75); + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 0.75); + } + } + else if (nHDMe < nHDOther) + { + if(nRoll == 1) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_NORMAL, 1.0, 6.0); + } + else if(nRoll == 2) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_PLEADING, 1.0, 6.0); + } + else if(nRoll == 3) + { + ActionPlayAnimation(ANIMATION_FIREFORGET_SALUTE, 0.75); + } + else + { + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 0.75); + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 0.75); + } + } + } + } + } + else + { + ClearAllActions(); + int nRand = d6(); + if(nRand == 1) + { + if(GetDistanceToObject(oFriend) >= 3.0 && GetDistanceToObject(oFriend) <= 10.0 ) + { + ActionMoveToObject(oFriend, FALSE, 2.0); + vFrnd = GetPosition(oFriend); + SetFacingPoint(vFrnd); + } + } + else if(nRand == 2 || nRand == 3 || nRand == 4) + { + ActionRandomWalk(); + } + else if(nRand == 5) + { + ActionPlayAnimation(ANIMATION_LOOPING_GET_MID); + } + else if(nRand == 6) + { + } + } + } + else //Birds Ambient Behavior + { + int nBird = d4(); + location lFriend; + effect eBird; + if(GetIsObjectValid(oFriend)) + { + lFriend = GetLocation(oFriend); + } + else + { + lFriend = GetLocation(OBJECT_SELF); + } + if(nBird == 0) + { + ClearAllActions(); + ActionMoveToObject(oFriend, TRUE, 4.0); + // BK: Commenting this out because the effect wasn't meant to be played here + // ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eBird, OBJECT_SELF, 5.0); + } + else if (nBird == 1 || nBird == 2 || nBird == 3) + { + ClearAllActions(); + ActionMoveAwayFromObject(oFriend, TRUE, 100.0); + } + else + { + ClearAllActions(); + eBird = EffectDisappearAppear(lFriend); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eBird, OBJECT_SELF, 4.0); + ActionMoveAwayFromObject(oFriend, TRUE, 100.0); + } + } +} + +//:://///////////////////////////////////////////// +//:: Play Immobile Ambient Animations +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Used for spawned creatures to not look like + zombies +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Nov 23, 2001 +//::////////////////////////////////////////////// + +void PlayImmobileAmbientAnimations() +{ + location lLocal; + vector vFrnd; + int nRoll = d2(); + object oFriend = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_FRIEND, OBJECT_SELF, nRoll, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + int nHDMe = GetHitDice(OBJECT_SELF); + int nHDOther = GetHitDice(oFriend); + if(!GetIsObjectValid(oFriend) || GetIsPC(oFriend) || IsInConversation(oFriend)) + { + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 0.75); + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 0.75); + } + else + { + if(GetIsObjectValid(oFriend) && GetDistanceToObject(oFriend) <= 3.0) + { + vFrnd = GetPosition(oFriend); + SetFacingPoint(vFrnd); + nRoll = d4(); + ClearAllActions(); + if(nHDMe == nHDOther) + { + if(nRoll == 1) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_NORMAL, 1.0, 6.0); + } + else if(nRoll == 2) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_PLEADING, 1.0, 6.0); + } + else if(nRoll == 3) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_FORCEFUL, 1.0, 6.0); + } + else + { + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 0.75); + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 0.75); + } + } + else if(nHDMe > nHDOther) + { + if(nRoll == 1) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_NORMAL, 1.0, 6.0); + } + else if(nRoll == 2) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_FORCEFUL, 1.0, 6.0); + } + else if(nRoll == 3) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_LAUGHING, 1.0, 6.0); + } + else + { + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 0.75); + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 0.75); + } + } + else if (nHDMe < nHDOther) + { + if(nRoll == 1) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_NORMAL, 1.0, 6.0); + } + else if(nRoll == 2) + { + ActionPlayAnimation(ANIMATION_LOOPING_TALK_PLEADING, 1.0, 6.0); + } + else if(nRoll == 3) + { + ActionPlayAnimation(ANIMATION_FIREFORGET_SALUTE, 0.75); + } + else + { + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 0.75); + ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 0.75); + } + } + } + } +} + +//:://///////////////////////////////////////////// +//:: Check for Walkways +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + This function checks if the passed in object + has waypoints using their tag. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: MAy 13, 2002 +//::////////////////////////////////////////////// +int GetIsPostOrWalking(object oWalker = OBJECT_SELF) +{ + string sTag = GetTag(oWalker); + + object oPost = GetWaypointByTag("POST_" + sTag); + if(!GetIsObjectValid(oPost)) + { + oPost = GetWaypointByTag("NIGHT_" + sTag); + if(!GetIsObjectValid(oPost)) + { + oPost = GetWaypointByTag("WP_" + sTag + "_01"); + if(!GetIsObjectValid(oPost)) + { + oPost = GetWaypointByTag("WN_" + sTag + "_01"); + if(!GetIsObjectValid(oPost)) + { + return FALSE; + } + } + } + } + return TRUE; +} +//::////////////////////////////////////////////////////////////////////////////////////////////// +//:: Special Behavior Functions +//:: Copyright (c) 2001 Bioware Corp. +//::///////////////////////////////////////////////////////////////////////////////////////////// +/* + These commands handle the setting and getting of the Behavioral Master + If these special behaviors are used they will override the normal behavior expected + the animals normal Neutral Faction. +*/ +//::///////////////////////////////////////////////////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Dec 10, 2001 +//::///////////////////////////////////////////////////////////////////////////////////////////// +void SetBehaviorState(int nCondition, int bValid = TRUE) +{ + int nPlot = GetLocalInt(OBJECT_SELF, "NW_BEHAVIOR_MASTER"); + if(bValid == TRUE) + { + nPlot = nPlot | nCondition; + SetLocalInt(OBJECT_SELF, "NW_BEHAVIOR_MASTER", nPlot); + } + else if (bValid == FALSE) + { + nPlot = nPlot & ~nCondition; + SetLocalInt(OBJECT_SELF, "NW_BEHAVIOR_MASTER", nPlot); + } +} + +int GetBehaviorState(int nCondition) +{ + int nPlot = GetLocalInt(OBJECT_SELF, "NW_BEHAVIOR_MASTER"); + if(nPlot & nCondition) + { + return TRUE; + } + return FALSE; +} + +//:://///////////////////////////////////////////// +//:: Determine Special Behavior +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Determines the special behavior used by the NPC. + Generally all NPCs who you want to behave differently + than the defualt behavior. + For these behaviors, passing in a valid object will + cause the creature to become hostile the the attacker. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Dec 14, 2001 +//::////////////////////////////////////////////// + +void DetermineSpecialBehavior(object oIntruder = OBJECT_INVALID) +{ + object oTarget = GetNearestCreature(CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN, OBJECT_SELF ,1, CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY); + if(GetBehaviorState(NW_FLAG_BEHAVIOR_OMNIVORE)) + { + if(!GetIsObjectValid(oIntruder)) + { + if(!GetIsObjectValid(GetAttemptedAttackTarget()) && + !GetIsObjectValid(GetAttemptedSpellTarget()) && + !GetIsObjectValid(GetAttackTarget())) + { + if(GetIsObjectValid(oTarget) && GetDistanceToObject(oTarget) <= 5.0) + { + if(!GetIsFriend(oTarget)) + { + if(GetLevelByClass(CLASS_TYPE_DRUID, oTarget) == 0 && GetLevelByClass(CLASS_TYPE_RANGER, oTarget) == 0) + { + SetIsTemporaryEnemy(oTarget, OBJECT_SELF, FALSE, 20.0); + DetermineCombatRound(oTarget); + } + } + } + } + } + else if(!IsInConversation(OBJECT_SELF)) + { + DetermineCombatRound(oIntruder); + } + else + { + ClearAllActions(); + ActionRandomWalk(); + return; + } + } + else if(GetBehaviorState(NW_FLAG_BEHAVIOR_HERBIVORE)) + { + if(!GetIsObjectValid(GetAttemptedAttackTarget()) && + !GetIsObjectValid(GetAttemptedSpellTarget()) && + !GetIsObjectValid(GetAttackTarget())) + { + if(GetIsObjectValid(oTarget) && GetDistanceToObject(oTarget) <= 6.0) + { + if(!GetIsFriend(oTarget)) + { + if(GetLevelByClass(CLASS_TYPE_DRUID, oTarget) == 0 && GetLevelByClass(CLASS_TYPE_RANGER, oTarget) == 0) + { + TalentFlee(oTarget); + } + } + } + } + else if(!IsInConversation(OBJECT_SELF)) + { + ClearAllActions(); + ActionRandomWalk(); + return; + } + } +} + +//:://///////////////////////////////////////////// +//:: Reset Henchmen +//:: Copyright (c) 2002 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sets the henchmen to commandable, deletes locals + having to do with doors and clears actions +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: April 4, 2002 +//::////////////////////////////////////////////// + +void ResetHenchmenState() +{ + SetCommandable(TRUE); + DeleteLocalObject(OBJECT_SELF, "NW_GENERIC_DOOR_TO_BASH"); + DeleteLocalInt(OBJECT_SELF, "NW_GENERIC_DOOR_TO_BASH_HP"); + SetAssociateState(NW_ASC_IS_BUSY, FALSE); + ClearAllActions(); +} + +//:://///////////////////////////////////////////// +//:: Bash Doors +//:: Copyright (c) 2002 Bioware Corp. +//::////////////////////////////////////////////// +/* + Used in DetermineCombatRound to keep a + henchmen bashing doors. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: April 4, 2002 +//::////////////////////////////////////////////// + +int BashDoorCheck(object oIntruder = OBJECT_INVALID) +{ + int bDoor = FALSE; + //This code is here to make sure that henchmen keep bashing doors and placables. + object oDoor = GetLocalObject(OBJECT_SELF, "NW_GENERIC_DOOR_TO_BASH"); + if(GetIsObjectValid(oDoor)) + { + int nDoorMax = GetMaxHitPoints(oDoor); + int nDoorNow = GetCurrentHitPoints(oDoor); + int nCnt = GetLocalInt(OBJECT_SELF,"NW_GENERIC_DOOR_TO_BASH_HP"); + if(!GetIsObjectValid(GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN)) + || (!GetIsObjectValid(oIntruder) && !GetIsObjectValid(GetMaster()))) + { + if(GetLocked(oDoor)) + { + if(nDoorMax == nDoorNow) + { + nCnt++; + SetLocalInt(OBJECT_SELF,"NW_GENERIC_DOOR_TO_BASH_HP", nCnt); + } + if(nCnt <= 0) + { + bDoor = TRUE; + if(GetHasFeat(FEAT_IMPROVED_POWER_ATTACK)) + { + ActionUseFeat(FEAT_IMPROVED_POWER_ATTACK, oDoor); + } + else if(GetHasFeat(FEAT_POWER_ATTACK)) + { + ActionUseFeat(FEAT_POWER_ATTACK, oDoor); + } + else + { + ActionAttack(oDoor); + } + } + } + } + if(bDoor == FALSE) + { + PlayVoiceChat(VOICE_CHAT_CUSS); + DeleteLocalObject(OBJECT_SELF, "NW_GENERIC_DOOR_TO_BASH"); + DeleteLocalInt(OBJECT_SELF, "NW_GENERIC_DOOR_TO_BASH_HP"); + } + } + return bDoor; +} + +//:://///////////////////////////////////////////// +//:: Determine Class to Use +//:: Copyright (c) 2002 Bioware Corp. +//::////////////////////////////////////////////// +/* + Determines which of a NPCs three classes to + use in DetermineCombatRound +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: April 4, 2002 +//::////////////////////////////////////////////// + +int DetermineClassToUse() +{ + int nClass; + int nTotal = GetCharacterLevel(OBJECT_SELF); + float fTotal = IntToFloat(nTotal); + + int nState1 = FloatToInt((IntToFloat(GetLevelByClass(GetClassByPosition(1))) / fTotal) * 100); + + + int nState2 = FloatToInt((IntToFloat(GetLevelByClass(GetClassByPosition(2))) / fTotal) * 100) + nState1; + + + int nState3 = FloatToInt((IntToFloat(GetLevelByClass(GetClassByPosition(3))) / fTotal) * 100) + nState2; + + + int nUseClass = d100(); + + + if(nUseClass <= nState1) + { + nClass = GetClassByPosition(1); + } + else if(nUseClass > nState1 && nUseClass <= nState2) + { + nClass = GetClassByPosition(2); + } + else + { + nClass = GetClassByPosition(3); + } + + + return nClass; +} + +//:://///////////////////////////////////////////// +//:: Determine Enemies +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Uses four general categories to determine what + kinds of enemies the NPC is facing. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: April 4, 2002 +//::////////////////////////////////////////////// + +struct sEnemies DetermineEnemies() +{ + struct sEnemies sEnemyCount; + + int nCnt = 1; + int nClass; + int nHD; + object oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, OBJECT_SELF, nCnt, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + while(GetIsObjectValid(oTarget) && GetDistanceToObject(oTarget) <= 40.0) + { + nClass = GetClassByPosition(1, oTarget); + nHD = GetHitDice(oTarget); + if(nClass == CLASS_TYPE_ANIMAL || + nClass == CLASS_TYPE_BARBARIAN || + nClass == CLASS_TYPE_BEAST || + nClass == CLASS_TYPE_COMMONER || + nClass == CLASS_TYPE_CONSTRUCT || + nClass == CLASS_TYPE_ELEMENTAL || + nClass == CLASS_TYPE_FIGHTER || + nClass == CLASS_TYPE_GIANT || + nClass == CLASS_TYPE_HUMANOID || + nClass == CLASS_TYPE_MONSTROUS || + nClass == CLASS_TYPE_PALADIN || + nClass == CLASS_TYPE_RANGER || + nClass == CLASS_TYPE_ROGUE || + nClass == CLASS_TYPE_VERMIN || + nClass == CLASS_TYPE_MONK || + nClass == CLASS_TYPE_SHAPECHANGER) + { + sEnemyCount.FIGHTERS += 1; + sEnemyCount.FIGHTER_LEVELS += nHD; + } + else if(nClass == CLASS_TYPE_CLERIC || + nClass == CLASS_TYPE_DRUID) + { + sEnemyCount.CLERICS += 1; + sEnemyCount.CLERIC_LEVELS += nHD; + } + else if(nClass == CLASS_TYPE_BARD || + nClass == CLASS_TYPE_FEY || + nClass == CLASS_TYPE_SORCERER || + nClass == CLASS_TYPE_WIZARD) + { + sEnemyCount.MAGES += 1; + sEnemyCount.MAGE_LEVELS += nHD; + } + else if(nClass == CLASS_TYPE_ABERRATION || + nClass == CLASS_TYPE_DRAGON || + nClass == CLASS_TYPE_MAGICAL_BEAST || + nClass == CLASS_TYPE_OUTSIDER) + { + sEnemyCount.MONSTERS += 1; + sEnemyCount.MONTERS_LEVELS += nHD; + } + sEnemyCount.TOTAL += 1; + sEnemyCount.TOTAL_LEVELS += nHD; + nCnt++; + oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, OBJECT_SELF, nCnt, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + } + return sEnemyCount; +} + +//:://///////////////////////////////////////////// +//:: Get Most Dangerious Class +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Use the four archetypes to determine the + most dangerous group type facing the NPC +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: April 4, 2002 +//::////////////////////////////////////////////// + +string GetMostDangerousClass(struct sEnemies sCount) +{ + string sClass; + int nFighter = ((sCount.FIGHTER_LEVELS) * 13)/10; + //SpeakString(IntToString(nFighter) + " " + IntToString(sCount.CLERIC_LEVELS) + " " + IntToString(sCount.MAGE_LEVELS) + " " + IntToString(sCount.MONTERS_LEVELS)); + + if(nFighter >= sCount.CLERIC_LEVELS) + { + if(nFighter >= sCount.MAGE_LEVELS) + { + if(nFighter >= sCount.MONTERS_LEVELS) + { + sClass = "FIGHTER"; + } + else + { sClass = "MONSTER"; + + } + } + else if(sCount.MAGE_LEVELS >= sCount.MONTERS_LEVELS) + { + sClass = "MAGE"; + } + else + { + sClass = "MONSTER"; + } + } + else if(sCount.CLERIC_LEVELS >= sCount.MAGE_LEVELS) + { + if(sCount.CLERIC_LEVELS >= sCount.MONTERS_LEVELS) + { + sClass = "CLERIC"; + } + else + { + sClass = "MONSTER"; + } + } + else if(sCount.MAGE_LEVELS >= sCount.MONTERS_LEVELS) + { + sClass = "MAGE"; + } + else + { + sClass = "MONSTER"; + } + return sClass; +} + +//:://///////////////////////////////////////////// +//:: Protection Matching Functions +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + These three functions break protections into + 3 categories COMBAT, SPELL and ELEMENTAL +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: April 4, 2002 +//::////////////////////////////////////////////// + +int GetMatchCompatibility(talent tUse, string sClass, int nType) +{ + int bValid; + if(nType == NW_TALENT_PROTECT) + { + if(sClass == "FIGHTER") + { + if(MatchCombatProtections(tUse)) + { + bValid = TRUE; + } + } + else if(sClass == "MAGE") + { + if(MatchSpellProtections(tUse)) + { + bValid = TRUE; + } + else if(MatchElementalProtections(tUse)) + { + bValid = TRUE; + } + } + else if(sClass == "CLERIC" || sClass == "MONSTER") + { + if(MatchCombatProtections(tUse)) + { + bValid = TRUE; + } + else if(MatchElementalProtections(tUse)) + { + bValid = TRUE; + } + } + } + + return bValid; +} + +int MatchCombatProtections(talent tUse) +{ + int nIndex = GetIdFromTalent(tUse); + + if(nIndex == SPELL_PREMONITION || + nIndex == SPELL_ELEMENTAL_SHIELD || + nIndex == SPELL_GREATER_STONESKIN || + nIndex == SPELL_SHADOW_SHIELD || + nIndex == SPELL_ETHEREAL_VISAGE || + nIndex == SPELL_STONESKIN || + nIndex == SPELL_GHOSTLY_VISAGE) + { + return TRUE; + } + return FALSE; +} + +int MatchSpellProtections(talent tUse) +{ + int nIndex = GetIdFromTalent(tUse); + + if(nIndex == SPELL_GREATER_SPELL_MANTLE || + nIndex == SPELL_SPELL_MANTLE || + nIndex == SPELL_LESSER_SPELL_MANTLE || + nIndex == SPELL_SHADOW_SHIELD || + nIndex == SPELL_GLOBE_OF_INVULNERABILITY || + nIndex == SPELL_MINOR_GLOBE_OF_INVULNERABILITY || + nIndex == SPELL_ETHEREAL_VISAGE || + nIndex == SPELL_GHOSTLY_VISAGE || + nIndex == SPELL_SPELL_RESISTANCE || + nIndex == SPELL_PROTECTION_FROM_SPELLS || + nIndex == SPELL_NEGATIVE_ENERGY_PROTECTION) + { + return TRUE; + } + return FALSE; +} + +int MatchElementalProtections(talent tUse) +{ + int nIndex = GetIdFromTalent(tUse); + + if(nIndex == SPELL_ENERGY_BUFFER || + nIndex == SPELL_PROTECTION_FROM_ELEMENTS || + nIndex == SPELL_RESIST_ELEMENTS || + nIndex == SPELL_ENDURE_ELEMENTS) + { + return TRUE; + } + return FALSE; +} + +talent StartProtectionLoop() +{ + talent tUse; + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_BENEFICIAL_PROTECTION_SELF); + if(GetIsTalentValid(tUse)) + { + return tUse; + } + else + { + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_BENEFICIAL_PROTECTION_SINGLE); + if(GetIsTalentValid(tUse)) + { + return tUse; + } + else + { + tUse = GetCreatureTalentRandom(TALENT_CATEGORY_BENEFICIAL_PROTECTION_AREAEFFECT); + if(GetIsTalentValid(tUse)) + { + return tUse; + } + } + } + return tUse; +} + +void DubugPrintTalentID(talent tTalent) +{ +// int nID = GetIdFromTalent(tTalent); +} + +// Jugalator Script Additions Start ------------------------------------------- + +int TalentImportantArcaneSpells(int nClass) +{ + // Set oPC to nearest enemy + object oPC = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY); + if (!GetIsObjectValid(oPC)) return FALSE; + + // Set oAlly to nearest ally + object oAlly = Jug_GetNearestAlly(); + int iHasAlly = GetIsObjectValid(oAlly); + + // Set oMaster to summon's master (OBJECT_INVALID if no summon) + object oMaster = GetMaster(oPC); + + // Set oInvis to nearest heard & invisible enemy + object oInvis = GetNearestCreature(CREATURE_TYPE_REPUTATION, + REPUTATION_TYPE_ENEMY, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, + PERCEPTION_HEARD_AND_NOT_SEEN); + + int iPartyHD = GetAverageHD(); + int iMyHD = GetHitDice(OBJECT_SELF); + int iLostHP = GetMaxHitPoints() - GetCurrentHitPoints(); + + // Get primary modifier for class + int iMod; + if (nClass == CLASS_TYPE_WIZARD) { + iMod = GetAbilityScore(OBJECT_SELF, ABILITY_INTELLIGENCE); + } else if (nClass == CLASS_TYPE_SORCERER || nClass == CLASS_TYPE_BARD) { + iMod = GetAbilityScore(OBJECT_SELF, ABILITY_CHARISMA); + } else { // monster class + iMod = 20; // monster classes can always cast the spell since it's now a special ability + } + + // Attempt to detect heard, but not seen, enemies + if (GetIsObjectValid(oInvis)) + { + if (Jug_AtLocation(SPELL_TRUE_SEEING, oPC, iMod, 16)) return TRUE; + if (Jug_AtLocation(SPELL_SEE_INVISIBILITY, oPC, iMod, 12)) return TRUE; + } + + // Cast Dismissal on summon + if (GetIsObjectValid(oMaster)) + { + if (Jug_AtObject(SPELL_DISMISSAL, oPC, iMod, 15)) return TRUE; + } + + // Dispel Nearest Enemy's Beneficial Spells + if (Jug_GetHasBeneficialEnhancement(oPC)) + { + if (Jug_AtObject(SPELL_MORDENKAINENS_DISJUNCTION, oPC, iMod, 19)) return TRUE; + if (Jug_AtObject(SPELL_GREATER_SPELL_BREACH, oPC, iMod, 16)) return TRUE; + if (Jug_AtObject(SPELL_GREATER_DISPELLING, oPC, iMod, 16)) return TRUE; + if (Jug_AtObject(SPELL_LESSER_SPELL_BREACH, oPC, iMod, 14)) return TRUE; + if (Jug_AtObject(SPELL_DISPEL_MAGIC, oPC, iMod, 13)) return TRUE; + if (Jug_AtObject(SPELL_LESSER_DISPEL, oPC, iMod, 12)) return TRUE; + } + + //Haste + if (!(GetHasSpellEffect(SPELL_MASS_HASTE) || GetHasSpellEffect(SPELL_HASTE))) + { + if (Jug_AtLocation(SPELL_MASS_HASTE, OBJECT_SELF, iMod, 16)) return TRUE; + if (Jug_AtObject(SPELL_HASTE, OBJECT_SELF, iMod, 13)) return TRUE; + } + + // Haste (same as above, but for allies) + if (GetHasSpellEffect(SPELL_MASS_HASTE) && iHasAlly && + !GetHasSpellEffect(SPELL_MASS_HASTE, oAlly)) + { + if (Jug_AtObject(SPELL_HASTE, oAlly, iMod, 13)) return TRUE; + } + + //Time Stop + if (!GetHasSpellEffect(SPELL_TIME_STOP)) { + if (Jug_AtObject(SPELL_TIME_STOP, OBJECT_SELF, iMod, 19)) return TRUE; + } + + //Circle of Death + //CONDITION: Average enemy party hd less than 10 + if (iPartyHD < 10) { + if (Jug_AtLocation(SPELL_CIRCLE_OF_DEATH, oPC, iMod, 16)) return TRUE; + } + + //Power Word: Stun + //CONDITION: Targeted (and closest) enemy HD less than 14 + if (GetHitDice(oPC) < 14) { + if (Jug_AtObject(SPELL_POWER_WORD_STUN, oPC, iMod, 17)) return TRUE; + } + + //Physical Damage Protections + + if (!(GetHasSpellEffect(SPELL_PREMONITION) || GetHasSpellEffect(SPELL_GREATER_STONESKIN) || + GetHasSpellEffect(SPELL_STONESKIN))) + { + if (Jug_AtObject(SPELL_PREMONITION, OBJECT_SELF, iMod, 18)) return TRUE; + if (Jug_AtObject(SPELL_GREATER_STONESKIN, OBJECT_SELF, iMod, 16)) return TRUE; + if (Jug_AtObject(SPELL_STONESKIN, OBJECT_SELF, iMod, 14)) return TRUE; + } + + // Physical Protections (same as above, but for allies) + if ((GetHasSpellEffect(SPELL_PREMONITION) || GetHasSpellEffect(SPELL_GREATER_STONESKIN) || + GetHasSpellEffect(SPELL_STONESKIN)) && iHasAlly) + { + if (!(GetHasSpellEffect(SPELL_PREMONITION, oAlly) || + GetHasSpellEffect(SPELL_GREATER_STONESKIN, oAlly) || + GetHasSpellEffect(SPELL_STONESKIN, oAlly))) + { + if (Jug_AtObject(SPELL_PREMONITION, oAlly, iMod, 18)) return TRUE; + if (Jug_AtObject(SPELL_GREATER_STONESKIN, oAlly, iMod, 16)) return TRUE; + if (Jug_AtObject(SPELL_STONESKIN, oAlly, iMod, 14)) return TRUE; + } + } + + //Gate + + //CONDITION: Protection from Evil active on self + if ((GetHasSpellEffect(SPELL_PROTECTION_FROM_EVIL) || + GetHasSpellEffect(SPELL_MAGIC_CIRCLE_AGAINST_EVIL)) && + !GetIsObjectValid(GetAssociate(ASSOCIATE_TYPE_SUMMONED))) + { + if (Jug_AtLocation(SPELL_GATE, oPC, iMod, 19)) return TRUE; + } + + //Visibility Protections + if (!(GetHasSpellEffect(SPELL_MASS_BLINDNESS_AND_DEAFNESS, oPC) || + GetHasSpellEffect(SPELL_IMPROVED_INVISIBILITY))) + { + if (Jug_AtLocation(SPELL_MASS_BLINDNESS_AND_DEAFNESS, oPC, iMod, 18)) return TRUE; + if (Jug_AtObject(SPELL_IMPROVED_INVISIBILITY, OBJECT_SELF, iMod, 14)) return TRUE; + } + + // Visibility Protections (same as above, but for allies) + if (GetHasSpellEffect(SPELL_IMPROVED_INVISIBILITY) && iHasAlly && + !GetHasSpellEffect(SPELL_IMPROVED_INVISIBILITY, oAlly)) + { + if (Jug_AtObject(SPELL_IMPROVED_INVISIBILITY, oAlly, iMod, 14)) return TRUE; + } + + //Protection from Evil / Magic Circle Against Evil + // ... in preparation for Gate! + if (GetHasSpell(SPELL_GATE) && (!(GetHasSpellEffect(SPELL_PROTECTION_FROM_EVIL) || + GetHasSpellEffect(SPELL_MAGIC_CIRCLE_AGAINST_EVIL)))) + { + if (Jug_AtObject(SPELL_MAGIC_CIRCLE_AGAINST_EVIL, OBJECT_SELF, iMod, 13)) return TRUE; + if (Jug_AtObject(SPELL_PROTECTION_FROM_EVIL, OBJECT_SELF, iMod, 11)) return TRUE; + } + + // Protections vs Evil (same as above, but for allies) + if ((GetHasSpellEffect(SPELL_PROTECTION_FROM_EVIL) || + GetHasSpellEffect(SPELL_MAGIC_CIRCLE_AGAINST_EVIL)) && iHasAlly && + !(GetHasSpellEffect(SPELL_PROTECTION_FROM_EVIL, oAlly) || + GetHasSpellEffect(SPELL_MAGIC_CIRCLE_AGAINST_EVIL, oAlly))) + { + if (Jug_AtObject(SPELL_MAGIC_CIRCLE_AGAINST_EVIL, oAlly, iMod, 13)) return TRUE; + if (Jug_AtObject(SPELL_PROTECTION_FROM_EVIL, oAlly, iMod, 11)) return TRUE; + } + + //Dominate + //CONDITION: Enemies less than 8 levels below me (powerful enemies) + if (!(GetHasSpellEffect(SPELL_DOMINATE_MONSTER, oPC) || + GetHasSpellEffect(SPELL_DOMINATE_PERSON, oPC)) && (iPartyHD - iMyHD) >= -8) + { + if (Jug_AtObject(SPELL_DOMINATE_MONSTER, oPC, iMod, 19)) return TRUE; + if (Jug_AtObject(SPELL_DOMINATE_PERSON, oPC, iMod, 15)) return TRUE; + } + + //Shapechange + if (!GetHasSpellEffect(SPELL_SHAPECHANGE)) { + if (Jug_AtObject(SPELL_SHAPECHANGE, OBJECT_SELF, iMod, 19)) return TRUE; + } + + //Protection from Spells + //CONDITION: Enemies less than 5 levels below me (powerful enemies) + //CONDITION 2: At least 3 allies + if (!GetHasSpellEffect(SPELL_PROTECTION_FROM_SPELLS) && + (iPartyHD - iMyHD) >= -5 && CheckFriendlyFireOnTarget(OBJECT_SELF) > 2) + { + if (Jug_AtObject(SPELL_PROTECTION_FROM_SPELLS, OBJECT_SELF, iMod, 17)) return TRUE; + } + + //Mantle Protections + //CONDITION: Enemies less than 5 levels below me (powerful enemies) + if (!(GetHasSpellEffect(SPELL_GREATER_SPELL_MANTLE) || GetHasSpellEffect(SPELL_SPELL_MANTLE) || + GetHasSpellEffect(SPELL_LESSER_SPELL_MANTLE)) && (iPartyHD - iMyHD) >= -5) + { + if (Jug_AtObject(SPELL_GREATER_SPELL_MANTLE, OBJECT_SELF, iMod, 19)) return TRUE; + if (Jug_AtObject(SPELL_SPELL_MANTLE, OBJECT_SELF, iMod, 17)) return TRUE; + if (Jug_AtObject(SPELL_LESSER_SPELL_MANTLE, OBJECT_SELF, iMod, 15)) return TRUE; + } + + //Power Word: Kill + //CONDITION: Targeted enemy HD less than 10 + if (GetHitDice(oPC) < 10) { + if (Jug_AtObject(SPELL_POWER_WORD_KILL, oPC, iMod, 19)) return TRUE; + } + + //Meteor Swarm + //CONDITION: Closest enemy 5 ft. (1.5 meters) from me + if (GetDistanceToObject(oPC) > 1.5f) { + if (Jug_AtLocation(SPELL_METEOR_SWARM, oPC, iMod, 19)) return TRUE; + } + + //Horrid Wilting + if (Jug_AtLocation(SPELL_HORRID_WILTING, oPC, iMod, 18)) return TRUE; + + //Mind Blank, 15% chance + //CONDITION: Avg enemy party HD at least 12 + //NOTE: Lesser Mind Blank a bit wimpy to be in this talent function? + if (iPartyHD >= 12) { + if (Jug_AtObject(SPELL_MIND_BLANK, oPC, iMod, 18, 15)) return TRUE; + } + + //Wail of the Banshee + if (Jug_AtLocation(SPELL_WAIL_OF_THE_BANSHEE, oPC, iMod, 19)) return TRUE; + + //Weird + if (Jug_AtObject(SPELL_WEIRD, oPC, iMod, 19)) return TRUE; + + // Energy Drain + if (Jug_AtObject(SPELL_ENERGY_DRAIN, oPC, iMod, 19)) return TRUE; + + //Visage Protections, 50% chance + if (!(GetHasSpellEffect(SPELL_SHADOW_SHIELD) || GetHasSpellEffect(SPELL_ETHEREAL_VISAGE) || + GetHasSpellEffect(SPELL_GHOSTLY_VISAGE)) && d2() == 1) + { + if (Jug_AtObject(SPELL_SHADOW_SHIELD, OBJECT_SELF, iMod, 17)) return TRUE; + if (Jug_AtObject(SPELL_ETHEREAL_VISAGE, OBJECT_SELF, iMod, 16)) return TRUE; + if (Jug_AtObject(SPELL_GHOSTLY_VISAGE, OBJECT_SELF, iMod, 12)) return TRUE; + } + + // Finger of Death + if (Jug_AtObject(SPELL_FINGER_OF_DEATH, oPC, iMod, 17)) return TRUE; + + // Globes + if (!(GetHasSpellEffect(SPELL_GLOBE_OF_INVULNERABILITY) || + GetHasSpellEffect(SPELL_MINOR_GLOBE_OF_INVULNERABILITY))) + { + if (Jug_AtObject(SPELL_GLOBE_OF_INVULNERABILITY, oPC, iMod, 16)) return TRUE; + if (Jug_AtObject(SPELL_MINOR_GLOBE_OF_INVULNERABILITY, oPC, iMod, 14)) return TRUE; + } + + //Elemental Protections + if (!(GetHasSpellEffect(SPELL_ENERGY_BUFFER) || GetHasSpellEffect(SPELL_PROTECTION_FROM_ELEMENTS))) + { + if (Jug_AtObject(SPELL_ENERGY_BUFFER, OBJECT_SELF, iMod, 15)) return TRUE; + if (Jug_AtObject(SPELL_PROTECTION_FROM_ELEMENTS, OBJECT_SELF, iMod, 13)) return TRUE; + } + + //Misc Protections + if (!GetHasSpellEffect(SPELL_ELEMENTAL_SHIELD)) { + if (Jug_AtObject(SPELL_ELEMENTAL_SHIELD, OBJECT_SELF, iMod, 14)) return TRUE; + } + + //Bard War Cry + if (Jug_AtObject(SPELL_WAR_CRY, OBJECT_SELF, iMod, 14)) return TRUE; + + // Summon Monster, 66% chance + // NOTE: No Create Undead and others yet, except Mordenkainen's Sword.. + + // #### Removed since default AI takes care of summoning in TalentSummonAllies +/* + if (d3() <= 2) { + if(!GetIsObjectValid(GetAssociate(ASSOCIATE_TYPE_SUMMONED))) { // make sure I don't have a summon already + if (Jug_AtLocation(SPELL_SUMMON_CREATURE_IX, oPC, iMod, 19)) return TRUE; + if (Jug_AtLocation(SPELL_SUMMON_CREATURE_VIII, oPC, iMod, 18)) return TRUE; + if (Jug_AtLocation(SPELL_GREATER_PLANAR_BINDING, oPC, iMod, 18)) return TRUE; + if (Jug_AtLocation(SPELL_SUMMON_CREATURE_VII, oPC, iMod, 17)) return TRUE; + if (Jug_AtLocation(SPELL_MORDENKAINENS_SWORD, oPC, iMod, 17)) return TRUE; + if (Jug_AtLocation(SPELL_PLANAR_BINDING, oPC, iMod, 16)) return TRUE; + if (Jug_AtLocation(SPELL_SUMMON_CREATURE_VI, oPC, iMod, 16)) return TRUE; + if (Jug_AtLocation(SPELL_SUMMON_CREATURE_V, oPC, iMod, 15)) return TRUE; + if (Jug_AtLocation(SPELL_ANIMATE_DEAD, oPC, iMod, 15)) return TRUE; + if (Jug_AtLocation(SPELL_LESSER_PLANAR_BINDING, oPC, iMod, 15)) return TRUE; + if (Jug_AtLocation(SPELL_SUMMON_CREATURE_IV, oPC, iMod, 14)) return TRUE; + if (Jug_AtLocation(SPELL_SUMMON_CREATURE_III, oPC, iMod, 13)) return TRUE; + if (Jug_AtLocation(SPELL_SUMMON_CREATURE_II, oPC, iMod, 12)) return TRUE; + if (Jug_AtLocation(SPELL_SUMMON_CREATURE_I, oPC, iMod, 11)) return TRUE; + } + } +*/ + // + // Misc mid/low priority offensive spells! :) + // + // Some reorganizing (and conditions to avoid wasting precious spell + // casting time) would very likely be in order here, but just putting those + // here for now to avoid stupid AI ignoring them. Move to more proper + // places and add conditions (if necessary) after play testing and getting + // bright ideas. :) + // + // The spells below are (of course) cast in order from most powerful to least. + // + // All spells below has 30% chance of being cast + // + + if (Jug_AtLocation(SPELL_PRISMATIC_SPRAY, oPC, iMod, 17, 30)) return TRUE; + + // Fireballs 100% chance to cast to take the chance while target is in proper range + if (GetDistanceToObject(oPC) > 5.0 /*&& CheckFriendlyFireOnTarget(oPC, 5.0) > 1*/) + { + if (Jug_AtLocation(SPELL_DELAYED_BLAST_FIREBALL, oPC, iMod, 17, 100)) return TRUE; + if (Jug_AtLocation(SPELL_FIREBALL, oPC, iMod, 13, 100)) return TRUE; + } + + if (Jug_AtObject(SPELL_CHAIN_LIGHTNING, oPC, iMod, 16, 30)) return TRUE; + if (Jug_AtLocation(SPELL_ACID_FOG, oPC, iMod, 16, 30)) return TRUE; +// if (Jug_AtLocation(SPELL_MIND_FOG, oPC, iMod, 16, 30)) return TRUE; + if (Jug_AtObject(SPELL_HOLD_MONSTER, oPC, iMod, 15, 30)) return TRUE; + if (Jug_AtObject(SPELL_FEEBLEMIND, oPC, iMod, 15, 30)) return TRUE; + if (Jug_AtLocation(SPELL_CLOUDKILL, oPC, iMod, 15, 30)) return TRUE; + if (Jug_AtObject(SPELL_CONE_OF_COLD, oPC, iMod, 15, 30)) return TRUE; + if (Jug_AtLocation(SPELL_WALL_OF_FIRE, oPC, iMod, 14, 30)) return TRUE; + if (Jug_AtObject(SPELL_ENERVATION, oPC, iMod, 14, 30)) return TRUE; + if (Jug_AtLocation(SPELL_EVARDS_BLACK_TENTACLES, oPC, iMod, 14, 30)) return TRUE; + if (Jug_AtLocation(SPELL_FEAR, oPC, iMod, 14, 30)) return TRUE; + if (Jug_AtObject(SPELL_ICE_STORM, oPC, iMod, 14, 30)) return TRUE; + if (Jug_AtObject(SPELL_PHANTASMAL_KILLER, oPC, iMod, 14, 30)) return TRUE; + if (Jug_AtObject(SPELL_CONFUSION, oPC, iMod, 14, 30)) return TRUE; + if (Jug_AtObject(SPELL_SLOW, oPC, iMod, 13, 30)) return TRUE; + if (Jug_AtLocation(SPELL_STINKING_CLOUD, oPC, iMod, 13, 30)) return TRUE; + if (Jug_AtObject(SPELL_LIGHTNING_BOLT, oPC, iMod, 13, 30)) return TRUE; + if (Jug_AtObject(SPELL_FLAME_ARROW, oPC, iMod, 13, 30)) return TRUE; + if (Jug_AtObject(SPELL_BESTOW_CURSE, oPC, iMod, 13, 30)) return TRUE; + if (Jug_AtObject(SPELL_CONTAGION, oPC, iMod, 13, 30)) return TRUE; + + return FALSE; +} + +int TalentImportantDivineSpells(int nClass) +{ + // Generic script for clerics, druids and other divine casters (i.e. monsters) + + // Set oPC to nearest enemy + object oPC = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY); + if (!GetIsObjectValid(oPC)) return FALSE; + + // Set oAlly to nearest ally (if found and in reasonable range) + object oAlly = Jug_GetNearestAlly(); + int iHasAlly = GetIsObjectValid(oAlly); + + // Set oMaster to summon's master (OBJECT_INVALID if no summon) + object oMaster = GetMaster(oPC); + + // Set oInvis to nearest heard & invisible enemy + object oInvis = GetNearestCreature(CREATURE_TYPE_REPUTATION, + REPUTATION_TYPE_ENEMY, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, + PERCEPTION_HEARD_AND_NOT_SEEN); + + int iPartyHD = GetAverageHD(); + int iMyHD = GetHitDice(OBJECT_SELF); + int iLostHP = GetMaxHitPoints() - GetCurrentHitPoints(); + + // Get primary modifier for class + int iMod = GetAbilityScore(OBJECT_SELF, ABILITY_WISDOM); + + int isDruid = (nClass == CLASS_TYPE_DRUID); // TRUE if Druid + int isMonster = (nClass != CLASS_TYPE_DRUID && nClass != CLASS_TYPE_CLERIC); // TRUE if monster + + // Cure spell adjustment value + // Cure Wounds spells has +1 Wis requirement for Druids (equivalent spell is 1 level higher) + int iCureAdj = isDruid ? 1 : 0; + + /////////////////////////////////////////////////////////////////////////// + // Spell Casting Start + /////////////////////////////////////////////////////////////////////////// + + // Cure Wounds + // *** Removed in 0.5 beta since default AI takes care of those *** + + // Attempt to detect heard, but not seen, enemies + if (GetIsObjectValid(oInvis)) + { + if (Jug_AtLocation(SPELL_TRUE_SEEING, oPC, iMod, 17 - 2 * iCureAdj)) return TRUE; + if (!isDruid) + { + if (Jug_AtLocation(SPELL_INVISIBILITY_PURGE, oPC, iMod, 13)) return TRUE; + } + } + + // Cast Dismissal on summon + if (GetIsObjectValid(oMaster)) + { + if (Jug_AtObject(SPELL_DISMISSAL, oPC, iMod, 14)) return TRUE; + } + + // Dispel Nearest Enemy's Beneficial Spells + if (Jug_GetHasBeneficialEnhancement(oPC)) + { + if (Jug_AtObject(SPELL_GREATER_DISPELLING, oPC, iMod, 16)) return TRUE; + if (Jug_AtObject(SPELL_DISPEL_MAGIC, oPC, iMod, 13 + iCureAdj)) return TRUE; + } + + //Freedom of Movement - Negates effects of paralysis, Hold, Slow, or Web spells + //CONDITION: Affected by Slow or Web. + if ((GetHasSpellEffect(SPELL_SLOW) || GetHasSpellEffect(SPELL_WEB)) && + !GetHasSpellEffect(SPELL_FREEDOM_OF_MOVEMENT)) + { + if (Jug_AtObject(SPELL_FREEDOM_OF_MOVEMENT, OBJECT_SELF, iMod, 14)) return TRUE; + } + + // same as above, but for nearest ally + if (iHasAlly && (GetHasSpellEffect(SPELL_SLOW, oAlly) || GetHasSpellEffect(SPELL_WEB, oAlly)) && + !GetHasSpellEffect(SPELL_FREEDOM_OF_MOVEMENT, oAlly)) + { + if (Jug_AtObject(SPELL_FREEDOM_OF_MOVEMENT, oAlly, iMod, 14)) return TRUE; + } + + // Healing Circle if having an ally or self lost 50% hp + if ((iHasAlly || GetPercentageHPLoss(OBJECT_SELF) > 50) && !GetHasSpellEffect(SPELL_HEALING_CIRCLE)) + { + if (Jug_AtObject(SPELL_HEALING_CIRCLE, OBJECT_SELF, iMod, 15 + iCureAdj)) return TRUE; + } + + // Harm + // CONDITION: 6+ hit dice and NOT undead! :) + if (iPartyHD > 6 && GetRacialType(oPC) != RACIAL_TYPE_UNDEAD) { + if (Jug_AtObject(SPELL_HARM, oPC, iMod - iCureAdj, 16)) return TRUE; + } + + // (Mass) Heal (used as Harm for undead) + // CONDITION: Undead at 4+ hd + if (GetRacialType(oPC) == RACIAL_TYPE_UNDEAD && iPartyHD >= 4) + { + if (Jug_AtObject(SPELL_MASS_HEAL, oPC, iMod - iCureAdj, 18)) return TRUE; + if (Jug_AtObject(SPELL_HEAL, oPC, iMod - iCureAdj, 16)) return TRUE; + } + + if (!isDruid || isMonster) + { + // >>> LEVEL 9 SPELL SEQUENCE FOR NON-DRUIDS <<< + if (Jug_AtLocation(SPELL_STORM_OF_VENGEANCE, oPC, iMod, 19)) return TRUE; + if (Jug_AtLocation(SPELL_IMPLOSION, oPC, iMod, 19)) return TRUE; + + // High prio evil protection if having Gate + if (GetHasSpell(SPELL_GATE)) + { + if (Jug_AtObject(SPELL_MAGIC_CIRCLE_AGAINST_EVIL, OBJECT_SELF, iMod, 13)) return TRUE; + if (Jug_AtObject(SPELL_PROTECTION_FROM_EVIL, OBJECT_SELF, iMod, 11)) return TRUE; + } + + if (GetHasSpellEffect(SPELL_MAGIC_CIRCLE_AGAINST_EVIL) || + GetHasSpellEffect(SPELL_PROTECTION_FROM_EVIL)) + { + if (Jug_AtLocation(SPELL_GATE, oPC, iMod, 19)) return TRUE; + } + + if (Jug_AtObject(SPELL_ENERGY_DRAIN, oPC, iMod, 19)) return TRUE; + } + + if (isDruid || isMonster) + { + // >>> LEVEL 9 SPELL SEQUENCE FOR NON-CLERICS <<< + if (Jug_AtObject(SPELL_ELEMENTAL_SWARM, oPC, iMod, 19)) return TRUE; + if (Jug_AtObject(SPELL_SHAPECHANGE, oPC, iMod, 19, 20)) return TRUE; // 20% chance + } + + // Regenerate + if (Jug_AtObject(SPELL_REGENERATE, OBJECT_SELF, iMod + iCureAdj, 17)) return TRUE; + if (Jug_AtObject(SPELL_SUNBEAM, oPC, iMod, 18)) return TRUE; + + // special case if undeads are nearby + if ((!isDruid || isMonster) && GetRacialType(oPC) == RACIAL_TYPE_UNDEAD) + { + if (Jug_AtLocation(SPELL_SEARING_LIGHT, oPC, iMod, 13)) return TRUE; + } + + if (Jug_AtLocation(SPELL_FIRE_STORM, oPC, iMod + iCureAdj, 18)) return TRUE; + + // >>> LEVEL 8 SPELL SEQUENCE FOR NON-DRUIDS <<< + // ### AURA VS ALIGNMENT ??? ### + + if (isDruid || isMonster) + { + // >>> LEVEL 8 SPELL SEQUENCE FOR NON-CLERICS <<< + + // Combat Protection - NOTE: including lower levels as well here + if (!(GetHasSpellEffect(SPELL_PREMONITION) || + GetHasSpellEffect(SPELL_GREATER_STONESKIN) || + GetHasSpellEffect(SPELL_STONESKIN))) + { + if (Jug_AtObject(SPELL_PREMONITION, OBJECT_SELF, iMod, 18)) return TRUE; + if (Jug_AtObject(SPELL_GREATER_STONESKIN, OBJECT_SELF, iMod, 16)) return TRUE; + if (Jug_AtObject(SPELL_STONESKIN, OBJECT_SELF, iMod, 14)) return TRUE; + } + + if (Jug_AtObject(SPELL_FINGER_OF_DEATH, oPC, iMod, 18)) return TRUE; + if (Jug_AtLocation(SPELL_NATURES_BALANCE, OBJECT_SELF, iMod, 18)) return TRUE; + } + + if (Jug_AtObject(SPELL_SPELL_RESISTANCE, OBJECT_SELF, iMod, 15)) return TRUE; + + if (!isDruid || isMonster) { + // >>> LEVEL 7 SPELL SEQUENCE FOR NON-DRUIDS <<< + if (Jug_AtObject(SPELL_DESTRUCTION, oPC, iMod, 17)) return TRUE; + if (Jug_AtObject(SPELL_WORD_OF_FAITH, OBJECT_SELF, iMod, 17)) return TRUE; // ## FIX/CHECK + } + + if (isDruid || isMonster) + { + // >>> LEVEL 7 SPELL SEQUENCE FOR NON-CLERICS <<< + if (Jug_AtObject(SPELL_CREEPING_DOOM, oPC, iMod, 17)) return TRUE; + if (Jug_AtObject(SPELL_AURA_OF_VITALITY, OBJECT_SELF, iMod, 17)) return TRUE; + } + + // Anti-undead: Negative Energy Protection + if (GetRacialType(oPC) == RACIAL_TYPE_UNDEAD) { + if (Jug_AtObject(SPELL_NEGATIVE_ENERGY_PROTECTION, OBJECT_SELF, iMod, 13)) return TRUE; + } + + // Various Summons + // *** Removed in 0.5 beta since default AI takes care of those (TalentSummonAllies) *** + + // Anti-undead: Control Undead + if (!isDruid || isMonster) { + // >>> LEVEL 6 SPELL SEQUENCE FOR NON-DRUIDS <<< + if (GetRacialType(oPC) == RACIAL_TYPE_UNDEAD) { + if (Jug_AtObject(SPELL_CONTROL_UNDEAD, oPC, iMod, 16)) return TRUE; + } + if (Jug_AtLocation(SPELL_BLADE_BARRIER, oPC, iMod, 16)) return TRUE; + } + + if (Jug_AtLocation(SPELL_FLAME_STRIKE, oPC, iMod + iCureAdj, 15)) return TRUE; + + // Elemental protections + if (!(GetHasSpellEffect(SPELL_ENERGY_BUFFER) || GetHasSpellEffect(SPELL_PROTECTION_FROM_ELEMENTS))) + { + if (isDruid || isMonster) { + if (iPartyHD - iMyHD > -8) { + if (Jug_AtObject(SPELL_ENERGY_BUFFER, oPC, iMod, 16)) return TRUE; + } + } + // Both druids & clerics can cast prot from elements + if (iPartyHD - iMyHD > -8) { + if (Jug_AtObject(SPELL_PROTECTION_FROM_ELEMENTS, OBJECT_SELF, iMod, 13)) return TRUE; + } + } + + // Disabling these two for now as well ... + + if (GetRacialType(oPC) != RACIAL_TYPE_UNDEAD && GetRacialType(oPC) != RACIAL_TYPE_CONSTRUCT) + { + if (Jug_AtObject(SPELL_SLAY_LIVING, oPC, iMod, 15)) return TRUE; + } + + if (!isDruid || isMonster) { + // >>> LEVEL 5 SPELL SEQUENCE FOR NON-DRUIDS <<< + if (GetRacialType(oPC) != RACIAL_TYPE_UNDEAD) + { + if (Jug_AtLocation(SPELL_CIRCLE_OF_DOOM, oPC, iMod, 15)) return TRUE; + } + } + + if (isDruid || isMonster) { + // >>> LEVEL 5 SPELL SEQUENCE FOR NON-CLERICS <<< + if (Jug_AtLocation(SPELL_ICE_STORM, oPC, iMod, 15)) return TRUE; + if (Jug_AtLocation(SPELL_WALL_OF_FIRE, OBJECT_SELF, iMod, 15)) return TRUE; + } + + if (!GetHasSpellEffect(SPELL_DEATH_WARD) && iPartyHD - iMyHD > -5) + { + if (Jug_AtObject(SPELL_DEATH_WARD, OBJECT_SELF, iMod - iCureAdj, 14)) return TRUE; + } + + if (!isDruid || isMonster) { + // >>> LEVEL 4 SPELL SEQUENCE FOR NON-DRUIDS <<< + if (Jug_AtLocation(SPELL_HAMMER_OF_THE_GODS, oPC, iMod, 14)) return TRUE; + + if (!GetHasSpellEffect(SPELL_DIVINE_POWER)) { + if (Jug_AtObject(SPELL_DIVINE_POWER, OBJECT_SELF, iMod, 14)) return TRUE; + } + } + if (isDruid || isMonster) { + // >>> LEVEL 4 SPELL SEQUENCE FOR NON-CLERICS <<< + if (Jug_AtObject(SPELL_HOLD_MONSTER, oPC, iMod, 14)) return TRUE; + } + + if (Jug_AtObject(SPELL_POISON, oPC, iMod + iCureAdj, 14)) return TRUE; + if (Jug_AtObject(SPELL_CONTAGION, oPC, iMod, 13)) return TRUE; + + if (!isDruid || isMonster) { + // >>> LEVEL 3 SPELL SEQUENCE FOR NON-DRUIDS <<< + if (Jug_AtObject(SPELL_BLINDNESS_AND_DEAFNESS, oPC, iMod, 13)) return TRUE; + if (Jug_AtObject(SPELL_BESTOW_CURSE, oPC, iMod, 13)) return TRUE; + if (Jug_AtLocation(SPELL_SEARING_LIGHT, oPC, iMod, 13)) return TRUE; + } + + if (isDruid || isMonster) { + // >>> LEVEL 3 SPELL SEQUENCE FOR NON-CLERICS <<< + if (Jug_AtObject(SPELL_CALL_LIGHTNING, oPC, iMod, 13)) return TRUE; + + if (GetRacialType(oPC) == RACIAL_TYPE_ANIMAL) { + if (Jug_AtObject(SPELL_DOMINATE_ANIMAL, oPC, iMod, 13)) return TRUE; + } + } + + return FALSE; +} + +int TalentImportantRangerSpells() +{ +// return FALSE; + + // Set oPC to nearest enemy + object oPC = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY); + + // Set oAlly to nearest ally (if found and in reasonable range) + object oAlly = Jug_GetNearestAlly(); + int iHasAlly = GetIsObjectValid(oAlly); + + // Set oInvis to nearest heard & invisible enemy + object oInvis = GetNearestCreature(CREATURE_TYPE_REPUTATION, + REPUTATION_TYPE_ENEMY, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, + PERCEPTION_HEARD_AND_NOT_SEEN); + + int iPartyHD = GetAverageHD(); + int iMyHD = GetHitDice(OBJECT_SELF); + int iLostHP = GetMaxHitPoints() - GetCurrentHitPoints(); + + if (!GetIsObjectValid(oPC)) return FALSE; + + // Get primary modifier for class + int iMod = GetAbilityScore(OBJECT_SELF, ABILITY_WISDOM); + + // Cure Wounds + // *** Removed in 0.5 beta since default AI takes care of those *** + + // Invisibility Purge + if (GetIsObjectValid(oInvis)) + { + if (Jug_AtLocation(SPELL_INVISIBILITY_PURGE, OBJECT_SELF, iMod, 13)) return TRUE; + } + + //Freedom of Movement - Negates effects of paralysis, Hold, Slow, or Web spells + //CONDITION: Affected by Slow or Web. + if ((GetHasSpellEffect(SPELL_SLOW) || GetHasSpellEffect(SPELL_WEB)) && + !GetHasSpellEffect(SPELL_FREEDOM_OF_MOVEMENT)) + { + if (Jug_AtObject(SPELL_FREEDOM_OF_MOVEMENT, OBJECT_SELF, iMod, 14)) return TRUE; + } + + // Same as above, but for nearest ally + if (iHasAlly && (GetHasSpellEffect(SPELL_SLOW, oAlly) || + GetHasSpellEffect(SPELL_WEB, oAlly)) && + !GetHasSpellEffect(SPELL_FREEDOM_OF_MOVEMENT, oAlly)) + { + if (Jug_AtObject(SPELL_FREEDOM_OF_MOVEMENT, oAlly, iMod, 14)) return TRUE; + } + + // Various Summons + // *** Removed in 0.5 beta since default AI takes care of those (TalentSummonAllies) *** + + //Polymorph Self - Transforms caster into Giant spider, Troll, Umber hulk, Pixie, or Zombie + //CONDITION: 15% chance to cast + if (!GetHasSpellEffect(SPELL_POLYMORPH_SELF)) { + if (Jug_AtObject(SPELL_POLYMORPH_SELF, OBJECT_SELF, iMod, 14, 15)) return TRUE; + } + + //Aid - +1 on attacks, damage and saves vs fear plus 1d8 temporary hp + if (!GetHasSpellEffect(SPELL_AID)) { + if (Jug_AtObject(SPELL_AID, OBJECT_SELF, iMod, 13)) return TRUE; + } + + //Elemental Protections + if (!(GetHasSpellEffect(SPELL_PROTECTION_FROM_ELEMENTS) || + GetHasSpellEffect(SPELL_RESIST_ELEMENTS))) + { + if (Jug_AtObject(SPELL_PROTECTION_FROM_ELEMENTS, OBJECT_SELF, iMod, 12)) return TRUE; + if (Jug_AtObject(SPELL_RESIST_ELEMENTS, OBJECT_SELF, iMod, 11)) return TRUE; + } + + // Same as above, but for nearest ally + if (iHasAlly && !(GetHasSpellEffect(SPELL_PROTECTION_FROM_ELEMENTS, oAlly) || + GetHasSpellEffect(SPELL_RESIST_ELEMENTS, oAlly))) + { + if (Jug_AtObject(SPELL_PROTECTION_FROM_ELEMENTS, oAlly, iMod, 12)) return TRUE; + if (Jug_AtObject(SPELL_RESIST_ELEMENTS, oAlly, iMod, 11)) return TRUE; + } + + //Cat's Grace - Target gains 1d4+1 Dex for 1hr/level + if (!GetHasSpellEffect(SPELL_CATS_GRACE)) { + if (Jug_AtObject(SPELL_CATS_GRACE, OBJECT_SELF, iMod, 12)) return TRUE; + } + + //Sleep - Puts 2d4 HD of creatures to sleep + if (iPartyHD < 8) { + if (Jug_AtLocation(SPELL_SLEEP, oPC, iMod, 11)) return TRUE; + } + + return FALSE; +} + +int TalentImportantPaladinSpells() +{ +// return FALSE; + + // Set oPC to nearest enemy + object oPC = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY); + + // Set oAlly to nearest ally (if found and in reasonable range) + object oAlly = Jug_GetNearestAlly(); + int iHasAlly = GetIsObjectValid(oAlly); + + int iPartyHD = GetAverageHD(); + int iMyHD = GetHitDice(OBJECT_SELF); + int iLostHP = GetMaxHitPoints() - GetCurrentHitPoints(); + + if (!GetIsObjectValid(oPC)) return FALSE; + + // Get primary modifier for class + int iMod = GetAbilityScore(OBJECT_SELF, ABILITY_WISDOM); + + // Cure Wounds + // *** Removed in 0.5 beta since default AI takes care of those *** + + // Dispel Nearest Enemy's Beneficial Spells + if (Jug_GetHasBeneficialEnhancement(oPC)) + { + if (Jug_AtObject(SPELL_DISPEL_MAGIC, oPC, iMod, 13)) return TRUE; + } + + // TODO: Attempt to dispel negative spells on self and allies? + + //Remove Blindness and Deafness + //CONDITION: Is deaf or silenced + if (GetHasEffect(EFFECT_TYPE_SILENCE) || GetHasEffect(EFFECT_TYPE_DEAF)) + { + if (Jug_AtObject(SPELL_REMOVE_BLINDNESS_AND_DEAFNESS, OBJECT_SELF, iMod, 13)) return TRUE; + } + + // Same as above, but for nearest ally + if (iHasAlly && (GetHasEffect(EFFECT_TYPE_SILENCE, oAlly) || + GetHasEffect(EFFECT_TYPE_DEAF, oAlly))) + { + if (Jug_AtObject(SPELL_REMOVE_BLINDNESS_AND_DEAFNESS, oAlly, iMod, 13)) return TRUE; + } + + //Freedom of Movement - Negates effects of paralysis, Hold, Slow, or Web spells + //CONDITION: Affected by Slow or Web. + if ((GetHasSpellEffect(SPELL_SLOW) || GetHasSpellEffect(SPELL_WEB)) && + !GetHasSpellEffect(SPELL_FREEDOM_OF_MOVEMENT)) + { + if (Jug_AtObject(SPELL_FREEDOM_OF_MOVEMENT, OBJECT_SELF, iMod, 14)) return TRUE; + } + + // Same as above, but for nearest ally + if (iHasAlly && (GetHasSpellEffect(SPELL_SLOW) || + GetHasSpellEffect(SPELL_WEB)) && !GetHasSpellEffect(SPELL_FREEDOM_OF_MOVEMENT)) + { + if (Jug_AtObject(SPELL_FREEDOM_OF_MOVEMENT, oAlly, iMod, 14)) return TRUE; + } + + //Remove Paralysis - Frees allies from paralysis, Hold, or Slow spells + if (iHasAlly && GetHasSpell(SPELL_REMOVE_PARALYSIS) && + (GetHasEffect(EFFECT_TYPE_PARALYZE, oAlly) || GetHasEffect(EFFECT_TYPE_SLOW, oAlly))) + { + if (Jug_AtObject(SPELL_REMOVE_PARALYSIS, oAlly, iMod, 12)) return TRUE; + } + + // Death Ward + if (!GetHasSpellEffect(SPELL_DEATH_WARD)) { + if (Jug_AtObject(SPELL_DEATH_WARD, OBJECT_SELF, iMod, 14)) return TRUE; + } + + // Same as above, but for nearest ally + // CONDITION: Death Ward already cast on self + if (iHasAlly && !GetHasSpellEffect(SPELL_DEATH_WARD, oAlly) && + GetHasSpellEffect(SPELL_DEATH_WARD)) + { + if (Jug_AtObject(SPELL_DEATH_WARD, oAlly, iMod, 14)) return TRUE; + } + + if (!GetHasSpellEffect(SPELL_PRAYER)) { + if (Jug_AtObject(SPELL_PRAYER, OBJECT_SELF, iMod, 13)) return TRUE; + } + + // Magic Circle Against Alignment + if (!GetHasSpellEffect(SPELL_MAGIC_CIRCLE_AGAINST_EVIL)) { + if (Jug_AtObject(SPELL_MAGIC_CIRCLE_AGAINST_EVIL, OBJECT_SELF, iMod, 13)) return TRUE; + } + + //Aid - +1 on attacks, damage and saves vs fear plus 1d8 temporary hp + if (!GetHasSpellEffect(SPELL_AID)) { + if (Jug_AtObject(SPELL_AID, OBJECT_SELF, iMod, 12)) return TRUE; + } + + //Elemental Protections + if (!GetHasSpellEffect(SPELL_RESIST_ELEMENTS)) { + if (Jug_AtObject(SPELL_RESIST_ELEMENTS, OBJECT_SELF, iMod, 12)) return TRUE; + } + + // Same as above, but for nearest ally + // CONDITION: Resist Elements already cast on self + if (iHasAlly && GetHasSpellEffect(SPELL_RESIST_ELEMENTS) && + !GetHasSpellEffect(SPELL_RESIST_ELEMENTS, oAlly)) + { + if (Jug_AtObject(SPELL_RESIST_ELEMENTS, OBJECT_SELF, iMod, 12)) return TRUE; + } + + //Bull's Strength - Target gains 1d4+1 Str for 1hr/level + if (!GetHasSpellEffect(SPELL_BULLS_STRENGTH)) { + if (Jug_AtObject(SPELL_BULLS_STRENGTH, OBJECT_SELF, iMod, 12)) return TRUE; + } + + return FALSE; +} + +// +// Returns the average hit dice of all enemies in a 40' radius +// +int GetAverageHD() +{ + struct sEnemies enemies = DetermineEnemies(); + + if (enemies.TOTAL == 0) + { + return 0; + } + + int iAverageHD = enemies.TOTAL_LEVELS / enemies.TOTAL; + return iAverageHD; +} + +// Thanks to FalloutBoy for original Jug_At* ideas! + +int Jug_AtLocation(int nSpellID, object oTarget, int iModifier, int iRequirement, int iChance = 100) +{ +/* + * This one apparently cause stack underflows... + * + * "Redirecting" calls to AtObject instead of replacing AtLocation calls if + * any AtLocation bugs are fixed in a future patch and there's a use to call + * AtLocation. + * + if (GetHasSpell(nSpellID) && d100() < iChance && iModifier >= iRequirement) + { + ClearAllActions(); + ActionCastSpellAtLocation(nSpellID, GetLocation(oTarget)); + return TRUE; + } + return FALSE; +*/ + return Jug_AtObject(nSpellID, oTarget, iModifier, iRequirement, iChance); +} + +int Jug_AtObject(int nSpellID, object oTarget, int iModifier, int iRequirement, int iChance = 100) +{ + if (GetHasSpell(nSpellID) && d100() < iChance && iModifier >= iRequirement) + { + ClearAllActions(); + ActionCastSpellAtObject(nSpellID, oTarget); + return TRUE; + } + return FALSE; +} + +// Return TRUE if target is enhanced with a beneficial +// spell that can be dispelled (= from a spell script), FALSE otherwise. +int Jug_GetHasBeneficialEnhancement(object oTarget) +{ + // Make sure the effects of bard songs (that can't be dispelled) don't + // confuse this function + if (GetHasFeatEffect(FEAT_BARD_SONGS, oTarget)) + { + return FALSE; + } + + effect eCheck = GetFirstEffect(oTarget); + int iSpellID; + while (GetIsEffectValid(eCheck)) + { + if (GetEffectSpellId(eCheck) != -1) + { + // Found an effect applied by a spell script - check the effect type + // Ignore invisibility effects since that's a special case taken + // care of elsewhere + int iType = GetEffectType(eCheck); + if (iType == EFFECT_TYPE_ABILITY_INCREASE || + iType == EFFECT_TYPE_AC_INCREASE || + iType == EFFECT_TYPE_ATTACK_INCREASE || + iType == EFFECT_TYPE_CONCEALMENT || + iType == EFFECT_TYPE_DAMAGE_IMMUNITY_INCREASE || + iType == EFFECT_TYPE_DAMAGE_INCREASE || + iType == EFFECT_TYPE_DAMAGE_REDUCTION || + iType == EFFECT_TYPE_DAMAGE_RESISTANCE || + iType == EFFECT_TYPE_ELEMENTALSHIELD || + iType == EFFECT_TYPE_HASTE || + iType == EFFECT_TYPE_ENEMY_ATTACK_BONUS || + iType == EFFECT_TYPE_IMMUNITY || + iType == EFFECT_TYPE_INVULNERABLE || + iType == EFFECT_TYPE_MOVEMENT_SPEED_INCREASE || + iType == EFFECT_TYPE_REGENERATE || + iType == EFFECT_TYPE_SANCTUARY || + iType == EFFECT_TYPE_SAVING_THROW_INCREASE || + iType == EFFECT_TYPE_SEEINVISIBLE || + iType == EFFECT_TYPE_SKILL_INCREASE || + iType == EFFECT_TYPE_SPELL_IMMUNITY || + iType == EFFECT_TYPE_SPELL_RESISTANCE_INCREASE || + iType == EFFECT_TYPE_SPELLLEVELABSORPTION || + iType == EFFECT_TYPE_TEMPORARY_HITPOINTS || + iType == EFFECT_TYPE_TRUESEEING || + iType == EFFECT_TYPE_ULTRAVISION) + { + return TRUE; + } + } + eCheck = GetNextEffect(oTarget); + } + return FALSE; +} + +// Return nearest ally if found, OBJECT_INVALID otherwise. +// Casters use this to buff nearby allies. +object Jug_GetNearestAlly() +{ + object oTarget = GetNearestCreature(CREATURE_TYPE_REPUTATION, + REPUTATION_TYPE_FRIEND, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, + PERCEPTION_SEEN); + + if (GetIsObjectValid(oTarget) /*&& GetDistanceToObject(oTarget) < 15.0*/) + { + return oTarget; + } + return OBJECT_INVALID; +} + +int Jug_IsArcaneCaster(object oTarget = OBJECT_SELF) +{ + return GetLevelByClass(CLASS_TYPE_WIZARD) >= 1 || GetLevelByClass(CLASS_TYPE_SORCERER) >= 1; +} + +int Jug_IsDivineCaster(object oTarget = OBJECT_SELF) +{ + return GetLevelByClass(CLASS_TYPE_CLERIC) >= 1 || GetLevelByClass(CLASS_TYPE_DRUID) >= 1; +} + +// As MyPrintString, but to screen instead of log +void Jug_Debug(string sString) +{ + SendMessageToPC(GetFirstPC(), sString); +} + +void MyPrintString(string sString) +{ +// PrintString(sString); +} + diff --git a/_removed/nw_i0_plot.nss b/_removed/nw_i0_plot.nss new file mode 100644 index 0000000..42a2bee --- /dev/null +++ b/_removed/nw_i0_plot.nss @@ -0,0 +1,1464 @@ +//:://///////////////////////////////////////////// +//:: +//:: Designer Include File +//:: +//:: NW_I0_PLOT.nss +//:: +//:: Copyright (c) 2001 Bioware Corp. +//:: +//:: +//::////////////////////////////////////////////// +//:: +//:: +//:: This is a sample of design wrote +//:: functions that may need inclusion in multiple +//:: modules. +//:: +//::////////////////////////////////////////////// +//:: +//:: Created By: Brent Knowles +//:: Created On: February 12, 2001 +//:: Updated On: August, 14, 2003 (Georg) - Fixed AutoDC, Added const statement to constants +//::////////////////////////////////////////////// + +const int DC_EASY = 0; +const int DC_MEDIUM = 1; +const int DC_HARD = 2; +const int DC_SUPERIOR = 3; +const int DC_MASTER = 4; +const int DC_LEGENDARY = 5; +const int DC_EPIC = 6; +// * this is used by some of the template scripts +// * 100 - this number is the chance of that dialog +// * appearing +const int G_CLASSCHANCE = 70; + +//Experience Point Rewards constants used in the 'des_xp_rewards' 2da +const int XP_VERY_LOW = 1; //50 xp +const int XP_LOW = 2; //100 xp +const int XP_MEDIUM_LOW = 3; //150 xp +const int XP_MEDIUM = 4; //250 xp +const int XP_MEDIUM_HIGH = 5; //500 xp +const int XP_HIGH = 6; //1000 xp +const int XP_VERY_HIGH = 7; //2000 xp +const int XP_EPIC = 8; //5000 xp + + +// * FUNCTION DECLARATIONS + +// * returns true if the player can afford to lose the indicated amount of XP without losing a level +int plotCanRemoveXP(object oPC, int nPenalty); + +int GetCanCastHealingSpells(object oPC) ; +int DoOnce(); +void DebugSpeak(string s); +object GetMyMaster(); +int IsRecall(); +void DimensionHop(object oTarget); +int CanSeePlayer(); +void EscapeArea(int bRun = TRUE, string sTag="NW_EXIT"); +int HasItem(object oCreature, string s); +void TakeGold(int nAmount, object oGoldHolder, int bDestroy=TRUE); +object GetNearestPC(); +void SetIsEnemy(object oTarget); + +// Provide a scaled skill check DC based on the DC_* constant passed in +// DC - DC_EASY DC_MEDIUM DC_HARD DC_SUPERIOR DC_MASTER DC_LEGENDARY DC_EPIC +// nSkill - SKILL_* constant +// oTarget - creature that is going to perform the check; +int AutoDC(int DC, int nSkill, object oTarget); +void AutoAlignG(int DC, object oTarget); +void AutoAlignE(int DC, object oTarget); +void DoGiveXP(string sJournalTag, int nPercentage, object oTarget, int QuestAlignment=ALIGNMENT_NEUTRAL); +void RewardXP(string sJournalTag, int nPercentage, object oTarget, int QuestAlignment=ALIGNMENT_NEUTRAL, int bAllParty=TRUE); +void RewardGP(int GP, object oTarget,int bAllParty=TRUE); +int CheckCharismaMiddle(); +int CheckCharismaNormal(); +int CheckCharismaLow(); +int CheckCharismaHigh(); +int CheckIntelligenceLow(); +int CheckIntelligenceNormal(); +int CheckIntelligenceNormal(); +int CheckIntelligenceHigh(); +int CheckWisdomHigh(); +// Return the wisdom of oTarget +int GetWisdom(object oTarget); +// Return the Intelligence of the Target +int GetIntelligence(object oTarget); +// Return the Charisma of the Target +int GetCharisma(object oTarget); +// Return the numer of items oTarget possesses from type sItem (Tag) +int GetNumItems(object oTarget,string sItem); +// Gives the item with the ResRef sItem to creature oTarget nNumItems times +void GiveNumItems(object oTarget,string sItem,int nNumItems); +// Remove nNumItems Items of Type sItem (Tag) from oTarget +void TakeNumItems(object oTarget,string sItem,int nNumItems); +// * plays the correct character theme +// * assumes OBJECT_SELF is in the area +void PlayCharacterTheme(int nTheme); +// * plays the old theme for the area +// * assumes OBJECT_SELF is in the area +void PlayOldTheme(); +int GetPLocalInt(object oPC,string sLocalName); +void SetPLocalInt(object oPC,string sLocalName, int nValue); +// * removes all negative effects +void RemoveEffects(object oDead); +// * starts store using appraise skill +void gplotAppraiseOpenStore(object oStore, object oPC, int nBonusMarkUp = 0, int nBonusMarkDown = 0); +// * starts store with favorable appraise check +void gplotAppraiseFavOpenStore(object oStore, object oPC, int nBonusMarkUp = 0, int nBonusMarkDown = 0); +//Do a DC check and modify the skill by the Target's Strength modifier +int CheckDCStr(int DC, int nSkill, object oTarget); +//Check to see if target is PC and not DM +int GetIsPlayerCharacter(object oTarget); +//Reward Experience based on an entry in the des_xp_rewards 2da file +void Reward_2daXP(object oPC, int nRow, int bAllParty = TRUE, int nPercentage = 100); +//Both speak a string ref as well as play the associate sound file +void PlaySpeakSoundByStrRef(int nStrRef); + + +// * returns a value that will be subtracted from the +// * oTarget's DC to resist APpraise or Persuasion +int GetNPCEasyMark(object oTarget) +{ + int nCharmMod = 0; + if (GetHasSpellEffect(SPELL_CHARM_PERSON, oTarget)) + { + nCharmMod = 10; + } + else + if (GetHasSpellEffect(SPELL_CHARM_MONSTER, oTarget)) + { + nCharmMod = 10; + } + else + if (GetHasSpellEffect(SPELL_CHARM_PERSON_OR_ANIMAL, oTarget)) + { + nCharmMod = 10; + } + else if (GetHasSpellEffect(SPELL_MASS_CHARM, oTarget)) + { + nCharmMod = 15; + } + else if (GetHasSpellEffect(SPELL_DOMINATE_MONSTER, oTarget)) + { + nCharmMod = 20; + } + else if (GetHasSpellEffect(SPELL_DOMINATE_ANIMAL, oTarget)) + { + nCharmMod = 20; + } + else if (GetHasSpellEffect(SPELL_DOMINATE_PERSON, oTarget)) + { + nCharmMod = 20; + } + return nCharmMod; +} + +//:://///////////////////////////////////////////// +//:: gplotAppraiseOpenStore +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Opens a store, modifying the store prices + by the Appraise skill of the PCspeaker + +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//:: 2003-05-26: Updated from XP1 sources - Georg +//::////////////////////////////////////////////// +void gplotAppraiseOpenStore(object oStore, object oPC, int nBonusMarkUp = 0, int nBonusMarkDown = 0) +{ + int STATE_FAILED = 1; + int STATE_TIE = 2; + int STATE_WON = 3; + string sTag = ObjectToString(OBJECT_SELF); + + int nPlayerSkillRank = GetSkillRank(SKILL_APPRAISE, oPC); + + int nNPCSkillRank = GetSkillRank(SKILL_APPRAISE, OBJECT_SELF) - GetNPCEasyMark(OBJECT_SELF); + + + if (nNPCSkillRank < 1 ) + nNPCSkillRank = 1; + + int nAdjust = 0; + + + /* + New System: + + An opposed skill check (a d10 roll instead). Your appraise skill versus the shopkeepers appraise skill. + + Possible Results: + + Percentage Rebate/Penalty: The 'difference' + + Feedback: [Appraise Skill]: Merchant's reaction is unfavorable. + [Appraise Skill]: Merchant's reaction is neutral. + [Appraise Skill]: Merchant's reaction is favorable. + + Additional: Remember last reaction for this particular skill. + When the player gets a new skill rank in this skill they'll get a + reroll against this merchant. + + */ + + int nState = 0; + int nPreviousRank = GetLocalInt(oPC, "X0_APPRAISERANK"+ sTag); + + // * if the player's rank has improved, let them have another appraise check + // * against this merchant + + + + if ( (nPlayerSkillRank > nPreviousRank) || !GetLocalInt(oPC, "X0_APPRAISEVISITED"+sTag) ) + { + SetLocalInt(oPC, "X0_APPRAISERANK"+ sTag, nPlayerSkillRank); + SetLocalInt(oPC, "X0_APPRAISEVISITED"+sTag, 1); + + nPlayerSkillRank = nPlayerSkillRank + d10(); + nNPCSkillRank = nNPCSkillRank + d10(); + nAdjust = nNPCSkillRank - nPlayerSkillRank; // * determines the level of price modification + if (nNPCSkillRank > nPlayerSkillRank) + { + nState = STATE_FAILED; + } + else + if (nNPCSkillRank < nPlayerSkillRank) + { + nState = STATE_WON; + } + else + if (nNPCSkillRank == nPlayerSkillRank) + { + nState = STATE_TIE; + } + + } + else + { + // * recover last reaction + nAdjust = GetLocalInt(oPC, "X0_APPRAISEADJUST" + sTag); + + if (nAdjust > 0) + { + nState = STATE_FAILED; + } + else + if (nAdjust < 0) + { + nState = STATE_WON; + } + else + if (nAdjust == 0) + { + nState = STATE_TIE; + } + + } + + if (nState == STATE_FAILED ) + { + FloatingTextStrRefOnCreature(8963, oPC, FALSE); + } + else + if (nState == STATE_WON) + { + FloatingTextStrRefOnCreature(8965, oPC, FALSE); + } + else + if (nState == STATE_TIE) + { + FloatingTextStrRefOnCreature(8964, oPC, FALSE); + } + + SetLocalInt(oPC, "X0_APPRAISEADJUST"+ sTag, nAdjust); + // SpawnScriptDebugger(); + + + // * Hard cap of 30% max up or down + if (nAdjust > 30) + nAdjust = 30; + if (nAdjust < -30) + nAdjust = -30; + nBonusMarkUp = nBonusMarkUp + nAdjust; + nBonusMarkDown = nBonusMarkDown - nAdjust; + OpenStore(oStore, oPC, nBonusMarkUp, nBonusMarkDown); +} + +//:://///////////////////////////////////////////// +//:: gplotAppraiseFavOpenStore +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Opens a store, modifying the store prices + by the Appraise skill of the PCspeaker + THIS SCRIPT ALWAYS RESULTS IN A GOOD APPRAISE + RESULT + +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: Mar 7/03 +//:: 2003-05-26: Updated from XP1 sources - Georg +//::////////////////////////////////////////////// +void gplotAppraiseFavOpenStore(object oStore, object oPC, int nBonusMarkUp = 0, int nBonusMarkDown = 0) +{ + int STATE_WON = 3; + string sTag = ObjectToString(OBJECT_SELF); + + int nPlayerSkillRank = GetSkillRank(SKILL_APPRAISE, oPC); + + int nNPCSkillRank = 0; + + + int nAdjust = 0; + + int nState = STATE_WON; + int nPreviousRank = GetLocalInt(oPC, "X0_APPRAISERANK"+ sTag); + + // * if the player's rank has improved, let them have another appraise check + // * against this merchant + + + + if ( (nPlayerSkillRank > nPreviousRank) || !GetLocalInt(oPC, "X0_APPRAISEVISITED"+sTag) ) + { + SetLocalInt(oPC, "X0_APPRAISERANK"+ sTag, nPlayerSkillRank); + SetLocalInt(oPC, "X0_APPRAISEVISITED"+sTag, 1); + + nPlayerSkillRank = nPlayerSkillRank + d10(); + + nAdjust = nNPCSkillRank - nPlayerSkillRank; // * determines the level of price modification + + } + else + { + // * recover last reaction + nAdjust = GetLocalInt(oPC, "X0_APPRAISEADJUST" + sTag); + } + + FloatingTextStrRefOnCreature(8965, oPC, FALSE); + + + SetLocalInt(oPC, "X0_APPRAISEADJUST"+ sTag, nAdjust); + + // * Hard cap of 30% max up or down + if (nAdjust > 30) + nAdjust = 30; + if (nAdjust < -30) + nAdjust = -30; + + nBonusMarkUp = nBonusMarkUp + nAdjust; + nBonusMarkDown = nBonusMarkDown - nAdjust; + OpenStore(oStore, oPC, nBonusMarkUp, nBonusMarkDown); +} + + +// * plays the correct character theme +// * assumes OBJECT_SELF is in the area +void PlayCharacterTheme(int nTheme) +{ + object oArea =GetArea(OBJECT_SELF); + int nMusicNight = MusicBackgroundGetNightTrack(oArea); + int nMusicDay = MusicBackgroundGetDayTrack(oArea); + // AssignCommand(GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC), SpeakString(IntToString(nMusic))); + //* stores the last music track + SetLocalInt(oArea, "NW_L_MYLASTTRACKNight", nMusicNight); + SetLocalInt(oArea, "NW_L_MYLASTTRACKDay", nMusicDay); + MusicBackgroundStop(oArea); + MusicBackgroundChangeNight(oArea, nTheme); + MusicBackgroundChangeDay(oArea, nTheme); + MusicBackgroundPlay(oArea); + +} + +// * plays the old theme for the area +// * assumes OBJECT_SELF is in the area +void PlayOldTheme() +{ + object oArea =GetArea(OBJECT_SELF); + //* stores the last music track + int nMusicNight = GetLocalInt(oArea, "NW_L_MYLASTTRACKNight"); + int nMusicDay = GetLocalInt(oArea, "NW_L_MYLASTTRACKDay"); + MusicBackgroundStop(oArea); + MusicBackgroundChangeNight(oArea, nMusicNight); + MusicBackgroundChangeDay(oArea, nMusicDay); + MusicBackgroundPlay(oArea); + +} + + +// Returns the adjusted Reaction for the purposes of store pricing. +float GetReactionAdjustment(object oTarget); +/* + Adjusts all faction member's reputation visa via + another faction. Pass in a member from each + faction. +*/ +void AdjustFactionReputation(object oTargetCreature, object oMemberOfSourceFaction, int nAdjustment); +/* + Makes the person teleport away and look like + they are casting a spell. +*/ +void EscapeViaTeleport(object oFleeing); + +// * FUNCTION DEFINITIONS + + +int GetCanCastHealingSpells(object oPC) +{ + talent tTalent = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_HEALING_TOUCH, 20, oPC); + if (GetIsTalentValid(tTalent) == TRUE) + { + return TRUE; + } + return FALSE; +} + + +int DoOnce() +{ + int bResult = FALSE; + + if (GetLocalInt(OBJECT_SELF,"NW_L_DOONCE999") == 0) + { + SetLocalInt(OBJECT_SELF,"NW_L_DOONCE999",1); + bResult = TRUE; + } + return bResult; +} + +void DebugSpeak(string s) +{ + SpeakString(s); +} +object GetMyMaster() +{ + return GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC); +} + + + +//:://///////////////////////////////////////////// +//:: IsRecall +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Attempts to transport the player + back to closest Temple of Tyr using + a Recall Stone. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +int IsRecall() +{ + if (GetTag(GetItemActivated()) == "NW_IT_RECALL") + { + string sAreaTag = GetTag(GetArea(GetItemActivator())); + if (/*Chapter 1 Areas*/ + sAreaTag == "MAP_M1S3B" || + sAreaTag == "Map_M1S4C" || + sAreaTag == "MAP_M1Q6F4" || // Fenthick area in Chapter1e + sAreaTag == "Map_M1S4D" || + sAreaTag == "Map_M1S4E" || + sAreaTag == "Map_M1S4F" || + + /* Chapter 3 and 4 Areas*/ + sAreaTag == "MAP_M1Q6A" || /*Castle Never*/ + sAreaTag == "M4Q1D2" /*Final Source Stone level*/ || + sAreaTag == "M4FinalArea" || /*Haedralines area*/ + sAreaTag == "M3Q1A10" || /*Aarin Gend's Lodge*/ + sAreaTag == "M3Q3C" || sAreaTag == "M3Q3Ca" || sAreaTag == "M3Q2G" || sAreaTag == "M3Q2I" || + sAreaTag == "Map_M2Q2E2" || sAreaTag == "Map_M2Q2G" || sAreaTag == "Map_M2Q3GA" || sAreaTag == "Map_M2Q3GB") + { + AssignCommand(GetItemActivator(), ActionSpeakStringByStrRef(10611)); + return TRUE; + } + else +/* if (CanAffordIt() == FALSE) + { + AssignCommand(GetItemActivator(), ActionSpeakStringByStrRef(66200)); + return TRUE; + + } + else */ + // * May 2002: Checking a global to see if Haedraline is around as well + if ( GetLocalInt(GetModule(),"NW_G_RECALL_HAED") == 10 + || GetIsObjectValid(GetNearestObjectByTag("Haedraline3Q11", GetItemActivator())) == TRUE) + { + AssignCommand(GetItemActivator(), ActionSpeakStringByStrRef(10612)); + return TRUE; + } + else + { + object oPortal = GetObjectByTag("NW_RECALL_PORTAL"); + if (GetIsObjectValid(oPortal) == TRUE) + { + SetLocalInt(GetItemActivator(), "NW_L_USED_RECALL", 1); + SetLocalLocation(GetItemActivator(), "NW_L_LOC_RECALL", GetLocation(GetItemActivator())); + string sTag = "NW_RECALL_PORTAL"; + object oClicker = GetItemActivator(); + object oTarget = GetObjectByTag(sTag); + // AssignCommand(GetItemActivator(), SpeakString(sTag)); + // * if I don't do this, gets stuck in a loop + // * of casting. + AssignCommand(oClicker, ClearAllActions()); + + AssignCommand(oClicker, PlaySound("as_mg_telepout1")); + + + //SetAreaTransitionBMP(AREA_TRANSITION_RANDOM); +// AssignCommand(oClicker, PlaySound("as_mg_telepout1")); + AssignCommand(oClicker,JumpToObject(oTarget)); +// AssignCommand(oClicker, DelayCommand(1.0,PlaySound("as_mg_telepout1"))); + AssignCommand(oClicker, ActionDoCommand(ClearAllActions())); + return TRUE; + } + // * this module does not have a temple of tyr + else + { + AssignCommand(GetItemActivator(), ActionSpeakStringByStrRef(10614)); + return TRUE; + } + } + } + return FALSE; + +} + +//:://///////////////////////////////////////////// +//:: DimensionHop +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Will move the character from one point to oTarget + with a flashy graphic. + Original Use: Dryads in M3Q3, SnowGlobe +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: January 10, 2002 +//::////////////////////////////////////////////// + +void DimensionHop(object oTarget) +{ + if (GetDistanceToObject(oTarget) > 2.5) + { + effect eVis = EffectVisualEffect(VFX_IMP_UNSUMMON); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, OBJECT_SELF); + ActionJumpToObject(oTarget); + } +} + + + +//:://///////////////////////////////////////////// +//:: CanSeePlayer +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Returns true if OBJECT_SELF can see the player +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// + +int CanSeePlayer() +{ + return GetIsObjectValid(GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, OBJECT_SELF, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN)); +} +//:://///////////////////////////////////////////// +//:: EscapeArea() +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Runs object to nearest waypoint with tag + "NW_EXIT". This tag can be overridden. + You can also specify whether to run or not. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: December 2001 +//::////////////////////////////////////////////// +void EscapeArea(int bRun = TRUE, string sTag="NW_EXIT") +{ + object oWay = GetNearestObjectByTag(sTag); + if (GetIsObjectValid(oWay)) + { + ActionMoveToObject(oWay, bRun); + ActionDoCommand(DestroyObject(OBJECT_SELF)); + SetCommandable(FALSE); // * this prevents them from being interrupted + } + else + SpeakString("invalid exit waypoint"); +} + +//:://///////////////////////////////////////////// +//:: HasItem +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + A wrapper to simplify checking for an item. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: November 2001 +//::////////////////////////////////////////////// + +int HasItem(object oCreature, string s) +{ + return GetIsObjectValid(GetItemPossessedBy(oCreature, s)); +} + +//:://///////////////////////////////////////////// +//:: Take Gold +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Takes nAmount of gold from the object speaking. + By default, the gold is destroyed. +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: November 2001 +//::////////////////////////////////////////////// +void TakeGold(int nAmount, object oGoldHolder, int bDestroy=TRUE) +{ + TakeGoldFromCreature(nAmount, oGoldHolder, bDestroy); +} + + +//:://///////////////////////////////////////////// +//:: HasGold +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Checks to see if the player has nAmount of gold +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// +int HasGold(int nAmount, object oGoldHolder) +{ + return GetGold(oGoldHolder) >= nAmount; +} + +//:: GetNearestPC +////////////////////////////////////////////////// +// +// GetNearestPC +// +////////////////////////////////////////////////// +// +// +// Returns the PC closes to the object calling +// the function. +// +////////////////////////////////////////////////// +// +// Created By: Brent +// Created On: May 16, 2001 +// +////////////////////////////////////////////////// +object GetNearestPC() +{ + return GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR,PLAYER_CHAR_IS_PC); +} + + +//:: SetIsEnemy +////////////////////////////////////////////////// +// +// [Function Name] +// +////////////////////////////////////////////////// +// +// +// [A description of the function. This should contain any +// special ranges on input values] +// +////////////////////////////////////////////////// +// +// Created By: +// Created On: +// +////////////////////////////////////////////////// +void SetIsEnemy(object oTarget) +{ + AdjustReputation(oTarget, OBJECT_SELF,-100); + ActionAttack(oTarget); +} + + + + +/////////////////////////////////////////////////////////////////////////////// +// +// AutoDC +// +/////////////////////////////////////////////////////////////////////////////// +// Returns a pass value based on the object's level and the suggested DC +// December 20 2001: Changed so that the difficulty is determined by the +// NPC's Hit Dice +// November 2002 (Brent): Adding a higher upper range for level 15+ campaigns. +// August 2003 (Georg): Fixed bug not adding up DCs in the correct order +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 13 2001 +/////////////////////////////////////////////////////////////////////////////// +int AutoDC(int DC, int nSkill, object oTarget) +{ + /* + Easy = Lvl/4 ...rounded up + Moderate = 3/Lvl + Lvl ...rounded up + Difficult = Lvl * 1.5 + 6 ...rounded up + */ + int nLevel = GetHitDice(OBJECT_SELF); + int nTest = 0; + + // * July 2 + // * If nLevel is less than 0 or 0 then set it to 1 + if (nLevel <= 0) + { + nLevel = 1; + } + + switch (DC) + { + case DC_EASY: nTest = nLevel / 4 + 1; break; + // * minor tweak to lower the values a little + case DC_MEDIUM: nTest = (3 / nLevel + nLevel) - abs( (nLevel/2) -2); break; + case DC_HARD: nTest = FloatToInt(nLevel * 1.5 + 6) - abs( ( FloatToInt(nLevel/1.5) -2)); break; + case DC_SUPERIOR: nTest = 7+ FloatToInt(nLevel * 1.5 + 6) - abs( ( FloatToInt(nLevel/1.5) -2)); break; + case DC_MASTER: nTest = 14 + FloatToInt(nLevel * 1.5 + 6) - abs( ( FloatToInt(nLevel/1.5) -2)); break; + case DC_LEGENDARY: nTest = 21 + FloatToInt(nLevel * 1.5 + 6) - abs( ( FloatToInt(nLevel/1.5) -2)); break; + case DC_EPIC: nTest = 28 + FloatToInt(nLevel * 1.5 + 6) - abs( ( FloatToInt(nLevel/1.5) -2)); break; + } + + + + // ********************************* + // * CHARM/DOMINATION + // * If charmed or dominated the NPC + // * will be at a disadvantage + // ********************************* + int nCharmMod = 0; + + if (nSkill == SKILL_PERSUADE || nSkill == SKILL_BLUFF || nSkill == SKILL_INTIMIDATE) + nCharmMod = GetNPCEasyMark(oTarget); + int nDC = nTest + 10 - nCharmMod ; + if (nDC < 1 ) + nDC = 1; + + // * Roll d20 + skill rank vs. DC + 10 + if (GetSkillRank(nSkill, oTarget) + d20() >= (nDC) ) + { + return TRUE; + } + return FALSE; +} + +/////////////////////////////////////////////////////////////////////////////// +// +// AutoAlignG(int DC, object oTarget) +// +/////////////////////////////////////////////////////////////////////////////// +// Adjusts the alignment of the object towards good, relative to the +// degree indicated. +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 13, 2001 +/////////////////////////////////////////////////////////////////////////////// +void AutoAlignG(int DC, object oTarget) +{ + int nShift = 0; + switch (DC) + { + case 0: nShift = 3; break; + case 1: nShift = 7; break; + case 2: nShift = 10; break; + } + AdjustAlignment(oTarget, ALIGNMENT_GOOD, nShift); +} +/////////////////////////////////////////////////////////////////////////////// +// +// AutoAlignE +// +/////////////////////////////////////////////////////////////////////////////// +// Adjusts the alignment of the object towards evil, relative to the +// degree indicated. +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 13, 2001 +/////////////////////////////////////////////////////////////////////////////// +void AutoAlignE(int DC, object oTarget) +{ + int nShift = 0; + switch (DC) + { + case 0: nShift = 3; break; + case 1: nShift = 7; break; + case 2: nShift = 10; break; + } + AdjustAlignment(oTarget, ALIGNMENT_EVIL, nShift); +} + + +//:://///////////////////////////////////////////// +//:: DoGiveXP +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Gives the designated XP to the object + using the design rules for XP + distribution. +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// + +void DoGiveXP(string sJournalTag, int nPercentage, object oTarget, int QuestAlignment=ALIGNMENT_NEUTRAL) +{ + + float nRewardMod = 1.0; + // * error handling + if ((nPercentage < 0) || (nPercentage > 100)) + { + nPercentage = 100; + } + float nXP = GetJournalQuestExperience(sJournalTag) * (nPercentage * 0.01); + + // * for each party member + // * cycle through them and + // * and give them the appropriate reward + // * HACK FOR NOW + if ((GetAlignmentGoodEvil(oTarget) == ALIGNMENT_NEUTRAL) || (QuestAlignment ==ALIGNMENT_NEUTRAL) ) + { + nRewardMod = 1.0; + } + else + if (GetAlignmentGoodEvil(oTarget) == QuestAlignment) + { + nRewardMod = 1.25; + } + else + if (GetAlignmentGoodEvil(oTarget) != QuestAlignment) + { + nRewardMod = 0.75; + } +// AssignCommand(oTarget,SpeakString("My XP reward is: " + FloatToString(nRewardMod * nXP))); + GiveXPToCreature(oTarget, FloatToInt(nRewardMod * nXP)); + +} +/////////////////////////////////////////////////////////////////////////////// +// +// RewardXP +// +/////////////////////////////////////////////////////////////////////////////// +// Gives each player the reward, scaled 1.25 times if of the correct alignment +// and 0.75 times if of the wrong alignment. Neutral always get the +// 1.0 times reward. +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 13, 2001 +/////////////////////////////////////////////////////////////////////////////// +void RewardXP(string sJournalTag, int nPercentage, object oTarget, int QuestAlignment=ALIGNMENT_NEUTRAL, int bAllParty=TRUE) +{ + +// AssignCommand(oTarget, SpeakString("in rewardxp funtion")); + if (bAllParty == TRUE) + { + object oPartyMember = GetFirstFactionMember(oTarget, TRUE); + while (GetIsObjectValid(oPartyMember) == TRUE) + { + DoGiveXP(sJournalTag, nPercentage, oPartyMember, QuestAlignment); + oPartyMember = GetNextFactionMember(oTarget, TRUE); +// AssignCommand(oTarget,SpeakString("here your xp sir")); + } + } + else + { + DoGiveXP(sJournalTag, nPercentage, oTarget, QuestAlignment); + } + + +} + + +/////////////////////////////////////////////////////////////////////////////// +// +// RewardGP +// +/////////////////////////////////////////////////////////////////////////////// +// Gives the GP to (if bAllParty = TRUE) all party members. +// Each players gets the GP value amount. +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 13, 2001 +/////////////////////////////////////////////////////////////////////////////// + +void RewardGP(int GP, object oTarget,int bAllParty=TRUE) +{ + // * for each party member + // * cycle through them and + // * and give them the appropriate reward + // * HACK FOR NOW + if (bAllParty == TRUE) + { + object oPartyMember = GetFirstFactionMember(oTarget, TRUE); + while (GetIsObjectValid(oPartyMember) == TRUE) + { + //AssignCommand(oPartyMember, SpeakString("MY GP reward is: " + IntToString(GP))); + GiveGoldToCreature(oPartyMember, GP); + oPartyMember = GetNextFactionMember(oTarget, TRUE); + } + } + else + { + GiveGoldToCreature(oTarget, GP); + } +} + + +// * +// * Conversation Functions +// * + +/////////////////////////////////////////////////////////////////////////////// +// +// CheckCharismaMiddle +// +/////////////////////////////////////////////////////////////////////////////// +// Returns TRUE if charisma is in the normal range. +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 13, 2001 +/////////////////////////////////////////////////////////////////////////////// +int CheckCharismaMiddle() +{ + if (GetAbilityScore(GetPCSpeaker(),ABILITY_CHARISMA) >= 10 && GetAbilityScore(GetPCSpeaker(),ABILITY_CHARISMA) < 15) + { + return TRUE; + } + return FALSE; +} + +/////////////////////////////////////////////////////////////////////////////// +// +// CheckCharismaNormal +// +/////////////////////////////////////////////////////////////////////////////// +// Returns TRUE if charisma is in the normal range. +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 13, 2001 +/////////////////////////////////////////////////////////////////////////////// +int CheckCharismaNormal() +{ + if (GetAbilityScore(GetPCSpeaker(),ABILITY_CHARISMA) >= 10) + { + return TRUE; + } + return FALSE; +} + +/////////////////////////////////////////////////////////////////////////////// +// +// CheckCharismaLow +// +/////////////////////////////////////////////////////////////////////////////// +// Returns TRUE if charisma is in the low range. +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 13, 2001 +/////////////////////////////////////////////////////////////////////////////// +int CheckCharismaLow() +{ + if (GetAbilityScore(GetPCSpeaker(),ABILITY_CHARISMA) < 10) + { + return TRUE; + } + return FALSE; +} +/////////////////////////////////////////////////////////////////////////////// +// +// CheckCharismaHigh +// +/////////////////////////////////////////////////////////////////////////////// +// Returns TRUE if charisma is in the high range. +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 13, 2001 +/////////////////////////////////////////////////////////////////////////////// +int CheckCharismaHigh() +{ + if (GetAbilityScore(GetPCSpeaker(),ABILITY_CHARISMA) >= 15) + { + return TRUE; + } + return FALSE; +} +/////////////////////////////////////////////////////////////////////////////// +// +// CheckIntelligenceLow +// +/////////////////////////////////////////////////////////////////////////////// +// Returns TRUE if intelligence is in the low range +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 13, 2001 +/////////////////////////////////////////////////////////////////////////////// + +int CheckIntelligenceLow() +{ + if (GetAbilityScore(GetPCSpeaker(),ABILITY_INTELLIGENCE) < 9) + return TRUE; + return FALSE; +} + +/////////////////////////////////////////////////////////////////////////////// +// +// CheckIntelligenceNormal +// +/////////////////////////////////////////////////////////////////////////////// +// Returns TRUE if intelligence is in the normal range +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 13, 2001 +/////////////////////////////////////////////////////////////////////////////// +int CheckIntelligenceNormal() +{ + if (GetAbilityScore(GetPCSpeaker(),ABILITY_INTELLIGENCE) >= 9) + return TRUE; + return FALSE; +} + +//:://///////////////////////////////////////////// +//:: CheckIntelligenceHigh +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + +*/ +//::////////////////////////////////////////////// +//:: Created By: +//:: Created On: +//::////////////////////////////////////////////// + +int CheckIntelligenceHigh() +{ + if (GetAbilityScore(GetPCSpeaker(),ABILITY_INTELLIGENCE) >= 15) + return TRUE; + return FALSE; +} +/////////////////////////////////////////////////////////////////////////////// +// +// CheckWisdomHigh +// +/////////////////////////////////////////////////////////////////////////////// +// Returns TRUE if wisdom is in the High range +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 13, 2001 +/////////////////////////////////////////////////////////////////////////////// +int CheckWisdomHigh() +{ + if (GetAbilityScore(GetPCSpeaker(),ABILITY_WISDOM) > 13) + return TRUE; + return FALSE; +} + +int GetWisdom(object oTarget) +{ + return GetAbilityScore(oTarget, ABILITY_WISDOM); +} +int GetIntelligence(object oTarget) +{ + return GetAbilityScore(oTarget, ABILITY_INTELLIGENCE); +} +int GetCharisma(object oTarget) +{ + return GetAbilityScore(oTarget, ABILITY_CHARISMA); +} + +//:: GetNumItems +////////////////////////////////////////////////// +// +// GetNumItems +// +////////////////////////////////////////////////// +// +// +// Returns the number of specified item in the +// target's inventory. +// +////////////////////////////////////////////////// +// +// Created By: John +// Created On: September 19, 2001 +// +////////////////////////////////////////////////// +int GetNumItems(object oTarget,string sItem) +{ + int nNumItems = 0; + object oItem = GetFirstItemInInventory(oTarget); + + while (GetIsObjectValid(oItem) == TRUE) + { + if (GetTag(oItem) == sItem) + { + nNumItems = nNumItems + GetNumStackedItems(oItem); + } + oItem = GetNextItemInInventory(oTarget); + } + + return nNumItems; +} + +//:: GiveNumItems +////////////////////////////////////////////////// +// +// GiveNumItems +// +////////////////////////////////////////////////// +// +// +// Gives the target the number of items specified. +// +////////////////////////////////////////////////// +// +// Created By: John +// Created On: September 19, 2001 +// +////////////////////////////////////////////////// +void GiveNumItems(object oTarget,string sItem,int nNumItems) +{ + int nCount = 0; + object oItem = GetFirstItemInInventory(OBJECT_SELF); + + while (GetIsObjectValid(oItem) == TRUE && nCount < nNumItems) + { + if (GetTag(oItem) == sItem) + { + ActionGiveItem(oItem,oTarget); + nCount++; + } + oItem = GetNextItemInInventory(OBJECT_SELF); + } + + return; +} + +//:: TakeNumItems +////////////////////////////////////////////////// +// +// TakeNumItems +// +////////////////////////////////////////////////// +// +// +// Takes the number of items specified from the target. +// +////////////////////////////////////////////////// +// +// Created By: John +// Created On: September 19, 2001 +// +////////////////////////////////////////////////// +void TakeNumItems(object oTarget,string sItem,int nNumItems) +{ + int nCount = 0; + object oItem = GetFirstItemInInventory(oTarget); + + while (GetIsObjectValid(oItem) == TRUE && nCount < nNumItems) + { + if (GetTag(oItem) == sItem) + { + ActionTakeItem(oItem,oTarget); + nCount++; + } + oItem = GetNextItemInInventory(oTarget); + } + + return; +} + + +/////////////////////////////////////////////////////////////////////////////// +// +// GetReactionAdjustment +// +/////////////////////////////////////////////////////////////////////////////// +// Returns the adjusted Reaction for the purposes of store pricing. +/////////////////////////////////////////////////////////////////////////////// +// Created By: Brent, September 25, 2001 +/////////////////////////////////////////////////////////////////////////////// + float GetReactionAdjustment(object oTarget) +{ + float nFactionAdjustment = 2.0; + // (i) + if (GetIsFriend(oTarget) == TRUE) + { + nFactionAdjustment = 1.0; + } + + // (ii) + int oTargetLawChaos = GetLawChaosValue(oTarget); + int oTargetGoodEvil = GetGoodEvilValue(oTarget); + int oSourceLawChaos = GetLawChaosValue(OBJECT_SELF); + int oSourceGoodEvil = GetGoodEvilValue(OBJECT_SELF); + int APB = abs(oSourceLawChaos - oTargetLawChaos) + abs(oSourceGoodEvil - oTargetGoodEvil); + int nTargetCharismaMod = GetAbilityModifier(ABILITY_CHARISMA, oTarget); + return abs(10 + APB - (nTargetCharismaMod * 10)) * nFactionAdjustment; + +} + +//:://///////////////////////////////////////////// +//:: AdjustFactionReputation +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Adjusts all faction member's reputation visa via + another faction. Pass in a member from each + faction. +*/ +//::////////////////////////////////////////////// +//:: Created By: Presotn Watamaniuk +//:: Created On: Nov 15, 2001 +//::////////////////////////////////////////////// +void AdjustFactionReputation(object oTargetCreature, object oMemberOfSourceFaction, int nAdjustment) +{ + object oFaction = GetFirstFactionMember(oTargetCreature); + while(GetIsObjectValid(oFaction)) + { + AdjustReputation(oTargetCreature, oMemberOfSourceFaction, nAdjustment); + oFaction = GetNextFactionMember(oTargetCreature); + } + AdjustReputation(oTargetCreature, oMemberOfSourceFaction, nAdjustment); +} + +//:://///////////////////////////////////////////// +//:: Escape Via Teleport +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Makes the person teleport away and look like + they are casting a spell. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: March 12, 2002 +//::////////////////////////////////////////////// + +void EscapeViaTeleport(object oFleeing) +{ + effect eVis = EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_3); + ActionCastFakeSpellAtObject(SPELL_MINOR_GLOBE_OF_INVULNERABILITY, oFleeing); + DelayCommand(1.5, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eVis, GetLocation(oFleeing))); + DestroyObject(oFleeing, 2.5); +} + + +//:://///////////////////////////////////////////// +//:: GetP(arty)LocalInt +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Scans through all players in the party, to + treat them all as 'one person' for the purposes + of most plots. Makes our plots more multiplayer friendly. +*/ +//::////////////////////////////////////////////// +//:: Created By: John +//:: Created On: +//::////////////////////////////////////////////// +int GetPLocalInt(object oPC,string sLocalName) +{ + int nValue = 0; + object oMember; + + oMember = GetFirstFactionMember(oPC); + + while (GetIsObjectValid(oMember)) + { + if (GetLocalInt(oPC,sLocalName) > nValue) + { + nValue = GetLocalInt(oMember,sLocalName); + } + oMember = GetNextFactionMember(oPC); + } + + return nValue; +} +//:://///////////////////////////////////////////// +//:: SetP(arty)LocalInt +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + +*/ +//::////////////////////////////////////////////// +//:: Created By: John +//:: Created On: +//::////////////////////////////////////////////// +void SetPLocalInt(object oPC,string sLocalName, int nValue) +{ + object oMember; + + oMember = GetFirstFactionMember(oPC); + + while (GetIsObjectValid(oMember)) + { + SetLocalInt(oMember,sLocalName,nValue); + oMember = GetNextFactionMember(oPC); + } + + return; +} +// * removes all negative effects +void RemoveEffects(object oDead) +{ + //Declare major variables + object oTarget = oDead; + effect eVisual = EffectVisualEffect(VFX_IMP_RESTORATION); + int bValid; + + effect eBad = GetFirstEffect(oTarget); + //Search for negative effects + while(GetIsEffectValid(eBad)) + { + if (GetEffectType(eBad) == EFFECT_TYPE_ABILITY_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_AC_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_ATTACK_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_DAMAGE_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_DAMAGE_IMMUNITY_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_SAVING_THROW_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_SPELL_RESISTANCE_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_SKILL_DECREASE || + GetEffectType(eBad) == EFFECT_TYPE_BLINDNESS || + GetEffectType(eBad) == EFFECT_TYPE_DEAF || + GetEffectType(eBad) == EFFECT_TYPE_PARALYZE || + GetEffectType(eBad) == EFFECT_TYPE_NEGATIVELEVEL || + GetEffectType(eBad) == EFFECT_TYPE_FRIGHTENED || + GetEffectType(eBad) == EFFECT_TYPE_DAZED || + GetEffectType(eBad) == EFFECT_TYPE_CONFUSED || + GetEffectType(eBad) == EFFECT_TYPE_POISON || + GetEffectType(eBad) == EFFECT_TYPE_DISEASE + ) + { + //Remove effect if it is negative. + RemoveEffect(oTarget, eBad); + } + eBad = GetNextEffect(oTarget); + } + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_RESTORATION, FALSE)); + + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVisual, oTarget); + + // * May 2002: Removed this because ActionRest is no longer an instant. + // * rest the player + //AssignCommand(oDead, ActionRest()); +} +int CheckDCStr(int DC, int nSkill, object oTarget) +{ + /* + Easy = Lvl/4 ...rounded up + Moderate = 3/Lvl + Lvl ...rounded up + Difficult = Lvl * 1.5 + 6 ...rounded up + */ + int nLevel = GetHitDice(OBJECT_SELF); + int nTest = 0; + + // * July 2 + // * If nLevel is less than 0 or 0 then set it to 1 + if (nLevel <= 0) + { + nLevel = 1; + } + + switch (DC) + { + case 0: nTest = nLevel / 4 + 1; break; + // * minor tweak to lower the values a little + case 1: nTest = (3 / nLevel + nLevel) - abs( (nLevel/2) -2); break; + case 2: nTest = FloatToInt(nLevel * 1.5 + 6) - abs( ( FloatToInt(nLevel/1.5) -2)); + case 3: nTest = nTest + 7; + case 4: nTest = nTest + 7; + case 5: nTest = nTest + 7; + // because there are no break statements it should + // add all the bonuses + } + //SpeakString(IntToString(nTest)); + + // * Roll d20 + skill rank vs. DC + 10 + if (GetSkillRank(nSkill, oTarget) + d20() + GetAbilityModifier(ABILITY_STRENGTH, oTarget) >= (nTest + 10) ) + { + return TRUE; + } + return FALSE; +} +// * returns true if the player can afford to lose the indicated amount of XP without losing a level +int plotCanRemoveXP(object oPC, int nPenalty) +{ + int nXP = GetXP(oPC); + int nHD = GetHitDice(oPC); + // * You can not lose a level with this + int nMin = ((nHD * (nHD - 1)) / 2) * 1000; + + int nNewXP = nXP - nPenalty; + if (nNewXP < nMin) + return FALSE; + return TRUE; +} +int GetIsPlayerCharacter(object oTarget) +{ + if (GetIsPC(oTarget) == TRUE && GetIsDM(oTarget) == FALSE) + return TRUE; + return FALSE; +} +//:://///////////////////////////////////////////// +//:: Name Reward_2daXP +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Pass in a PC and a row from the 'des_xp_rewards' + 2da file to reward the PC and/or party experience +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: May 29/03 +//::////////////////////////////////////////////// + +void Reward_2daXP(object oPC, int nRow, int bAllParty = TRUE, int nPercentage = 100) +{ + + float fPercent = IntToFloat(nPercentage)/100.0; + int nPlotXP = StringToInt(Get2DAString("des_xp_rewards", "XP", nRow)); + int nReward = FloatToInt(fPercent * nPlotXP); + if (bAllParty == TRUE) + { + object oParty = GetFirstFactionMember(oPC); + while (oParty != OBJECT_INVALID) + { + GiveXPToCreature(oParty, nReward); + oParty = GetNextFactionMember(oPC); + } + } + else + { + GiveXPToCreature(oPC, nReward); + } +} +//:://///////////////////////////////////////////// +//:: Name PlaySpeakSoundByStrRef +/* + Do both a SpeakStringRef and a Play StringRef + at the same time. +*/ +//::////////////////////////////////////////////// +//:: Created By: Keith Warner +//:: Created On: Oct 23/03 +//::////////////////////////////////////////////// +void PlaySpeakSoundByStrRef(int nStrRef) +{ + SpeakStringByStrRef(nStrRef); + PlaySoundByStrRef(nStrRef, FALSE); +} diff --git a/_removed/nw_s3_balordeth.nss b/_removed/nw_s3_balordeth.nss new file mode 100644 index 0000000..1777a61 --- /dev/null +++ b/_removed/nw_s3_balordeth.nss @@ -0,0 +1,62 @@ +//:://///////////////////////////////////////////// +//:: Balor On Death +//:: NW_S3_BALORDETH +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Fireball explosion does 50 damage to all within + 20ft +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Jan 9, 2002 +//::////////////////////////////////////////////// + +#include "NW_I0_SPELLS" +void main() +{ + + //Declare major variables + object oCaster = OBJECT_SELF; + int nMetaMagic = GetMetaMagicFeat(); + int nDamage; + float fDelay; + effect eExplode = EffectVisualEffect(VFX_FNF_FIREBALL); + effect eVis = EffectVisualEffect(VFX_IMP_FLAME_M); + effect eDam; + //Get the spell target location as opposed to the spell target. + location lTarget = GetLocation(OBJECT_SELF); + //Limit Caster level for the purposes of damage + //Apply the fireball explosion at the location captured above. + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eExplode, lTarget); + //Declare the spell shape, size and the location. Capture the first target object in the shape. + object oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_HUGE, lTarget, TRUE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR); + //Cycle through the targets within the spell shape until an invalid object is captured. + while (GetIsObjectValid(oTarget)) + { + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_FIREBALL)); + //Get the distance between the explosion and the target to calculate delay + fDelay = GetDistanceBetweenLocations(lTarget, GetLocation(oTarget))/20; + if (!MyResistSpell(OBJECT_SELF, oTarget, fDelay)) + { + //Adjust the damage based on the Reflex Save, Evasion and Improved Evasion. + nDamage = GetReflexAdjustedDamage(50, oTarget, GetSpellSaveDC(), SAVING_THROW_TYPE_FIRE); + //Set the damage effect + eDam = EffectDamage(nDamage, DAMAGE_TYPE_FIRE); + if(nDamage > 0) + { + // Apply effects to the currently selected target. + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget)); + //This visual effect is applied to the target object not the location as above. This visual effect + //represents the flame that erupts on the target not on the ground. + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget)); + } + } + //Select the next target within the spell shape. + oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_HUGE, lTarget, TRUE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR); + } + + +} + diff --git a/_removed/subrace_include.nss b/_removed/subrace_include.nss new file mode 100644 index 0000000..7d61009 --- /dev/null +++ b/_removed/subrace_include.nss @@ -0,0 +1,1885 @@ +#include "nodrop_include" +#include "spellres" +#include "damage_inc2" + +//By: mad_andrew +void UnSubrace(object oSubraceCharacter); +void ApplySubrace(object oPC) +{ +UnSubrace(oPC); +//Place your subraces here +//Just copy the TRAITS below, and uncomment/modify what you want +//You can delete anything you never plan on uncommenting + + + + if(GetSubRace(oPC) == "Night Elf" && GetRacialType(oPC) == RACIAL_TYPE_ELF) + + { + +//DEXTERITY+2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_DEXTERITY, 2)), oPC); + if(GetHitDice(oPC) > 3)//gets it at 4th level + { +//AC +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectACIncrease(2, AC_DODGE_BONUS, + DAMAGE_TYPE_NEGATIVE)), oPC); +//Movement speed up 120% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectMovementSpeedIncrease(120)), oPC); + } + if(GetHitDice(oPC) > 7)//gets it at 8th level + { +//Attack Increase +3 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAttackIncrease(3)), oPC); +//Damage increase +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageIncrease(2, DAMAGE_TYPE_NEGATIVE)), oPC); + } + if(GetHitDice(oPC) > 9)//gets it at 10th level + { +// Immunity cursed + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_CURSED)), oPC); + } + if(GetHitDice(oPC) > 5)//gets it at 6th level + { +// Saving Throw + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowIncrease(SAVING_THROW_REFLEX, 1, SAVING_THROW_TYPE_EVIL)), oPC); + } + if(GetHitDice(oPC) > 11)//gets it at 12th level + { +//Skill Increase + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_LISTEN, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_MOVE_SILENTLY, 10)), oPC); + } + if(GetHitDice(oPC) > 15)//gets it at 4th level + { +//Immune to Doom + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_DOOM)), oPC); + } + if(GetHitDice(oPC) > 3)//gets it at 4th level + { +//Ultravision + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectUltravision()), oPC); + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + } + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("darkelfprops2", oPC);} + else + if ((GetHitDice(oPC) >=8) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("darkelfprops1", oPC); } + else + {CreateItemOnObject("darkelfprops", oPC);} + + } +if(GetSubRace(oPC) == "Drow" && GetRacialType(oPC) == RACIAL_TYPE_ELF) + { +//STRENGTH +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_STRENGTH, 2)), oPC); +//INTELLIGENCE +3 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_INTELLIGENCE, 3)), oPC); + if(GetHitDice(oPC) > 3)//gets it at 4th level + { +//AC +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectACIncrease(2, AC_DODGE_BONUS)), oPC);//, AC_VS_DAMAGE_TYPE_ALL)), oPC); + } + if(GetHitDice(oPC) > 7)//gets it at 8th level + { + //Attack Increase +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAttackIncrease(2)), oPC); + } + if(GetHitDice(oPC) > 9)//gets it at 10th level + { +//Damage Immunity +20% Magic + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageImmunityIncrease(DAMAGE_TYPE_MAGICAL, 20)), oPC); +//Immunity Blindness + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_BLINDNESS)), oPC); + } + if(GetHitDice(oPC) > 5)//gets it at 6th level + { +//Saving throw increase +1 all + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowIncrease(SAVING_THROW_WILL, 1, SAVING_THROW_TYPE_DEATH)), oPC); + } + if(GetHitDice(oPC) > 11)//gets it at 4th level + { +//Skill Increase + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_CONCENTRATION, 5)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_DISCIPLINE, 5)), oPC); + } + if(GetHitDice(oPC) > 15)//gets it at 4th level + { +// Spell Immunity Darkness + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_DARKNESS)), oPC); + +//True Seeing + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectTrueSeeing()), oPC); + } +//Spell Resistance 24 + SpellResApply(oPC, 26); +//Give Subrace Item + + //add this items tag to the following scripts: "subraces_items" + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("drowprops2", oPC);} + else + if ((GetHitDice(oPC) >=8) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("drowprops1", oPC); } + else + {CreateItemOnObject("drowprops", oPC);} + + } + if(GetSubRace(oPC) == "Wood Elf" && GetRacialType(oPC) == RACIAL_TYPE_HALFELF) + { + +//DEXTERITY +3 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_DEXTERITY, 3)), oPC); +//WISDOM +3 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_WISDOM, 3)), oPC); + if(GetHitDice(oPC) > 7)//gets it at 4th level + { +//Attack Increase +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAttackIncrease(2)), oPC); + } + if(GetHitDice(oPC) > 9)//gets it at 4th level + { +//Concealment percentage 20% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectConcealment(20)), oPC); +//Damage Immunity +50% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageImmunityIncrease(DAMAGE_TYPE_POSITIVE, 50)), oPC); +//Immunity Paraysis + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_PARALYSIS)), oPC); + } + if(GetHitDice(oPC) > 3)//gets it at 4th level + { +//Movement speed up 140% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectMovementSpeedIncrease(140)), oPC); + } + if(GetHitDice(oPC) > 5)//gets it at 6th level + { +//Saving throw increase Fort +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowIncrease(SAVING_THROW_FORT, 2)), oPC); + } + if(GetHitDice(oPC) > 11)//gets it at 4th level + { +//Skill Increase Empathy + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_ANIMAL_EMPATHY, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_MOVE_SILENTLY, 5)), oPC); + } + if(GetHitDice(oPC) > 15)//gets it at 4th level + { +//Spell Immunity, web + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_WEB)), oPC); + } +//Give Subrace Item + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("woodprops2", oPC);} + else + if ((GetHitDice(oPC) >=10) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("woodprops1", oPC); } + else + {CreateItemOnObject("woodprops", oPC);} + } + +if(GetSubRace(oPC) == "Duergar" && GetRacialType(oPC) == RACIAL_TYPE_DWARF) + { +//STRENGTH +1 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_STRENGTH, 1)), oPC); +//CONSTITUTION +3 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_CONSTITUTION, 3)), oPC); +// Charisma -2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityDecrease(ABILITY_CHARISMA, 2)), oPC); + if(GetHitDice(oPC) > 3)//gets it at 4th level + { +//AC +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectACIncrease(2, AC_NATURAL_BONUS)), oPC); + } + if(GetHitDice(oPC) > 7)//gets it at 4th level + { +//Attack Increase +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAttackIncrease(2)), oPC); + } + if(GetHitDice(oPC) > 9)//gets it at 4th level + { +//Damage Immunity Bludgeoning +20% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageImmunityIncrease(DAMAGE_TYPE_BLUDGEONING, 20)), oPC); +//Immunity + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_POISON)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_DISEASE)), oPC); + } + if(GetHitDice(oPC) > 5)//gets it at 4th level + { +//Saving throw increase +1 all + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowIncrease(SAVING_THROW_FORT, 4)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowIncrease(SAVING_THROW_WILL, 2)), oPC); + } + if(GetHitDice(oPC) > 11)//gets it at 4th level + { +//Skill Increase Taunt & Parry +5 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_PARRY, 5)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_TAUNT, 5)), oPC); + } + if(GetHitDice(oPC) > 15)//gets it at 4th level + { + +//True Seeing + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectTrueSeeing()), oPC); + } +//Spell Resistance 20 + SpellResApply(oPC, 20); +//Give Subrace Item + + //add this items tag to the following scripts: "subraces_items" + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("duergprops2", oPC);} + else + if ((GetHitDice(oPC) >=10) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("duergprops1", oPC); } + else + {CreateItemOnObject("duergprops", oPC);} + + } +if(GetSubRace(oPC) == "Silver Dwarf" && GetRacialType(oPC) == RACIAL_TYPE_DWARF) + { +//DEXTERITY +2 + + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_DEXTERITY, 2)), oPC); +//CONSTITUTION +4 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_CONSTITUTION, 4)), oPC); +//CHARISMA +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_CHARISMA, 2)), oPC); + if(GetHitDice(oPC) > 3)//gets it at 4th level + { +//AC +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectACIncrease(2, AC_DODGE_BONUS)), oPC); +//Movement speed up 60% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectMovementSpeedIncrease(120)), oPC); + } + if(GetHitDice(oPC) > 9)//gets it at 4th level + { +//Concealment percentage 30% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectConcealment(30)), oPC); +//Immunity + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_DAZED)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_POISON)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_STUN)), oPC); + } + if(GetHitDice(oPC) > 5)//gets it at 4th level + { + +//Saving throw increase +5 fort + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowIncrease(SAVING_THROW_FORT, 5)), oPC); + } + if(GetHitDice(oPC) > 11)//gets it at 4th level + { +//Skill Increase + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_DISCIPLINE, 5)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_SPOT, 5)), oPC); + } + if(GetHitDice(oPC) > 15)//gets it at 4th level + { + +//True Seeing + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectTrueSeeing()), oPC); + } +//Spell Resistance 16 + SpellResApply(oPC, 16); +//Give Subrace Item + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("whiteprops2", oPC);} + else + if ((GetHitDice(oPC) >=8) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("whiteprops1", oPC); } + else + {CreateItemOnObject("whiteprops", oPC);} + + } +if(GetSubRace(oPC) == "Dragoon" && GetRacialType(oPC) == RACIAL_TYPE_HUMAN) + + { +//STRENGTH +4 + + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_STRENGTH, 4)), oPC); +//INTELLIGENCE +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_INTELLIGENCE, 2)), oPC); +//CHARISMA +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_CHARISMA, 2)), oPC); +//DEXTERITY -1 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + //SupernaturalEffect(EffectAbilityDecrease(ABILITY_DEXTERITY, 1)), oPC); + if(GetHitDice(oPC) > 3)//gets it at 4th level + { +//AC +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectACIncrease(2, AC_DODGE_BONUS)), oPC); +//Movement speed Increase 30% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectMovementSpeedIncrease(110)), oPC); + } + if(GetHitDice(oPC) > 9)//gets it at 4th level + { +//Damage Immunity Fire 100% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageImmunityIncrease(DAMAGE_TYPE_FIRE, 100)), oPC); +//Immunity + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_FEAR)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_PARALYSIS)), oPC); + } + if(GetHitDice(oPC) > 7)//gets it at 4th level + { +//Attack Increase +4 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAttackIncrease(4)), oPC); +//Damage increase fire +1 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageIncrease(2, DAMAGE_TYPE_FIRE)), oPC); + } + if(GetHitDice(oPC) > 5)//gets it at 4th level + { +//Saving throw increase +1 all + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowIncrease(SAVING_THROW_TYPE_MIND_SPELLS, 1)), oPC); + } + if(GetHitDice(oPC) > 11)//gets it at 4th level + { +//Skill Increase + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_DISCIPLINE, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_CONCENTRATION, 5)), oPC); + } + if(GetHitDice(oPC) > 15)//gets it at 4th level + { +//Spell immunity + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_STORM_OF_VENGEANCE)), oPC); + +//True Seeing + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectTrueSeeing()), oPC); + } +//Spell Resistance 12 + SpellResApply(oPC, 12); +//Give Subrace Item + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("dragprops3", oPC);} + else + if ((GetHitDice(oPC) >=12) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("dragprops2", oPC); } + else + if ((GetHitDice(oPC) >=6) && (GetHitDice(oPC) <12)) + {CreateItemOnObject("dragprops1", oPC); } + else + if ((GetHitDice(oPC) >=4) && (GetHitDice(oPC) <6)) + {CreateItemOnObject("dragprops", oPC);} + else + {CreateItemOnObject("dragprop", oPC);} + } +if(GetSubRace(oPC) == "Horodrim" && GetRacialType(oPC) == RACIAL_TYPE_HUMAN) + + { +// Strength -1 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + //SupernaturalEffect(EffectAbilityDecrease(ABILITY_STRENGTH, 1)), oPC); +//DEXTERITY +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_DEXTERITY, 2)), oPC); +//CONSTITUTION -3 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + //SupernaturalEffect(EffectAbilityDecrease(ABILITY_CONSTITUTION, 3)), oPC); +//INTELLIGENCE + //+5 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_INTELLIGENCE, 5)), oPC); + if(GetHitDice(oPC) > 3)//gets it at 4th level + { +//AC +6 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectACIncrease(4, AC_DODGE_BONUS)), oPC); +//Movement speed up 100% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectMovementSpeedIncrease(150)), oPC); + } +// Magical Damage gets +1 per level up to a Max of +20 + + DamageIncApply(oPC, 20); + + if(GetHitDice(oPC) > 9)//gets it at 4th level + { +//Immunity spell Res Decrease + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_SPELL_RESISTANCE_DECREASE)), oPC); + } + if(GetHitDice(oPC) > 5)//gets it at 4th level + { +//Saving throw increase +3 mind + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowIncrease(SAVING_THROW_WILL, 3, SAVING_THROW_TYPE_MIND_SPELLS)), oPC); + } + if(GetHitDice(oPC) > 11)//gets it at 4th level + { +//Skill Increase + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_CONCENTRATION, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_SPELLCRAFT, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_USE_MAGIC_DEVICE, 10)), oPC); + } + if(GetHitDice(oPC) > 15)//gets it at 4th level + { +//Spell Immunity, specific spell + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_GREATER_DISPELLING)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_LESSER_DISPEL)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_DISPEL_MAGIC)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_MORDENKAINENS_DISJUNCTION)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_GREATER_SPELL_BREACH)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_LESSER_SPELL_BREACH)), oPC); +//True Seeing + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectTrueSeeing()), oPC); + } +//Spell Resistance 36 + SpellResApply(oPC, 36); + +//Give Subrace Item + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("horodprops2", oPC);} + else + if ((GetHitDice(oPC) >=12) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("horodprops1", oPC); } + else + {CreateItemOnObject("horodprops", oPC);} + + + } +if(GetSubRace(oPC) == "Succubus" && GetRacialType(oPC) == RACIAL_TYPE_HUMAN) + + { +// Strength -1 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + //SupernaturalEffect(EffectAbilityDecrease(ABILITY_STRENGTH, 1)), oPC); +//DEXTERITY +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_DEXTERITY, 2)), oPC); +//CONSTITUTION -3 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + //SupernaturalEffect(EffectAbilityDecrease(ABILITY_CONSTITUTION, 3)), oPC); +//CHARISMA + //+6 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_CHARISMA, 6)), oPC); + if(GetHitDice(oPC) > 3)//gets it at 4th level + { +//AC +6 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectACIncrease(4, AC_DODGE_BONUS)), oPC); +//Movement speed up 120% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectMovementSpeedIncrease(150)), oPC); + } +// Cold Damage gets +1 per level up to a Max of +20 + + ColdDamageIncApply(oPC, 20); + + if(GetHitDice(oPC) > 9)//gets it at 10th level + { +//Immunity spell Res Decrease + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_SPELL_RESISTANCE_DECREASE)), oPC); + } + if(GetHitDice(oPC) > 5)//gets it at 4th level + { + +//Saving throw increase +3 mind + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowIncrease(SAVING_THROW_WILL, 3, SAVING_THROW_TYPE_MIND_SPELLS)), oPC); + } + if(GetHitDice(oPC) > 11)//gets it at 4th level + { +//Skill Increase + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_CONCENTRATION, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_SPELLCRAFT, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_USE_MAGIC_DEVICE, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_PERSUADE, 10)), oPC); + } + if(GetHitDice(oPC) > 15)//gets it at 4th level + { +//Spell Immunity, specific spell + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_GREATER_DISPELLING)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_LESSER_DISPEL)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_DISPEL_MAGIC)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_MORDENKAINENS_DISJUNCTION)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_GREATER_SPELL_BREACH)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_LESSER_SPELL_BREACH)), oPC); +//True Seeing + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectTrueSeeing()), oPC); + } +//Spell Resistance 36 + SpellResApply(oPC, 36); +// Succubus Appearance + SetCreatureAppearanceType(oPC, APPEARANCE_TYPE_SUCCUBUS); +//Give Subrace Item + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("succprops2", oPC);} + else + if ((GetHitDice(oPC) >=8) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("succprops1", oPC); } + else + {CreateItemOnObject("succprops", oPC);} + } + +if(GetSubRace(oPC) == "Pixie" && GetRacialType(oPC) == RACIAL_TYPE_GNOME) + + { +//STRENGTH -2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityDecrease(ABILITY_STRENGTH, 2)), oPC); +//DEXTERITY +4 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_DEXTERITY, 4)), oPC); +//CONSTITUTION -2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityDecrease(ABILITY_CONSTITUTION, 2)), oPC); +//INTELLIGENCE + //+2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_INTELLIGENCE, 2)), oPC); +//WISDOM +6 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_WISDOM, 6)), oPC); +//CHARISMA +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_CHARISMA, 2)), oPC); + if(GetHitDice(oPC) > 3)//gets it at 4th level + { +//AC +4 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectACIncrease(4, AC_DODGE_BONUS)), oPC); +//Haste + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectHaste()), oPC); + } + if(GetHitDice(oPC) > 9)//gets it at 4th level + { +//Concealment percentage 20% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectConcealment(50)), oPC); + +//Immunity + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_SPELL_RESISTANCE_DECREASE)), oPC); +//Miss chance 10% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectMissChance(20)), oPC); + } + if(GetHitDice(oPC) > 5)//gets it at 4th level + { +//Saving throw increase +2 all + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowIncrease(SAVING_THROW_ALL, 2, SAVING_THROW_TYPE_ALL)), oPC); + } + if(GetHitDice(oPC) > 11)//gets it at 4th level + { +//Skill Increase + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_ANIMAL_EMPATHY, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_MOVE_SILENTLY, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_HIDE, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_USE_MAGIC_DEVICE, 10)), oPC); + } + if(GetHitDice(oPC) > 15)//gets it at 4th level + { + +//Ultravision + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectUltravision()), oPC); + } +//Spell Resistance 36 + SpellResApply(oPC, 36); +//SetAppearance + SetCreatureAppearanceType(oPC, APPEARANCE_TYPE_FAIRY); +//Give Subrace Item + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("pixiprops2", oPC);} + else + if ((GetHitDice(oPC) >=8) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("pixiprops1", oPC); } + else + {CreateItemOnObject("pixiprops", oPC);} + } +if(GetSubRace(oPC) == "Demon" && GetRacialType(oPC) == RACIAL_TYPE_HALFORC) + + { +//STRENGTH +6 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_STRENGTH, 6)), oPC); +//INTELLIGENCE -2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityDecrease(ABILITY_INTELLIGENCE, 2)), oPC); +//WISDOM -4 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityDecrease(ABILITY_WISDOM, 4)), oPC); +//CHARISMA -5 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityDecrease(ABILITY_CHARISMA, 2)), oPC); + if(GetHitDice(oPC) > 3)//gets it at 4th level + { +//AC +3 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectACIncrease(3, AC_DODGE_BONUS)), oPC); + } + if(GetHitDice(oPC) > 7)//gets it at 4th level + { +//Attack Increase +4 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAttackIncrease(4)), oPC); +//Damage increase +4 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageIncrease(4, DAMAGE_TYPE_ACID)), oPC); + }if(GetHitDice(oPC) > 9)//gets it at 4th level + { +//Damage Immunity +100% fire, acid + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageImmunityIncrease(DAMAGE_TYPE_FIRE, 100)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageImmunityIncrease(DAMAGE_TYPE_ACID, 100)), oPC); +//Immunity + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_CHARM)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_DISEASE)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_DEATH)), oPC); + } + if(GetHitDice(oPC) > 15)//gets it at 4th level + { +//Regeneration 1 damage every 6.0 seconds + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectRegenerate(1, 6.0)), oPC); + } + if(GetHitDice(oPC) > 11)//gets it at 4th level + { +//Bonus Skill + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_TAUNT, 15)), oPC); + } +//SetAppearance + SetCreatureAppearanceType(oPC, APPEARANCE_TYPE_LICH); +//Give Subrace Item + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("demonprops2", oPC);} + else + if ((GetHitDice(oPC) >=8) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("demonprops1", oPC); } + else + {CreateItemOnObject("demonprops", oPC);} + } +if(GetSubRace(oPC) == "Vampire" && GetRacialType(oPC) == RACIAL_TYPE_HUMAN) + + { +//STRENGTH +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_STRENGTH, 2)), oPC); +//DEXTERITY +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_DEXTERITY, 2)), oPC); +//Damage Immunity +20% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageImmunityIncrease(DAMAGE_TYPE_NEGATIVE, 100)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageImmunityDecrease(DAMAGE_TYPE_DIVINE, 100)), oPC); +//Immunity + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_FEAR)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_POISON)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_DISEASE)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_NEGATIVE_LEVEL)), oPC); +//Regeneration 1 damage every 6.0 seconds + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectRegenerate(2, 6.0)), oPC); +//Saving throw increase +1 all + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowDecrease + (SAVING_THROW_ALL, 10, SAVING_THROW_TYPE_DIVINE)), oPC); +//See Invisible + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSeeInvisible()), oPC); +//Spell Immune + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_SLAY_LIVING)), oPC); +//Appearance + SetCreatureAppearanceType(oPC, APPEARANCE_TYPE_VAMPIRE_FEMALE); +//Give Subrace Item + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("vampprops2", oPC);} + else + if ((GetHitDice(oPC) >=8) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("vampprops1", oPC); } + else + {CreateItemOnObject("vampprops", oPC);} + + } +if(GetSubRace(oPC) == "Dracula" && GetRacialType(oPC) == RACIAL_TYPE_HUMAN) + + { +//STRENGTH +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_STRENGTH, 2)), oPC); +//DEXTERITY +2 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_DEXTERITY, 2)), oPC); +//Damage Immunity +20% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageImmunityIncrease(DAMAGE_TYPE_NEGATIVE, 100)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageImmunityDecrease(DAMAGE_TYPE_DIVINE, 100)), oPC); +//Immunity + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_FEAR)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_POISON)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_DISEASE)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_NEGATIVE_LEVEL)), oPC); +//Regeneration 1 damage every 6.0 seconds + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectRegenerate(2, 6.0)), oPC); +//Saving throw increase +1 all + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowDecrease + (SAVING_THROW_ALL, 10, SAVING_THROW_TYPE_DIVINE)), oPC); +//See Invisible + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSeeInvisible()), oPC); +//Spell Immune + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_SLAY_LIVING)), oPC); +//Appearance + SetCreatureAppearanceType(oPC, APPEARANCE_TYPE_VAMPIRE_MALE); +//Give Subrace Item + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("dracprops2", oPC);} + else + if ((GetHitDice(oPC) >=8) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("dracprops1", oPC); } + else + {CreateItemOnObject("dracprops", oPC);} + + } +if(GetSubRace(oPC) == "Morphlord" && GetRacialType(oPC) == RACIAL_TYPE_GNOME) + + { +//Strength +3 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_STRENGTH, 3)), oPC); +//DEXTERITY +4 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_DEXTERITY, 2)), oPC); +//CONSTITUTION +1 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_CONSTITUTION, 1)), oPC); +//WISDOM +8 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_WISDOM, 8)), oPC); + if(GetHitDice(oPC) > 3)//gets it at 4th level + { +//AC +3 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectACIncrease(3, AC_DODGE_BONUS)), oPC); +//Movement speed up 130% + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectMovementSpeedIncrease(130)), oPC); + } + if(GetHitDice(oPC) > 7)//gets it at 4th level + { +//Damage Increase +3 + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageIncrease(3, DAMAGE_TYPE_ELECTRICAL)), oPC); + } + if(GetHitDice(oPC) > 9)//gets it at 4th level + { +//Immunity Paralysis + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_PARALYSIS)), oPC); + } + if(GetHitDice(oPC) > 5)//gets it at 4th level + { +//Saving throw increase +2 all + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowIncrease(SAVING_THROW_FORT, 2, SAVING_THROW_TYPE_MIND_SPELLS)), oPC); + } + if(GetHitDice(oPC) > 11)//gets it at 4th level + { +//Skill Increase + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_ANIMAL_EMPATHY, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_SPELLCRAFT, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_CONCENTRATION, 10)), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_USE_MAGIC_DEVICE, 10)), oPC); + } + +//Spell Resistance 18 + SpellResApply(oPC, 20); + + +//SetAppearance + SetCreatureAppearanceType(oPC, APPEARANCE_TYPE_GHOUL); +//Give Subrace Item + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + if (GetHitDice(oPC) >= 16) + {CreateItemOnObject("shiftprops2", oPC);} + else + if ((GetHitDice(oPC) >=8) && (GetHitDice(oPC) <16)) + {CreateItemOnObject("shiftprops1", oPC); } + else + {CreateItemOnObject("shiftprops", oPC);} + } +/* +//////////////////TRAITS///////////////////////////// + + + if(GetSubRace(oPC) == "X" && GetRacialType(oPC) == Y) + // Change X to Subrace and Y to one of these + //RACIAL_TYPE_HUMAN + //RACIAL_TYPE_HALFORC + //RACIAL_TYPE_HALFELF + //RACIAL_TYPE_ELF + //RACIAL_TYPE_DWARF + //RACIAL_TYPE_GNOME + //RACIAL_TYPE_HALFLING + { + //STRENGTH + //+2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_STRENGTH, 2)), oPC); + //-2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityDecrease(ABILITY_STRENGTH, 2)), oPC); + //DEXTERITY + //+2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_DEXTERITY, 2)), oPC); + //-2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityDecrease(ABILITY_DEXTERITY, 2)), oPC); + //CONSTITUTION + //+2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_CONSTITUTION, 2)), oPC); + //-2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityDecrease(ABILITY_CONSTITUTION, 2)), oPC); + //INTELLIGENCE + //+2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_INTELLIGENCE, 2)), oPC); + //-2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityDecrease(ABILITY_INTELLIGENCE, 2)), oPC); + //WISDOM + //+2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_WISDOM, 2)), oPC); + //-2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityDecrease(ABILITY_WISDOM, 2)), oPC); + //CHARISMA + //+2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityIncrease(ABILITY_CHARISMA, 2)), oPC); + //-2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAbilityDecrease(ABILITY_CHARISMA, 2)), oPC); + //POLYMORPH + //For polymorph, change constant from pixie to one found in the script near the bottom + //first TRUE is for including the polymorphs creature skin (may need ILR off) + //second TRUE is for including weapons (may need ILR off) + //change to FALSE to not include these + //SubracePolymorph(oPC, "POLYMORPH_TYPE_PIXIE", TRUE, TRUE); + //AC +2 + //Can change AC_NATURAL_BONUS to one of these: + //AC_ARMOUR_ENCHANTMENT_BONUS + //AC_DEFLECTION_BONUS + //AC_DODGE_BONUS + //AC_NATURAL_BONUS + //AC_SHIELD_ENCHANTMENT_BONUS + //Can change AC_VS_DAMAGE_TYPE_ALL to one of these: + //DAMAGE_TYPE_ACID + //DAMAGE_TYPE_BLUDGEONING + //DAMAGE_TYPE_COLD + //DAMAGE_TYPE_DIVINE + //DAMAGE_TYPE_ELECTRICAL + //DAMAGE_TYPE_FIRE + //DAMAGE_TYPE_MAGICAL + //DAMAGE_TYPE_NEGATIVE + //DAMAGE_TYPE_PIERCING + //DAMAGE_TYPE_POSITIVE + //DAMAGE_TYPE_SONIC + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectACIncrease(2, AC_NATURAL_BONUS, AC_VS_DAMAGE_TYPE_ALL)), oPC); + //AC -2 + //Can change AC_NATURAL_BONUS as above + //Can change AC_VS_DAMAGE_TYPE_ALL as above + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectACDecrease(2, AC_NATURAL_BONUS, AC_VS_DAMAGE_TYPE_ALL)), oPC); + //Attack Increase +2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAttackIncrease(2)), oPC); + //Attack Decrease -2 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectAttackDecrease(2)), oPC); + //Concealment percentage 20% + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectConcealment(20)), oPC); + //Damage increase +2 + //DAMAGE_TYPE_MAGICAL can be changed to any damage type listed up at AC bonus + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageIncrease(2, DAMAGE_TYPE_MAGICAL)), oPC); + //Damage Decrease -2 + //DAMAGE_TYPE_MAGICAL can be changed to any damage type listed up at AC bonus + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageDecrease(2, DAMAGE_TYPE_MAGICAL)), oPC); + //Damage Immunity +20% + //DAMAGE_TYPE_MAGICAL can be changed to any damage type listed up at AC bonus + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageImmunityIncrease(DAMAGE_TYPE_MAGICAL, 20)), oPC); + //Damage Reduction 1/- + //Change DAMAGE_POWER_NORMAL to these for 'needed to penetrate': + //DAMAGE_POWER_ENERGY + //DAMAGE_POWER_NORMAL + //DAMAGE_POWER_PLUS_FIVE + //DAMAGE_POWER_PLUS_FOUR + //DAMAGE_POWER_PLUS_THREE + //DAMAGE_POWER_PLUS_TWO + //DAMAGE_POWER_PLUS_ONE + // Change 1 to whatever amount absorbed + //Change 0 to whatever amnount it can take before effect goes away, zero is infinite + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageReduction(1, DAMAGE_POWER_NORMAL, 0)), oPC); + //Damage Resistance 1 + //Change damage type as above + //Change zero as Damage Reduction + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectDamageResistance(DAMAGE_TYPE_MAGICAL, 1, 0)), oPC); + //Haste + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectHaste()), oPC); + //Immunity + //Change IMMUNITY_TYPE_CHARM to any immunity below: + //IMMUNITY_TYPE_ABILITY_DECREASE + //IMMUNITY_TYPE_AC_DECREASE + //IMMUNITY_TYPE_ATTACK_DECREASE + //IMMUNITY_TYPE_BLINDNESS + //IMMUNITY_TYPE_CHARM + //IMMUNITY_TYPE_CONFUSED + //IMMUNITY_TYPE_CRITICAL_HIT + //IMMUNITY_TYPE_CURSED + //IMMUNITY_TYPE_DAMAGE_DECREASE + //IMMUNITY_TYPE_DAMAGE_IMMUNITY_DECREASE + //IMMUNITY_TYPE_DAZED + //IMMUNITY_TYPE_DEAFNESS + //IMMUNITY_TYPE_DEATH + //IMMUNITY_TYPE_DISEASE + //IMMUNITY_TYPE_DOMINATE + //IMMUNITY_TYPE_ENTANGLE + //IMMUNITY_TYPE_FEAR + //IMMUNITY_TYPE_KNOCKDOWN + //IMMUNITY_TYPE_MIND_SPELLS + //IMMUNITY_TYPE_MOVEMENT_SPEED_DECREASE + //IMMUNITY_TYPE_NEGATIVE_LEVEL + //IMMUNITY_TYPE_NONE + //IMMUNITY_TYPE_PARALYSIS + //IMMUNITY_TYPE_POISON + //IMMUNITY_TYPE_SAVING_THROW_DECREASE + //IMMUNITY_TYPE_SILENCE + //IMMUNITY_TYPE_SKILL_DECREASE + //IMMUNITY_TYPE_SLEEP + //IMMUNITY_TYPE_SLOW + //IMMUNITY_TYPE_SNEAK_ATTACK + //IMMUNITY_TYPE_SPELL_RESISTANCE_DECREASE + //IMMUNITY_TYPE_STUN + //IMMUNITY_TYPE_TRAP + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectImmunity(IMMUNITY_TYPE_CHARM)), oPC); + //Miss chance 10% + //Change 10% to any %. this is like concealment, + 100% concealment gives 50% miss chance + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectMissChance(10)), oPC); + //Adds extra 1 attack, can go up to 5 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectModifyAttacks(1)), oPC); + //Movement speed up 10% + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectMovementSpeedIncrease(10)), oPC); + //Movement speed decrease 10% + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectMovementSpeedDecrease(10)), oPC); + //Regeneration 1 damage every 6.0 seconds + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectRegenerate(1, 6.0)), oPC); + //Saving throw increase +1 all + //Can change SAVING_THROW_ALL to: + //SAVING_THROW_ALL + //SAVING_THROW_FORT + //SAVING_THROW_WILL + //SAVING_THROW_REFLEX + //Can change SAVING_THROW_TYPE_ALL to: + //SAVING_THROW_TYPE_ACID + //SAVING_THROW_TYPE_ALL + //SAVING_THROW_TYPE_CHAOS + //SAVING_THROW_TYPE_COLD + //SAVING_THROW_TYPE_DEATH + //SAVING_THROW_TYPE_DISEASE + //SAVING_THROW_TYPE_DIVINE + //SAVING_THROW_TYPE_ELECTRICITY + //SAVING_THROW_TYPE_EVIL + //SAVING_THROW_TYPE_FEAR + //SAVING_THROW_TYPE_FIRE + //SAVING_THROW_TYPE_GOOD + //SAVING_THROW_TYPE_LAW + //SAVING_THROW_TYPE_MIND_SPELLS + //SAVING_THROW_TYPE_NEGATIVE + //SAVING_THROW_TYPE_NONE + //SAVING_THROW_TYPE_POISON + //SAVING_THROW_TYPE_POSITIVE + //SAVING_THROW_TYPE_SONIC + //SAVING_THROW_TYPE_TRAP + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSavingThrowIncrease(SAVING_THROW_ALL, 1, SAVING_THROW_TYPE_ALL)), oPC); + //See Invisible + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSeeInvisible()), oPC); + //Skill Increase + //Change 2 to bonus + //Change SKILL_MOVE_SILENTLY, to any of these: + //SKILL_ALL_SKILLS + //SKILL_ANIMAL_EMPATHY + //SKILL_CONCENTRATION + //SKILL_DISABLE_TRAP + //SKILL_DISCIPLINE + //SKILL_HEAL + //SKILL_HIDE + //SKILL_LISTEN + //SKILL_LORE + //SKILL_MOVE_SILENTLY + //SKILL_OPEN_LOCK + //SKILL_PARRY + //SKILL_PERFORM + //SKILL_PERSUADE + //SKILL_PICK_POCKET + //SKILL_SEARCH + //SKILL_SET_TRAP + // + //SKILL_SPOT + //SKILL_TAUNT + //SKILL_USE_MAGIC_DEVICE + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillIncrease(SKILL_MOVE_SILENTLY, 2)), oPC); + //Skill Decrease + //Change 2 to whatever amount to decrease + //Change skill to any above + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSkillDecrease(SKILL_MOVE_SILENTLY, 2)), oPC); + //Slow + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSlow()), oPC); + //Spell Immunity, specific spell + //Change SPELL_ALL_SPELLS to one of these: + //SPELL_ACID_FOG + //SPELL_AID + //SPELL_ALL_SPELLS + //SPELL_ANIMATE_DEAD + //SPELL_AURA_OF_VITALITY + //SPELL_AWAKEN + //SPELL_BARKSKIN + //SPELL_BESTOW_CURSE + //SPELL_BLADE_BARRIER + //SPELL_BLESS + //SPELL_BLESS_WEAPON + //SPELL_BLINDNESS_AND_DEAFNESS + //SPELL_BULLS_STRENGTH + //SPELL_BURNING_HANDS + //SPELL_CALL_LIGHTNING + //SPELL_CATS_GRACE + //SPELL_CHAIN_LIGHTNING + //SPELL_CHARM_MONSTER + //SPELL_CHARM_PERSON + //SPELL_CHARM_PERSON_OR_ANIMAL + //SPELL_CIRCLE_OF_DEATH + //SPELL_CIRCLE_OF_DOOM + //SPELL_CLAIRAUDIENCE_AND_CLAIRVOYANCE + //SPELL_CLARITY + //SPELL_CLOAK_OF_CHAOS + //SPELL_CLOUDKILL + //SPELL_COLOR_SPRAY + //SPELL_CONE_OF_COLD + //SPELL_CONFUSION + //SPELL_CONTAGION + //SPELL_CONTROL_UNDEAD + //SPELL_CREATE_GREATER_UNDEAD + //SPELL_CREATE_UNDEAD + //SPELL_CREEPING_DOOM + //SPELL_CURE_CRITICAL_WOUNDS + //SPELL_CURE_LIGHT_WOUNDS + //SPELL_CURE_MINOR_WOUNDS + //SPELL_CURE_MODERATE_WOUNDS + //SPELL_CURE_SERIOUS_WOUNDS + //SPELL_DARKNESS + //SPELL_DARKVISION + //SPELL_DAZE + //SPELL_DEATH_WARD + //SPELL_DELAYED_BLAST_FIREBALL + //SPELL_DESTRUCTION + //SPELL_DISMISSAL + //SPELL_DISPEL_MAGIC + //SPELL_DIVINE_POWER + //SPELL_DOMINATE_ANIMAL + //SPELL_DOMINATE_MONSTER + //SPELL_DOMINATE_PERSON + //SPELL_DOOM + //SPELL_EAGLE_SPLEDOR + //SPELL_ELEMENTAL_SHIELD + //SPELL_ELEMENTAL_SWARM + //SPELL_ENDURANCE + //SPELL_ENDURE_ELEMENTS + //SPELL_ENERGY_BUFFER + //SPELL_ENERGY_DRAIN + //SPELL_ENERVATION + //SPELL_ENTANGLE + //SPELL_ETHEREAL_VISAGE + //SPELL_EVARDS_BLACK_TENTACLES + //SPELL_FEAR + //SPELL_FEEBLEMIND + //SPELL_FIND_TRAPS + //SPELL_FINGER_OF_DEATH + //SPELL_FIRE_STORM + //SPELL_FIREBALL + //SPELL_FLAME_ARROW + //SPELL_FLAME_LASH + //SPELL_FLAME_STRIKE + //SPELL_FOXS_CUNNING + //SPELL_FREEDOM_OF_MOVEMENT + //SPELL_GATE + //SPELL_GHOSTLY_VISAGE + //SPELL_GHOUL_TOUCH + //SPELL_GLOBE_OF_INVULNERABILITY + //SPELL_GREASE + //SPELL_GREATER_BULLS_STRENGTH + //SPELL_GREATER_CATS_GRACE + //SPELL_GREATER_DISPELLING + //SPELL_GREATER_EAGLE_SPLENDOR + //SPELL_GREATER_ENDURANCE + //SPELL_GREATER_FOXS_CUNNING + //SPELL_GREATER_MAGIC_WEAPON + //SPELL_GREATER_OWLS_WISDOM + //SPELL_GREATER_PLANAR_BINDING + //SPELL_GREATER_RESTORATION + //SPELL_GREATER_SHADOW_CONJURATION_ACID_ARROW + //SPELL_GREATER_SHADOW_CONJURATION_MINOR_GLOBE + //SPELL_GREATER_SHADOW_CONJURATION_MIRROR_IMAGE + //SPELL_GREATER_SHADOW_CONJURATION_SUMMON_SHADOW + //SPELL_GREATER_SHADOW_CONJURATION_WEB + //SPELL_GREATER_SPELL_BREACH + //SPELL_GREATER_SPELL_MANTLE + //SPELL_GREATER_STONESKIN + //SPELL_HAMMER_OF_THE_GODS + //SPELL_HARM + //SPELL_HASTE + //SPELL_HEAL + //SPELL_HEALING_CIRCLE + //SPELL_HOLD_ANIMAL + //SPELL_HOLD_MONSTER + //SPELL_HOLD_PERSON + //SPELL_HOLY_AURA + //SPELL_HOLY_SWORD + //SPELL_HORRID_WILTING + //SPELL_ICE_STORM + //SPELL_IDENTIFY + //SPELL_IMPLOSION + //SPELL_IMPROVED_INVISIBILITY + //SPELL_INCENDIARY_CLOUD + //SPELL_INVISIBILITY + //SPELL_INVISIBILITY_PURGE + //SPELL_INVISIBILITY_SPHERE + //SPELL_KNOCK + //SPELL_LEGEND_LORE + //SPELL_LESSER_DISPEL + //SPELL_LESSER_MIND_BLANK + //SPELL_LESSER_PLANAR_BINDING + //SPELL_LESSER_RESTORATION + //SPELL_LESSER_SPELL_BREACH + //SPELL_LESSER_SPELL_MANTLE + //SPELL_LIGHT + //SPELL_LIGHTNING_BOLT + //SPELL_MAGE_ARMOR + //SPELL_MAGIC_CIRCLE_AGAINST_CHAOS + //SPELL_MAGIC_CIRCLE_AGAINST_EVIL + //SPELL_MAGIC_CIRCLE_AGAINST_GOOD + //SPELL_MAGIC_CIRCLE_AGAINST_LAW + //SPELL_MAGIC_MISSILE + //SPELL_MAGIC_VESTMENT UNKNOWN + //SPELL_MAGIC_WEAPON + //SPELL_MASS_BLINDNESS_AND_DEAFNESS + //SPELL_MASS_CHARM + //SPELL_MASS_HASTE + //SPELL_MASS_HEAL + //SPELL_MELFS_ACID_ARROW + //SPELL_METEOR_SWARM + //SPELL_MIND_BLANK + //SPELL_MIND_FOG + //SPELL_MINOR_GLOBE_OF_INVULNERABILITY + //SPELL_MORDENKAINENS_DISJUNCTION + //SPELL_MORDENKAINENS_SWORD + //SPELL_NATURES_BALANCE + //SPELL_NEGATIVE_ENERGY_BURST + //SPELL_NEGATIVE_ENERGY_PROTECTION + //SPELL_NEGATIVE_ENERGY_RAY + //SPELL_NEUTRALIZE_POISON + //SPELL_OWLS_WISDOM + //SPELL_PHANTASMAL_KILLER + //SPELL_PLANAR_BINDING + //SPELL_POISON + //SPELL_POLYMORPH_SELF + //SPELL_POWER_WORD_KILL + //SPELL_POWER_WORD_STUN + //SPELL_PRAYER + //SPELL_PREMONITION + //SPELL_PRISMATIC_SPRAY + //SPELL_PROTECTION__FROM_CHAOS + //SPELL_PROTECTION_FROM_ELEMENTS + //SPELL_PROTECTION_FROM_EVIL + //SPELL_PROTECTION_FROM_GOOD + //SPELL_PROTECTION_FROM_LAW + //SPELL_PROTECTION_FROM_SPELLS + //SPELL_RAISE_DEAD + //SPELL_RAY_OF_ENFEEBLEMENT + //SPELL_RAY_OF_FROST + //SPELL_REGENERATE + //SPELL_REMOVE_BLINDNESS_AND_DEAFNESS + //SPELL_REMOVE_CURSE + //SPELL_REMOVE_DISEASE + //SPELL_REMOVE_FEAR + //SPELL_REMOVE_PARALYSIS + //SPELL_RESIST_ELEMENTS + //SPELL_RESISTANCE + //SPELL_RESTORATION + //SPELL_RESURRECTION + //SPELL_SANCTUARY + //SPELL_SCARE + //SPELL_SEARING_LIGHT + //SPELL_SEE_INVISIBILITY + //SPELL_SHADES_CONE_OF_COLD + //SPELL_SHADES_FIREBALL + //SPELL_SHADES_STONESKIN + //SPELL_SHADES_SUMMON_SHADOW + //SPELL_SHADES_WALL_OF_FIRE + //SPELL_SHADOW_CONJURATION_DARKNESS + //SPELL_SHADOW_CONJURATION_INIVSIBILITY + //SPELL_SHADOW_CONJURATION_MAGE_ARMOR + //SPELL_SHADOW_CONJURATION_MAGIC_MISSILE + //SPELL_SHADOW_CONJURATION_SUMMON_SHADOW + //SPELL_SHADOW_SHIELD + //SPELL_SHAPECHANGE + //SPELL_SHIELD_OF_LAW + //SPELL_SILENCE + //SPELL_SLAY_LIVING + //SPELL_SLEEP + //SPELL_SLOW + //SPELL_SOUND_BURST + //SPELL_SPELL_MANTLE + //SPELL_SPELL_RESISTANCE + //SPELL_SPHERE_OF_CHAOS + //SPELL_STINKING_CLOUD + //SPELL_STONESKIN + //SPELL_STORM_OF_VENGEANCE + //SPELL_SUMMON_CREATURE_I + //SPELL_SUMMON_CREATURE_II + //SPELL_SUMMON_CREATURE_III + //SPELL_SUMMON_CREATURE_IV + //SPELL_SUMMON_CREATURE_IX + //SPELL_SUMMON_CREATURE_V + //SPELL_SUMMON_CREATURE_VI + //SPELL_SUMMON_CREATURE_VII + //SPELL_SUMMON_CREATURE_VIII + //SPELL_SUNBEAM + //SPELL_TENSERS_TRANSFORMATION + //SPELL_TIME_STOP + //SPELL_TRUE_SEEING + //SPELL_UNHOLY_AURA + //SPELL_VAMPIRIC_TOUCH + //SPELL_VIRTUE + //SPELL_WAIL_OF_THE_BANSHEE + //SPELL_WALL_OF_FIRE + //SPELL_WAR_CRY + //SPELL_WEB + //SPELL_WEIRD + //SPELL_WORD_OF_FAITH + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellImmunity(SPELL_ALL_SPELLS)), oPC); + //Spell Level Absorbsion + //change 3 to max spell level absorbed + //change 6 to max # of spell levels absorbed (0 default) + //change SPELL_SCHOOL_GENERAL to any of these schools: + //SPELL_SCHOOL_ABJURATION + //SPELL_SCHOOL_CONJURATION + //SPELL_SCHOOL_DIVINATION + //SPELL_SCHOOL_ENCHANTMENT + //SPELL_SCHOOL_EVOCATION + //SPELL_SCHOOL_GENERAL + //SPELL_SCHOOL_ILLUSION + //SPELL_SCHOOL_NECROMANCY + //SPELL_SCHOOL_TRANSMUTATION + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellLevelAbsorption(3, 6, SPELL_SCHOOL_GENERAL)), oPC); + //Spell Resistance 3 + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectSpellResistanceIncrease(3)), oPC); + //True Seeing + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectTrueSeeing()), oPC); + //Turn Resistance +3HD + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectTurnResistanceIncrease(3)), oPC); + //Ultravision + //ApplyEffectToObject(DURATION_TYPE_PERMANENT, + SupernaturalEffect(EffectUltravision()), oPC); + //SetAppearance + //Change "APPEARANCE_TYPE_GOBLIN_A" to any of the following: + //APPEARANCE_TYPE_ALLIP + //APPEARANCE_TYPE_ARANEA + //APPEARANCE_TYPE_ARCH_TARGET + //APPEARANCE_TYPE_ARIBETH + //APPEARANCE_TYPE_ASABI_CHIEFTAIN + //APPEARANCE_TYPE_ASABI_SHAMAN + //APPEARANCE_TYPE_ASABI_WARRIOR + //APPEARANCE_TYPE_BADGER + //APPEARANCE_TYPE_BADGER_DIRE + //APPEARANCE_TYPE_BALOR + //APPEARANCE_TYPE_BARTENDER + //APPEARANCE_TYPE_BASILISK + //APPEARANCE_TYPE_BAT + //APPEARANCE_TYPE_BAT_HORROR + //APPEARANCE_TYPE_BEAR_BLACK + //APPEARANCE_TYPE_BEAR_BROWN + //APPEARANCE_TYPE_BEAR_DIRE + //APPEARANCE_TYPE_BEAR_KODIAK + //APPEARANCE_TYPE_BEAR_POLAR + //APPEARANCE_TYPE_BEETLE_FIRE + //APPEARANCE_TYPE_BEETLE_SLICER + //APPEARANCE_TYPE_BEETLE_STAG + //APPEARANCE_TYPE_BEETLE_STINK + //APPEARANCE_TYPE_BEGGER + //APPEARANCE_TYPE_BLOOD_SAILER + //APPEARANCE_TYPE_BOAR + //APPEARANCE_TYPE_BOAR_DIRE + //APPEARANCE_TYPE_BODAK + //APPEARANCE_TYPE_BUGBEAR_A + //APPEARANCE_TYPE_BUGBEAR_B + //APPEARANCE_TYPE_BUGBEAR_CHIEFTAIN_A + //APPEARANCE_TYPE_BUGBEAR_CHIEFTAIN_B + //APPEARANCE_TYPE_BUGBEAR_SHAMAN_A + //APPEARANCE_TYPE_BUGBEAR_SHAMAN_B + //APPEARANCE_TYPE_CAT_CAT_DIRE + //APPEARANCE_TYPE_CAT_COUGAR + //APPEARANCE_TYPE_CAT_CRAG_CAT + //APPEARANCE_TYPE_CAT_JAGUAR + //APPEARANCE_TYPE_CAT_KRENSHAR + //APPEARANCE_TYPE_CAT_LEOPARD + //APPEARANCE_TYPE_CAT_LION + //APPEARANCE_TYPE_CAT_MPANTHER + //APPEARANCE_TYPE_CAT_PANTHER + //APPEARANCE_TYPE_CHICKEN + //APPEARANCE_TYPE_COCKATRICE + //APPEARANCE_TYPE_COMBAT_DUMMY + //APPEARANCE_TYPE_CONVICT + //APPEARANCE_TYPE_COW + //APPEARANCE_TYPE_CULT_MEMBER + //APPEARANCE_TYPE_DEER + //APPEARANCE_TYPE_DEER_STAG + //APPEARANCE_TYPE_DEVIL + //APPEARANCE_TYPE_DOG + //APPEARANCE_TYPE_DOG_BLINKDOG + //APPEARANCE_TYPE_DOG_DIRE_WOLF + //APPEARANCE_TYPE_DOG_FENHOUND + //APPEARANCE_TYPE_DOG_HELL_HOUND + //APPEARANCE_TYPE_DOG_SHADOW_MASTIF + //APPEARANCE_TYPE_DOG_WINTER_WOLF + //APPEARANCE_TYPE_DOG_WOLF + //APPEARANCE_TYPE_DOG_WORG + //APPEARANCE_TYPE_DOOM_KNIGHT + //APPEARANCE_TYPE_DRAGON_BLACK + //APPEARANCE_TYPE_DRAGON_BLUE + //APPEARANCE_TYPE_DRAGON_BRASS + //APPEARANCE_TYPE_DRAGON_BRONZE + //APPEARANCE_TYPE_DRAGON_COPPER + //APPEARANCE_TYPE_DRAGON_GOLD + //APPEARANCE_TYPE_DRAGON_GREEN + //APPEARANCE_TYPE_DRAGON_RED + //APPEARANCE_TYPE_DRAGON_SILVER + //APPEARANCE_TYPE_DRAGON_WHITE + //APPEARANCE_TYPE_DROW_CLERIC + //APPEARANCE_TYPE_DROW_FIGHTER + //APPEARANCE_TYPE_DRUEGAR_CLERIC + //APPEARANCE_TYPE_DRUEGAR_FIGHTER + //APPEARANCE_TYPE_DRYAD + //APPEARANCE_TYPE_DWARF + //APPEARANCE_TYPE_DWARF_NPC_FEMALE + //APPEARANCE_TYPE_DWARF_NPC_MALE + //APPEARANCE_TYPE_ELEMENTAL_AIR + //APPEARANCE_TYPE_ELEMENTAL_AIR_ELDER + //APPEARANCE_TYPE_ELEMENTAL_EARTH + //APPEARANCE_TYPE_ELEMENTAL_EARTH_ELDER + //APPEARANCE_TYPE_ELEMENTAL_FIRE + //APPEARANCE_TYPE_ELEMENTAL_FIRE_ELDER + //APPEARANCE_TYPE_ELEMENTAL_WATER + //APPEARANCE_TYPE_ELEMENTAL_WATER_ELDER + //APPEARANCE_TYPE_ELF + //APPEARANCE_TYPE_ELF_NPC_FEMALE + //APPEARANCE_TYPE_ELF_NPC_MALE_01 + //APPEARANCE_TYPE_ELF_NPC_MALE_02 + //APPEARANCE_TYPE_ETTERCAP + //APPEARANCE_TYPE_ETTIN + //APPEARANCE_TYPE_FAERIE_DRAGON + //APPEARANCE_TYPE_FAIRY + //APPEARANCE_TYPE_FALCON + //APPEARANCE_TYPE_FEMALE_01 + //APPEARANCE_TYPE_FEMALE_02 + //APPEARANCE_TYPE_FEMALE_03 + //APPEARANCE_TYPE_FEMALE_04 + //APPEARANCE_TYPE_FORMIAN_MYRMARCH + //APPEARANCE_TYPE_FORMIAN_QUEEN + //APPEARANCE_TYPE_FORMIAN_WARRIOR + //APPEARANCE_TYPE_FORMIAN_WORKER + //APPEARANCE_TYPE_GARGOYLE + //APPEARANCE_TYPE_GHAST + //APPEARANCE_TYPE_GHOUL + //APPEARANCE_TYPE_GHOUL_LORD + //APPEARANCE_TYPE_GIANT_FIRE + //APPEARANCE_TYPE_GIANT_FIRE_FEMALE + //APPEARANCE_TYPE_GIANT_FROST + //APPEARANCE_TYPE_GIANT_FROST_FEMALE + //APPEARANCE_TYPE_GIANT_HILL + //APPEARANCE_TYPE_GIANT_MOUNTAIN + //APPEARANCE_TYPE_GNOLL_WARRIOR + //APPEARANCE_TYPE_GNOLL_WIZ + //APPEARANCE_TYPE_GNOME + //APPEARANCE_TYPE_GNOME_NPC_FEMALE + //APPEARANCE_TYPE_GNOME_NPC_MALE + //APPEARANCE_TYPE_GOBLIN_A + //APPEARANCE_TYPE_GOBLIN_B + //APPEARANCE_TYPE_GOBLIN_CHIEF_A + //APPEARANCE_TYPE_GOBLIN_CHIEF_B + //APPEARANCE_TYPE_GOBLIN_SHAMAN_A + //APPEARANCE_TYPE_GOBLIN_SHAMAN_B + //APPEARANCE_TYPE_GOLEM_BONE + //APPEARANCE_TYPE_GOLEM_CLAY + //APPEARANCE_TYPE_GOLEM_FLESH + //APPEARANCE_TYPE_GOLEM_IRON + //APPEARANCE_TYPE_GOLEM_STONE + //APPEARANCE_TYPE_GORGON + //APPEARANCE_TYPE_GREY_RENDER + //APPEARANCE_TYPE_GYNOSPHINX + //APPEARANCE_TYPE_HALF_ELF + //APPEARANCE_TYPE_HALF_ORC + //APPEARANCE_TYPE_HALF_ORC_NPC_FEMALE + //APPEARANCE_TYPE_HALF_ORC_NPC_MALE_01 + //APPEARANCE_TYPE_HALF_ORC_NPC_MALE_02 + //APPEARANCE_TYPE_HALFLING + //APPEARANCE_TYPE_HALFLING_NPC_FEMALE + //APPEARANCE_TYPE_HALFLING_NPC_MALE + //APPEARANCE_TYPE_HELMED_HORROR + //APPEARANCE_TYPE_HEURODIS_LICH + //APPEARANCE_TYPE_HOBGOBLIN_WARRIOR + //APPEARANCE_TYPE_HOBGOBLIN_WIZARD + //APPEARANCE_TYPE_HOOK_HORROR + //APPEARANCE_TYPE_HOUSE_GUARD + //APPEARANCE_TYPE_HUMAN + //APPEARANCE_TYPE_HUMAN_NPC_FEMALE_01 + //APPEARANCE_TYPE_HUMAN_NPC_FEMALE_02 + //APPEARANCE_TYPE_HUMAN_NPC_FEMALE_03 + //APPEARANCE_TYPE_HUMAN_NPC_FEMALE_04 + //APPEARANCE_TYPE_HUMAN_NPC_FEMALE_05 + //APPEARANCE_TYPE_HUMAN_NPC_FEMALE_06 + //APPEARANCE_TYPE_HUMAN_NPC_FEMALE_07 + //APPEARANCE_TYPE_HUMAN_NPC_FEMALE_08 + //APPEARANCE_TYPE_HUMAN_NPC_FEMALE_09 + //APPEARANCE_TYPE_HUMAN_NPC_FEMALE_10 + //APPEARANCE_TYPE_HUMAN_NPC_FEMALE_11 + //APPEARANCE_TYPE_HUMAN_NPC_FEMALE_12 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_01 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_02 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_03 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_04 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_05 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_06 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_07 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_08 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_09 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_10 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_11 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_12 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_13 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_14 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_15 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_16 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_17 + //APPEARANCE_TYPE_HUMAN_NPC_MALE_18 + //APPEARANCE_TYPE_IMP + //APPEARANCE_TYPE_INN_KEEPER + //APPEARANCE_TYPE_INTELLECT_DEVOURER + //APPEARANCE_TYPE_INVISIBLE_HUMAN_MALE + //APPEARANCE_TYPE_INVISIBLE_STALKER + //APPEARANCE_TYPE_KID_FEMALE + //APPEARANCE_TYPE_KID_MALE + //APPEARANCE_TYPE_KOBOLD_A + //APPEARANCE_TYPE_KOBOLD_B + //APPEARANCE_TYPE_KOBOLD_CHIEF_A + //APPEARANCE_TYPE_KOBOLD_CHIEF_B + //APPEARANCE_TYPE_KOBOLD_SHAMAN_A + //APPEARANCE_TYPE_KOBOLD_SHAMAN_B + //APPEARANCE_TYPE_LANTERN_ARCHON + //APPEARANCE_TYPE_LICH + //APPEARANCE_TYPE_LIZARDFOLK_A + //APPEARANCE_TYPE_LIZARDFOLK_B + //APPEARANCE_TYPE_LIZARDFOLK_SHAMAN_A + //APPEARANCE_TYPE_LIZARDFOLK_SHAMAN_B + //APPEARANCE_TYPE_LIZARDFOLK_WARRIOR_A + //APPEARANCE_TYPE_LIZARDFOLK_WARRIOR_B + //APPEARANCE_TYPE_LUSKAN_GUARD + //APPEARANCE_TYPE_MALE_01 + //APPEARANCE_TYPE_MALE_02 + //APPEARANCE_TYPE_MALE_03 + //APPEARANCE_TYPE_MALE_04 + //APPEARANCE_TYPE_MALE_05 + //APPEARANCE_TYPE_MANTICORE + //APPEARANCE_TYPE_MEDUSA + //APPEARANCE_TYPE_MEPHIT_AIR + //APPEARANCE_TYPE_MEPHIT_DUST + //APPEARANCE_TYPE_MEPHIT_EARTH + //APPEARANCE_TYPE_MEPHIT_FIRE + //APPEARANCE_TYPE_MEPHIT_ICE + //APPEARANCE_TYPE_MEPHIT_MAGMA + //APPEARANCE_TYPE_MEPHIT_OOZE + //APPEARANCE_TYPE_MEPHIT_SALT + //APPEARANCE_TYPE_MEPHIT_STEAM + //APPEARANCE_TYPE_MEPHIT_WATER + //APPEARANCE_TYPE_MINOGON + //APPEARANCE_TYPE_MINOTAUR + //APPEARANCE_TYPE_MINOTAUR_CHIEFTAIN + //APPEARANCE_TYPE_MINOTAUR_SHAMAN + //APPEARANCE_TYPE_MOHRG + //APPEARANCE_TYPE_MUMMY_COMMON + //APPEARANCE_TYPE_MUMMY_FIGHTER_2 + //APPEARANCE_TYPE_MUMMY_GREATER + //APPEARANCE_TYPE_MUMMY_WARRIOR + //APPEARANCE_TYPE_NW_MILITIA_MEMBER + //APPEARANCE_TYPE_NWN_AARIN + //APPEARANCE_TYPE_NWN_ARIBETH_EVIL + //APPEARANCE_TYPE_NWN_HAEDRALINE + //APPEARANCE_TYPE_NWN_MAUGRIM + //APPEARANCE_TYPE_NWN_MORAG + //APPEARANCE_TYPE_NWN_NASHER + //APPEARANCE_TYPE_NWN_SEDOS + //APPEARANCE_TYPE_NYMPH + //APPEARANCE_TYPE_OGRE + //APPEARANCE_TYPE_OGRE_CHIEFTAIN + //APPEARANCE_TYPE_OGRE_CHIEFTAINB + //APPEARANCE_TYPE_OGRE_MAGE + //APPEARANCE_TYPE_OGRE_MAGEB + //APPEARANCE_TYPE_OGREB + //APPEARANCE_TYPE_OLD_MAN + //APPEARANCE_TYPE_OLD_WOMAN + //APPEARANCE_TYPE_ORC_A + //APPEARANCE_TYPE_ORC_B + //APPEARANCE_TYPE_ORC_CHIEFTAIN_A + //APPEARANCE_TYPE_ORC_CHIEFTAIN_B + //APPEARANCE_TYPE_ORC_SHAMAN_A + //APPEARANCE_TYPE_ORC_SHAMAN_B + //APPEARANCE_TYPE_OX + //APPEARANCE_TYPE_PENGUIN + //APPEARANCE_TYPE_PLAGUE_VICTIM + //APPEARANCE_TYPE_PROSTITUTE_01 + //APPEARANCE_TYPE_PROSTITUTE_02 + //APPEARANCE_TYPE_PSEUDODRAGON + //APPEARANCE_TYPE_QUASIT + //APPEARANCE_TYPE_RAKSHASA_BEAR_MALE + //APPEARANCE_TYPE_RAKSHASA_TIGER_FEMALE + //APPEARANCE_TYPE_RAKSHASA_TIGER_MALE + //APPEARANCE_TYPE_RAKSHASA_WOLF_MALE + //APPEARANCE_TYPE_RAT + //APPEARANCE_TYPE_RAT_DIRE + //APPEARANCE_TYPE_RAVEN + //APPEARANCE_TYPE_SHADOW + //APPEARANCE_TYPE_SHADOW_FIEND + //APPEARANCE_TYPE_SHIELD_GUARDIAN + //APPEARANCE_TYPE_SHOP_KEEPER + //APPEARANCE_TYPE_SKELETAL_DEVOURER + //APPEARANCE_TYPE_SKELETON_CHIEFTAIN + //APPEARANCE_TYPE_SKELETON_COMMON + //APPEARANCE_TYPE_SKELETON_MAGE + //APPEARANCE_TYPE_SKELETON_PRIEST + //APPEARANCE_TYPE_SKELETON_WARRIOR + //APPEARANCE_TYPE_SKELETON_WARRIOR_1 + //APPEARANCE_TYPE_SKELETON_WARRIOR_2 + //APPEARANCE_TYPE_SLAAD_BLUE + //APPEARANCE_TYPE_SLAAD_DEATH + //APPEARANCE_TYPE_SLAAD_GRAY + //APPEARANCE_TYPE_SLAAD_GREEN + //APPEARANCE_TYPE_SLAAD_RED + //APPEARANCE_TYPE_SPECTRE + //APPEARANCE_TYPE_SPHINX + //APPEARANCE_TYPE_SPIDER_DIRE + //APPEARANCE_TYPE_SPIDER_GIANT + //APPEARANCE_TYPE_SPIDER_PHASE + //APPEARANCE_TYPE_SPIDER_SWORD + //APPEARANCE_TYPE_SPIDER_WRAITH + //APPEARANCE_TYPE_STINGER + //APPEARANCE_TYPE_STINGER_CHIEFTAIN + //APPEARANCE_TYPE_STINGER_MAGE + //APPEARANCE_TYPE_STINGER_WARRIOR + //APPEARANCE_TYPE_SUCCUBUS + //APPEARANCE_TYPE_TROLL + //APPEARANCE_TYPE_TROLL_CHIEFTAIN + //APPEARANCE_TYPE_TROLL_SHAMAN + //APPEARANCE_TYPE_UMBERHULK + //APPEARANCE_TYPE_UTHGARD_ELK_TRIBE + //APPEARANCE_TYPE_UTHGARD_TIGER_TRIBE + //APPEARANCE_TYPE_VAMPIRE_FEMALE + //APPEARANCE_TYPE_VAMPIRE_MALE + //APPEARANCE_TYPE_VROCK + //APPEARANCE_TYPE_WAITRESS + //APPEARANCE_TYPE_WAR_DEVOURER + //APPEARANCE_TYPE_WERECAT + //APPEARANCE_TYPE_WERERAT + //APPEARANCE_TYPE_WEREWOLF + //APPEARANCE_TYPE_WIGHT + //APPEARANCE_TYPE_WILL_O_WISP + //APPEARANCE_TYPE_WRAITH + //APPEARANCE_TYPE_WYRMLING_BLACK + //APPEARANCE_TYPE_WYRMLING_BLUE + //APPEARANCE_TYPE_WYRMLING_BRASS + //APPEARANCE_TYPE_WYRMLING_BRONZE + //APPEARANCE_TYPE_WYRMLING_COPPER + //APPEARANCE_TYPE_WYRMLING_GOLD + //APPEARANCE_TYPE_WYRMLING_GREEN + //APPEARANCE_TYPE_WYRMLING_RED + //APPEARANCE_TYPE_WYRMLING_SILVER + //APPEARANCE_TYPE_WYRMLING_WHITE + //APPEARANCE_TYPE_YUAN_TI + //APPEARANCE_TYPE_YUAN_TI_CHIEFTEN + //APPEARANCE_TYPE_YUAN_TI_WIZARD + //APPEARANCE_TYPE_ZOMBIE + //APPEARANCE_TYPE_ZOMBIE_ROTTING + //APPEARANCE_TYPE_ZOMBIE_TYRANT_FOG + //APPEARANCE_TYPE_ZOMBIE_WARRIOR_1 + //APPEARANCE_TYPE_ZOMBIE_WARRIOR_2 + //SetCreatureAppearanceType(oPC, APPEARANCE_TYPE_GOBLIN_A); + //Give Subrace Item + //change "resref" to the resref of the item + //add this items tag to the following scripts: "subraces_items" + //CreateItemOnObject("resref", oPC); + } + + +//////////////////ENDTRAITS///////////////////////////// +*/ + + +} +//////////////////////////////////////////////////////////////////////////////// +void SubraceRemoveEffect(object oSubraceCharacter, effect eSubraceEffect) +{ + if((GetEffectCreator(eSubraceEffect) != GetModule()) && (GetEffectSubType(eSubraceEffect) != SUBTYPE_SUPERNATURAL)) + { + RemoveEffect(oSubraceCharacter, eSubraceEffect); + } +} +//////////////////////////////////////////////////////////////////////////////// +void RemoveEffectsSubrace(object oSubraceCharacter) +{ + effect eFX = GetFirstEffect(oSubraceCharacter); + while(GetIsEffectValid(eFX)) + { + RemoveEffect(oSubraceCharacter, eFX); + eFX = GetNextEffect(oSubraceCharacter); + } +} +//////////////////////////////////////////////////////////////////////////////// +void UnSub(object oSubraceCharacter, effect eSubraceEffect) +{ + if((GetEffectCreator(eSubraceEffect) == GetModule()) && (GetEffectSubType(eSubraceEffect) == SUBTYPE_SUPERNATURAL)) + { + RemoveEffect(oSubraceCharacter, eSubraceEffect); + } +} +//////////////////////////////////////////////////////////////////////////////// +void UnSubrace(object oSubraceCharacter) +{ + effect eFX = GetFirstEffect(oSubraceCharacter); + while(GetIsEffectValid(eFX)) + { + UnSub(oSubraceCharacter, eFX); + eFX = GetNextEffect(oSubraceCharacter); + } +} +//////////////////////////////////////////////////////////////////////////////// +void SubraceRemoveEffects(object oSubraceCharacter) +{ + RemoveEffectsSubrace(oSubraceCharacter); + object oItem = GetFirstItemInInventory(oSubraceCharacter); + while (GetIsObjectValid(oItem) == TRUE) + { + if(GetIsSubraceItem(oItem)) + { + + DestroyObject(oItem); + + } + oItem = GetNextItemInInventory(oSubraceCharacter); + } + ApplySubrace(oSubraceCharacter); +} +//////////////////////////////////////////////////////////////////////////////// +void SetSubraceItemString(object oPC, string strString) +{ + if(GetIsPC(oPC) == TRUE) + { + int nSetAlready = FALSE; + int nLoop; + while(GetLocalString(oPC, "SUBRACEITEM" + IntToString(nLoop)) != "") + { + if(GetLocalString(oPC, "SUBRACEITEM" + IntToString(nLoop)) == (strString)) + { + nSetAlready = TRUE; + } + nLoop++; + } + if(nSetAlready == FALSE) + { + SetLocalString(oPC, "SUBRACEITEM" + IntToString(nLoop), strString); + } + } +} +//////////////////////////////////////////////////////////////////////////////// +void SubraceItemOnRest(object oPC) +{ + int nLoop = 0; + while(GetLocalString(oPC, "SUBRACEITEM" + IntToString(nLoop)) != "") + { + string strCreate = GetLocalString(oPC, "SUBRACEITEM"+IntToString(nLoop)); + CreateItemOnObject(strCreate, oPC, 1); + nLoop++; + } +} +//////////////////////////////////////////////////////////////////////////////// +//void main(){} diff --git a/_removed/subset_demon.nss b/_removed/subset_demon.nss new file mode 100644 index 0000000..5c16e72 --- /dev/null +++ b/_removed/subset_demon.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Demon"); +} diff --git a/_removed/subset_drac.nss b/_removed/subset_drac.nss new file mode 100644 index 0000000..3f33c78 --- /dev/null +++ b/_removed/subset_drac.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Dracula"); +} diff --git a/_removed/subset_dragoon.nss b/_removed/subset_dragoon.nss new file mode 100644 index 0000000..4afc1c0 --- /dev/null +++ b/_removed/subset_dragoon.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Dragoon"); +} diff --git a/_removed/subset_drow.nss b/_removed/subset_drow.nss new file mode 100644 index 0000000..362165d --- /dev/null +++ b/_removed/subset_drow.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Drow"); +} diff --git a/_removed/subset_duergar.nss b/_removed/subset_duergar.nss new file mode 100644 index 0000000..5ae2155 --- /dev/null +++ b/_removed/subset_duergar.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Duergar"); +} diff --git a/_removed/subset_horodrim.nss b/_removed/subset_horodrim.nss new file mode 100644 index 0000000..41e1aed --- /dev/null +++ b/_removed/subset_horodrim.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Horodrim"); +} diff --git a/_removed/subset_morph.nss b/_removed/subset_morph.nss new file mode 100644 index 0000000..5587cff --- /dev/null +++ b/_removed/subset_morph.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Morphlord"); +} diff --git a/_removed/subset_nightelf.nss b/_removed/subset_nightelf.nss new file mode 100644 index 0000000..537b2e1 --- /dev/null +++ b/_removed/subset_nightelf.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Night Elf"); +} diff --git a/_removed/subset_pixie.nss b/_removed/subset_pixie.nss new file mode 100644 index 0000000..c1a6e13 --- /dev/null +++ b/_removed/subset_pixie.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Pixie"); +} diff --git a/_removed/subset_silver.nss b/_removed/subset_silver.nss new file mode 100644 index 0000000..5ae4191 --- /dev/null +++ b/_removed/subset_silver.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Silver Dwarf"); +} diff --git a/_removed/subset_succ.nss b/_removed/subset_succ.nss new file mode 100644 index 0000000..9e519fe --- /dev/null +++ b/_removed/subset_succ.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Succubus"); +} diff --git a/_removed/subset_vamp.nss b/_removed/subset_vamp.nss new file mode 100644 index 0000000..7fdb148 --- /dev/null +++ b/_removed/subset_vamp.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Vampire"); +} diff --git a/_removed/subset_woodelf.nss b/_removed/subset_woodelf.nss new file mode 100644 index 0000000..9799a5b --- /dev/null +++ b/_removed/subset_woodelf.nss @@ -0,0 +1,4 @@ +void main() +{ +SetSubRace(GetPCSpeaker(), "Wood Elf"); +}